<?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 ARB Subscription Request SSL Connection Error in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16874#M9480</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using ASP.NET C# to connect to the live ARB server:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&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;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I make a Subscription Request from our live server, I get this error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.﻿"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, the code works perfectly to either the live or test server from our development environment, but not from our production environment. &amp;nbsp;Authorize.NET live support (who was superbly unhelpful) told me it was a problem with OUR SSL certificate, which I don't buy. &amp;nbsp;Nothing else we do securely, even connections to non-ARB Authorize.NET API requests) has any issue at all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The basic C# code for sending the requests is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;private XmlDocument SendRequest()&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Uri myUri = new Uri(this._postUrl);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HttpWebRequest req = WebRequest.Create(myUri) as HttpWebRequest;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; req.KeepAlive = false;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; req.Method = "POST";&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; req.ContentType = "text/xml";&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StreamWriter sw = new StreamWriter(req.GetRequestStream());&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sw.WriteLine(this._doc.InnerXml); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sw.Close();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ﻿// Send the data&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WebResponse rsp = req.GetResponse();&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Read the response&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StreamReader sr = new StreamReader(rsp.GetResponseStream());&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string content =&amp;nbsp;sr.ReadToEnd();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XmlDocument response = new XmlDocument();&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; response.LoadXml(content);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Close the response and free resources&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sr.Close();&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsp.Close();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return response;&lt;/P&gt;&lt;P&gt;}﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The exception is throw at WebResponse rsp = req.GetResponse();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone else seen this and have a solution for me? &amp;nbsp;Again, this doesn't happen when I call the regular Authorize.NET API at&amp;nbsp;&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;﻿ with the same credentials and the ARB system works perfectly in our development environment against both TEST and LIVE servers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bill Rowell&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.frightcatalog.com/" target="_blank"&gt;http://www.frightcatalog.com/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Sep 2011 13:49:21 GMT</pubDate>
    <dc:creator>billr578</dc:creator>
    <dc:date>2011-09-08T13:49:21Z</dc:date>
    <item>
      <title>ARB Subscription Request SSL Connection Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16874#M9480</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using ASP.NET C# to connect to the live ARB server:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&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;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I make a Subscription Request from our live server, I get this error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.﻿"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, the code works perfectly to either the live or test server from our development environment, but not from our production environment. &amp;nbsp;Authorize.NET live support (who was superbly unhelpful) told me it was a problem with OUR SSL certificate, which I don't buy. &amp;nbsp;Nothing else we do securely, even connections to non-ARB Authorize.NET API requests) has any issue at all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The basic C# code for sending the requests is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;private XmlDocument SendRequest()&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Uri myUri = new Uri(this._postUrl);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HttpWebRequest req = WebRequest.Create(myUri) as HttpWebRequest;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; req.KeepAlive = false;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; req.Method = "POST";&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; req.ContentType = "text/xml";&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StreamWriter sw = new StreamWriter(req.GetRequestStream());&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sw.WriteLine(this._doc.InnerXml); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sw.Close();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ﻿// Send the data&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WebResponse rsp = req.GetResponse();&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Read the response&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StreamReader sr = new StreamReader(rsp.GetResponseStream());&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string content =&amp;nbsp;sr.ReadToEnd();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XmlDocument response = new XmlDocument();&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; response.LoadXml(content);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Close the response and free resources&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sr.Close();&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsp.Close();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return response;&lt;/P&gt;&lt;P&gt;}﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The exception is throw at WebResponse rsp = req.GetResponse();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone else seen this and have a solution for me? &amp;nbsp;Again, this doesn't happen when I call the regular Authorize.NET API at&amp;nbsp;&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;﻿ with the same credentials and the ARB system works perfectly in our development environment against both TEST and LIVE servers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bill Rowell&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.frightcatalog.com/" target="_blank"&gt;http://www.frightcatalog.com/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2011 13:49:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16874#M9480</guid>
      <dc:creator>billr578</dc:creator>
      <dc:date>2011-09-08T13:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription Request SSL Connection Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16876#M9481</link>
      <description>&lt;P&gt;What do you get when you put &lt;A href="https://api.authorize.net/xml/v1/request.api" rel="nofollow" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt;﻿﻿ in the browser URL address on your production server/environment﻿?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2011 14:10:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16876#M9481</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-09-08T14:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription Request SSL Connection Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16878#M9482</link>
      <description>&lt;P&gt;I get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This XML file does not appear to have any style information associated with it. The document tree is shown below.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ErrorResponse&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Error&amp;lt;/resultCode&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;E00002&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;The content-type specified is not supported.&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;/ErrorResponse&amp;gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The request works and the site/page is secure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Bill&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2011 14:20:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16878#M9482</guid>
      <dc:creator>billr578</dc:creator>
      <dc:date>2011-09-08T14:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription Request SSL Connection Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16880#M9483</link>
      <description>&lt;P&gt;We just updated our SSL certificate for this site/server the other day. &amp;nbsp;Our other secure pages are working fine though, so that's why I don't think our SSL certificate is the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could I be wrong?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2011 14:34:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16880#M9483</guid>
      <dc:creator>billr578</dc:creator>
      <dc:date>2011-09-08T14:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription Request SSL Connection Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16888#M9487</link>
      <description>&lt;P&gt;Is that from Firefox?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This XML file does not appear to have any style information associated with it. The document tree is shown below.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ErrorResponse&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Error&amp;lt;/result&lt;/P&gt;&lt;P&gt;Code&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;E00002&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;The content-type specified is not supported.&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;/ErrorResponse&amp;gt;﻿&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;P&gt;What about in IE?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think is your SSL. It something about the production authorize.net SSL certificate your production server didn't like, or it caching an old/invalid certificate.&lt;/P&gt;&lt;P&gt;There is workaround &lt;A&gt;http://dobrzanski.net/2009/04/01/systemnetwebexception-the-underlying-connection-was-closed-could-not-establish-trust-relationship-for-the-ssltls-secure-channel/&lt;/A&gt;﻿&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2011 15:06:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16888#M9487</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-09-08T15:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription Request SSL Connection Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16896#M9491</link>
      <description>&lt;P&gt;I'm almost positive that this is a problem with Authorize.NET's certificate I think and the way the .NET framework handles SSL certificates. &amp;nbsp;I found a work around here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.west-wind.com/weblog/posts/2007/Dec/12/Accepting-invalid-Certificates-for-WCFWeb-ServicesHttpWebRequest-gets-easier" target="_blank"&gt;http://www.west-wind.com/weblog/posts/2007/Dec/12/Accepting-invalid-Certificates-for-WCFWeb-ServicesHttpWebRequest-gets-easier&lt;/A&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used this line of code to ignore the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ServicePointManager.ServerCertificateValidationCallback +=&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; delegate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; };﻿﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think its because the name on the certificate doesn't exactly match the server I'm connecting to. &amp;nbsp;At least that's the best information I can find regarding this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have it working for now, but I'm not 100% thrilled with the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Bill&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2011 15:12:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARB-Subscription-Request-SSL-Connection-Error/m-p/16896#M9491</guid>
      <dc:creator>billr578</dc:creator>
      <dc:date>2011-09-08T15:12:54Z</dc:date>
    </item>
  </channel>
</rss>

