<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Could not establish trust relationship for the SSL/TLS in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61583#M36010</link>
    <description>&lt;P&gt;That code can and should be simplified.&amp;nbsp; The new API endpoint at &lt;A href="https://api.authorize.net/xml/v1/request.api" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt; accepts XML and you would create the server object with:&lt;/P&gt;&lt;PRE&gt;Set httpRequest = Server.CreateObject("MSXML2.XMLHTTP.6.0")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Feb 2018 12:35:02 GMT</pubDate>
    <dc:creator>NexusSoftware</dc:creator>
    <dc:date>2018-02-09T12:35:02Z</dc:date>
    <item>
      <title>Could not establish trust relationship for the SSL/TLS</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61569#M35998</link>
      <description>&lt;P&gt;We just had our site (hosted with Godaddy) migrated from a server that only supported TLS1.0 and 1.1 to a server that supports TSL1.0, 1.1, and 1.2.&amp;nbsp; The site was developed years ago using Visual Basic.&amp;nbsp; Unfortunatly, now when we try to submit a payment request, we get a "&lt;I&gt;Could not create SSL/TLS secure channel&lt;SPAN&gt;"&amp;nbsp;&lt;SPAN&gt;error message.&amp;nbsp; We did not make any changes within our code.&amp;nbsp; We are using a basic httpwebrequest object to communicate with Authorize.net.&amp;nbsp; Is there a change that I need to make within our code to instruct the connection to be made using TSL1.2 instead of TSL1.0 or TSL1.1?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is the code we are currently using to submit our request to Authorize.net&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim post_url As String&lt;BR /&gt;post_url = "&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll"&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Dim ccnum As String = "", _&lt;BR /&gt;ccexp As String = "", _&lt;BR /&gt;firstname As String = "", _&lt;BR /&gt;lastname As String = "", _&lt;BR /&gt;name As String, _&lt;BR /&gt;orderid As Integer = subscriberidfld.Value&lt;/P&gt;&lt;P&gt;Dim address2 As String = "", _&lt;BR /&gt;shipaddress2 As String = "", _&lt;BR /&gt;fax As String = "", _&lt;BR /&gt;shipfax As String = ""&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;ccexp = ccmonthdd.SelectedValue &amp;amp; Right(ccyeardd.SelectedValue, 2)&lt;BR /&gt;Catch ex As Exception&lt;BR /&gt;ccexp = "0000"&lt;BR /&gt;End Try&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;ccnum = cc1txt.Text.Trim &amp;amp; cc2txt.Text.Trim &amp;amp; cc3txt.Text.Trim &amp;amp; cc4txt.Text.Trim&lt;BR /&gt;Catch ex As Exception&lt;/P&gt;&lt;P&gt;End Try&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;firstname = nametxt.Text.Trim&lt;BR /&gt;Catch ex As Exception&lt;BR /&gt;firstname = Nothing&lt;BR /&gt;End Try&lt;BR /&gt;Try&lt;BR /&gt;lastname = lastnametxt.Text.Trim&lt;BR /&gt;Catch ex As Exception&lt;BR /&gt;lastname = Nothing&lt;BR /&gt;End Try&lt;/P&gt;&lt;P&gt;If Not name Is Nothing Then&lt;BR /&gt;firstname = name(0)&lt;BR /&gt;lastname = name(1)&lt;BR /&gt;If name.Length = 3 Then&lt;BR /&gt;lastname = name(1) &amp;amp; " " &amp;amp; name(2)&lt;BR /&gt;End If&lt;BR /&gt;If name.Length = 4 Then&lt;BR /&gt;lastname = name(1) &amp;amp; " " &amp;amp; name(2) &amp;amp; " " &amp;amp; name(3)&lt;BR /&gt;End If&lt;BR /&gt;If name.Length = 5 Then&lt;BR /&gt;lastname = name(1) &amp;amp; " " &amp;amp; name(2) &amp;amp; " " &amp;amp; name(3) &amp;amp; " " &amp;amp; name(4)&lt;BR /&gt;End If&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;Dim post_values As New Generic.Dictionary(Of String, String)&lt;/P&gt;&lt;P&gt;'-------------------- CHECK TO SEE WHICH AUTHORIZE.NET ACCOUNT THIS SHOULD GO TO, SSM OR EP --------------&lt;BR /&gt;'check the subscriber_num_track table for the current year and current month&lt;BR /&gt;'if number of signups for the month &amp;lt; 30, then mark subscriber as a SSM subscriber and use SSM authorize.net account&lt;/P&gt;&lt;P&gt;'the API Login ID and Transaction Key must be replaced with valid values&lt;/P&gt;&lt;P&gt;Dim SQLConn As New SqlConnection&lt;BR /&gt;Dim sql As String = ""&lt;BR /&gt;Dim is_ssm_sub As Integer = 0, _&lt;BR /&gt;is_ep_sub As Integer = 0, _&lt;BR /&gt;loginkey As String = "XXXXXXXX3BgV", _&lt;BR /&gt;trankey As String = "XXXXXXXXXXXXXHK2"&lt;/P&gt;&lt;P&gt;loginkey = "XXXXXXXX3BgV"&lt;BR /&gt;trankey = "XXXXXXXXXXXXXHK2"&lt;/P&gt;&lt;P&gt;is_ssm_sub = 1&lt;BR /&gt;is_ep_sub = 0&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;post_values.Add("x_login", loginkey)&lt;BR /&gt;post_values.Add("x_tran_key", trankey)&lt;/P&gt;&lt;P&gt;post_values.Add("x_test_request", "FALSE")&lt;/P&gt;&lt;P&gt;post_values.Add("x_delim_data", "TRUE")&lt;BR /&gt;post_values.Add("x_delim_char", "|")&lt;BR /&gt;post_values.Add("x_relay_response", "FALSE")&lt;/P&gt;&lt;P&gt;post_values.Add("x_type", "AUTH_CAPTURE")&lt;BR /&gt;post_values.Add("x_method", "CC")&lt;BR /&gt;post_values.Add("x_card_num", ccnum)&lt;BR /&gt;post_values.Add("x_exp_date", ccexp)&lt;BR /&gt;'security code&lt;BR /&gt;post_values.Add("x_card_code", ccsecnumtxt.Text.Trim)&lt;/P&gt;&lt;P&gt;Dim totalcost As Integer = CInt(totallbl.Text.Trim.Replace("$", ""))&lt;/P&gt;&lt;P&gt;post_values.Add("x_amount", totalcost)&lt;BR /&gt;post_values.Add("x_invoice", orderid.ToString)&lt;BR /&gt;post_values.Add("x_description", "Solved Social Media Order #:" &amp;amp; orderid.ToString)&lt;/P&gt;&lt;P&gt;post_values.Add("x_first_name", firstname)&lt;BR /&gt;post_values.Add("x_last_name", lastname)&lt;BR /&gt;post_values.Add("x_address", addresstxt.Text.Trim &amp;amp; " " &amp;amp; address2)&lt;BR /&gt;post_values.Add("x_city", citytxt.Text.Trim)&lt;BR /&gt;post_values.Add("x_state", statedropdown.SelectedValue)&lt;BR /&gt;post_values.Add("x_zip", ziptxt.Text.Trim)&lt;BR /&gt;' Additional fields can be added here as outlined in the AIM integration&lt;BR /&gt;' guide at: &lt;A href="http://developer.authorize.net" target="_blank"&gt;http://developer.authorize.net&lt;/A&gt;&lt;/P&gt;&lt;P&gt;' This section takes the input fields and converts them to the proper format&lt;BR /&gt;' for an http post. For example: "x_login=username&amp;amp;x_tran_key=a1B2c3D4"&lt;BR /&gt;Dim post_string As String = ""&lt;/P&gt;&lt;P&gt;For Each kvp As Generic.KeyValuePair(Of String, String) In post_values&lt;BR /&gt;Console.WriteLine("Key = {0}, Value = {1}", _&lt;BR /&gt;kvp.Key, kvp.Value)&lt;BR /&gt;post_string = post_string &amp;amp; kvp.Key &amp;amp; "=" &amp;amp; Server.UrlEncode(kvp.Value) &amp;amp; "&amp;amp;"&lt;BR /&gt;Next kvp&lt;/P&gt;&lt;P&gt;post_string = Left(post_string, Len(post_string) - 1)&lt;/P&gt;&lt;P&gt;' create an HttpWebRequest object to communicate with Authorize.net&lt;BR /&gt;Dim objRequest As HttpWebRequest = CType(WebRequest.Create(post_url), HttpWebRequest)&lt;BR /&gt;objRequest.Method = "POST"&lt;BR /&gt;objRequest.ContentLength = post_string.Length&lt;BR /&gt;objRequest.ContentType = "application/x-www-form-urlencoded"&lt;/P&gt;&lt;P&gt;' post data is sent as a stream&lt;BR /&gt;Dim myWriter As StreamWriter = Nothing&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;myWriter = New StreamWriter(objRequest.GetRequestStream())&lt;BR /&gt;&lt;FONT color="#000000"&gt;myWriter.Write(post_string)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;myWriter.Close()&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;' returned values are returned as a stream, then read into a string&lt;BR /&gt;Dim objResponse As HttpWebResponse = CType(objRequest.GetResponse(), HttpWebResponse)&lt;BR /&gt;Dim responseStream As New StreamReader(objResponse.GetResponseStream())&lt;BR /&gt;Dim post_response As String = responseStream.ReadToEnd()&lt;BR /&gt;responseStream.Close()&lt;/P&gt;&lt;P&gt;' the response string is broken into an array&lt;BR /&gt;Dim response_array As Array = Split(post_response, post_values("x_delim_char"), -1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have highlighted the code that the server errors on.&amp;nbsp; This is the error back from the server:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;I&gt;The request was aborted: Could not create SSL/TLS secure channel.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "&gt;&lt;STRONG&gt;Description:&lt;SPAN&gt;&amp;nbsp;An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Exception Details:&lt;SPAN&gt;&amp;nbsp;System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Source Error:&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE&gt;Line 768:        ' post data is sent as a stream
