<?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: Sandbox is giving SSL/TLS  Error in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60435#M34967</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're right, this is a common issue. I have submitted a pull request 16 days ago&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp/pull/65" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp/pull/65&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The gist of it is to use the following before making your webrequest:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; const SslProtocols _Tls12 = (SslProtocols)0x00000C00;
 const SecurityProtocolType Tls12 = (SecurityProtocolType)_Tls12;
 ServicePointManager.SecurityProtocol = Tls12;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yep, that did the trick! Added it right at the top of the SendRequest method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing to note is you'll need to use the "System.Security.Authentication" namespace in your using statments or add prepend it to the SslProtocols objects.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Nov 2017 15:26:52 GMT</pubDate>
    <dc:creator>epicbooth212</dc:creator>
    <dc:date>2017-11-10T15:26:52Z</dc:date>
    <item>
      <title>Sandbox is giving SSL/TLS  Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60430#M34963</link>
      <description>&lt;P&gt;Hi, I'm trying to use the C# coffe shop sample site, it load up fine, but when I go to process an order I get this error:&lt;BR /&gt;&lt;BR /&gt;"System.Net.WebException: 'The request was aborted: Could not create SSL/TLS secure channel.'"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From what I understand this could have something to do with TLS 1.2, but I'm having a diffiuclt time believing that Authorize.NET wouldn't update their developer samples. Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 07:38:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60430#M34963</guid>
      <dc:creator>epicbooth212</dc:creator>
      <dc:date>2017-11-10T07:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox is giving SSL/TLS  Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60433#M34966</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22620"&gt;@epicbooth212&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're right, this is a common issue. I have submitted a pull request 16 days ago&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp/pull/65" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp/pull/65&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The gist of it is to use the following before making your webrequest:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; const SslProtocols _Tls12 = (SslProtocols)0x00000C00;
 const SecurityProtocolType Tls12 = (SecurityProtocolType)_Tls12;
 ServicePointManager.SecurityProtocol = Tls12;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 13:10:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60433#M34966</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-11-10T13:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox is giving SSL/TLS  Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60435#M34967</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're right, this is a common issue. I have submitted a pull request 16 days ago&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp/pull/65" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp/pull/65&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The gist of it is to use the following before making your webrequest:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; const SslProtocols _Tls12 = (SslProtocols)0x00000C00;
 const SecurityProtocolType Tls12 = (SecurityProtocolType)_Tls12;
 ServicePointManager.SecurityProtocol = Tls12;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yep, that did the trick! Added it right at the top of the SendRequest method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing to note is you'll need to use the "System.Security.Authentication" namespace in your using statments or add prepend it to the SslProtocols objects.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:26:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-is-giving-SSL-TLS-Error/m-p/60435#M34967</guid>
      <dc:creator>epicbooth212</dc:creator>
      <dc:date>2017-11-10T15:26:52Z</dc:date>
    </item>
  </channel>
</rss>