Line 769:        Dim myWriter As StreamWriter = Nothing
&lt;FONT color="red"&gt;Line 770:        myWriter = New StreamWriter(objRequest.GetRequestStream())Line 771:        myWriter.Write(post_string)
Line 772:        myWriter.Close()&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "&gt;&lt;BR /&gt;&lt;STRONG&gt;Source File:&lt;SPAN&gt;&amp;nbsp;G:\PleskVhosts\solvedsocialmedia.com\httpdocs\pay_web.aspx.vb&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Line:&lt;SPAN&gt;&amp;nbsp;770&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Stack Trace:&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE&gt;[WebException: The request was aborted: Could not create SSL/TLS secure channel.]
   System.Net.HttpWebRequest.GetRequestStream(TransportContext&amp;amp; context) +916
   System.Net.HttpWebRequest.GetRequestStream() +13
   pay_web.submitpmt() in G:\PleskVhosts\solvedsocialmedia.com\httpdocs\pay_web.aspx.vb:770
   pay_web.continuebtn2_Click(Object sender, EventArgs e) in G:\PleskVhosts\solvedsocialmedia.com\httpdocs\pay_web.aspx.vb:607
   System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9815014
   System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +204
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +12
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +15
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1639&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any assistance is greatly apprciated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jonathan.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 08 Feb 2018 20:31:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61569#M35998</guid>
      <dc:creator>jonathn6</dc:creator>
      <dc:date>2018-02-08T20:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Could not establish trust relationship for the SSL/TLS</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61583#M36010</link>
      <description>&lt;P&gt;That code can and should be simplified.&amp;nbsp; The new API endpoint at &lt;A href="https://api.authorize.net/xml/v1/request.api" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt; accepts XML and you would create the server object with:&lt;/P&gt;&lt;PRE&gt;Set httpRequest = Server.CreateObject("MSXML2.XMLHTTP.6.0")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 12:35:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61583#M36010</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-02-09T12:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Could not establish trust relationship for the SSL/TLS</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61707#M36119</link>
      <description>&lt;P&gt;We also have similar code and the code fails at "stream = webRequest.GetRequestStream();"&lt;/P&gt;&lt;P&gt;This code is in Dynamics AX 2009. I am testing using "&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;" API. I signed up on the developer.authorize.net and got the test login and transaction key.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;WebRequest = System.Net.WebRequest::Create(ccAdn.HostAddress);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WebRequest.set_Method('POST');&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WebRequest.set_ContentLength(strlen(parmList));&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WebRequest.set_ContentType('application/x-www-form-urlencoded');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stream = webRequest.GetRequestStream();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; streamWriter = new System.IO.StreamWriter(stream);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; streamWriter.Write(parmList);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; streamWriter.Close();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; webResponse = webRequest.GetResponse();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas how to fix this?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Daljeet&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2018 20:51:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/61707#M36119</guid>
      <dc:creator>Daljeet</dc:creator>
      <dc:date>2018-02-14T20:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Could not establish trust relationship for the SSL/TLS</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/62209#M36577</link>
      <description>&lt;P&gt;I have the exact issue as the person who posted this error.&amp;nbsp; I don't understand your response.&amp;nbsp; Can you elaborate?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:05:03 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/62209#M36577</guid>
      <dc:creator>nmah</dc:creator>
      <dc:date>2018-03-20T15:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Could not establish trust relationship for the SSL/TLS</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/62211#M36579</link>
      <description>&lt;P&gt;as was suggested in another post out here, this worked.&amp;nbsp; I'm using the same code as you, going to authorize.net, and now all is well.&lt;/P&gt;&lt;P&gt;Const _Tls12 As SslProtocols = DirectCast(&amp;amp;HC00, SslProtocols)&lt;/P&gt;&lt;P&gt;Const Tls12 As SecurityProtocolType = DirectCast(_Tls12, SecurityProtocolType)&lt;/P&gt;&lt;P&gt;ServicePointManager.SecurityProtocol = Tls12&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:08:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/62211#M36579</guid>
      <dc:creator>nmah</dc:creator>
      <dc:date>2018-03-20T16:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Could not establish trust relationship for the SSL/TLS</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/62248#M36607</link>
      <description>&lt;P&gt;To make this even simpler, I just added the following line to my code and it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 15:54:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-establish-trust-relationship-for-the-SSL-TLS/m-p/62248#M36607</guid>
      <dc:creator>mitchhitch3</dc:creator>
      <dc:date>2018-03-22T15:54:01Z</dc:date>
    </item>
  </channel>
</rss>

