<?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: TSL 1.2 compatibility question with transact.dll in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60903#M35413</link>
    <description>&lt;P&gt;Any other thoughts or help?&amp;nbsp; I'm really not sure how best to proceed here.&amp;nbsp; Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Dec 2017 00:58:31 GMT</pubDate>
    <dc:creator>wesg92</dc:creator>
    <dc:date>2017-12-19T00:58:31Z</dc:date>
    <item>
      <title>TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60719#M35233</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;An ecommerce website I manage&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;is currently using classic ASP and posting to&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;for our transactions. Is this compatible with TSL 1.2, or will I need to make changes?&amp;nbsp; If so, what changes must be made?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've contacted Authorize.net, but they directed me to post here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Wes&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 02:46:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60719#M35233</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2017-12-05T02:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60733#M35245</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/14447"&gt;@wesg92&lt;/a&gt;&amp;nbsp; Yes, Transact endpoint&amp;nbsp;&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank" rel="nofollow noopener noreferrer"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;supports TLS12. Make sure to set the SecurityProtocol to TLS 1.2 before sending the request. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is the Eg:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please let us know if you are facing any issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Bhavana&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 21:41:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60733#M35245</guid>
      <dc:creator>bhav</dc:creator>
      <dc:date>2017-12-05T21:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60742#M35254</link>
      <description>&lt;P&gt;Gotcha, not quite sure where that fits.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Const SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS = 2&lt;/P&gt;&lt;P&gt;Const SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056&lt;/P&gt;&lt;P&gt;Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;xml.setOption SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS, SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;xml.open "POST", "&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;", false&lt;/P&gt;&lt;P&gt;xml.send vPostData&lt;/P&gt;&lt;P&gt;strStatus = xml.Status&lt;/P&gt;&lt;P&gt;strRetval = xml.responseText&lt;/P&gt;&lt;P&gt;Set xml = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Wes&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 03:43:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60742#M35254</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2017-12-06T03:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60743#M35255</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/14447"&gt;@wesg92&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our sandbox is configured to only support a TLS 1.2 connection for testing a connection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should also review our &lt;A href="https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Request-for-Comments-API-Best-Practices/ba-p/53668" target="_self"&gt;API best practices&lt;/A&gt;.&amp;nbsp; Depending on your platform, tools and services,&amp;nbsp; you may need to upgrade some of all of your systems to support TLS 1.2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 04:26:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60743#M35255</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-12-06T04:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60768#M35280</link>
      <description>&lt;P&gt;I don't see anything in there detailing what code changes, if any, that I need to make.&amp;nbsp; It's vague and nothing references classic ASP.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 01:38:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60768#M35280</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2017-12-07T01:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60903#M35413</link>
      <description>&lt;P&gt;Any other thoughts or help?&amp;nbsp; I'm really not sure how best to proceed here.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 00:58:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60903#M35413</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2017-12-19T00:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60908#M35418</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/14447"&gt;@wesg92&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The information at the link below may be helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/33761919/tls-1-2-in-net-framework-4-0" target="_blank"&gt;https://stackoverflow.com/questions/33761919/tls-1-2-in-net-framework-4-0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 19:46:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60908#M35418</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-12-19T19:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60912#M35422</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks, but that looks to be referencing ASP.NET, and I'm using classic ASP.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 01:39:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60912#M35422</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2017-12-20T01:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60913#M35423</link>
      <description>&lt;P&gt;Set httpRequest = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0")&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 03:20:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/60913#M35423</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-12-20T03:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61018#M35525</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;Set httpRequest = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0")"&lt;/SPAN&gt;&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;Thank you.&amp;nbsp; I saw this in another thread as well.&amp;nbsp; Assming that is the only change that is needed?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 20:12:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61018#M35525</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2017-12-28T20:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61019#M35526</link>
      <description>&lt;P&gt;In your particular case, of course the change would be:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0")"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If your server's Schannel and registry setttings are for TLS1.2, then with the modification above, you should be good to go.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 20:18:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61019#M35526</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-12-28T20:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61059#M35565</link>
      <description>&lt;P&gt;Of course, thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 02:27:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61059#M35565</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2018-01-04T02:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61149#M35641</link>
      <description>&lt;P&gt;Another question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I test TLS 1.2?&amp;nbsp; Can I just post to&amp;nbsp;&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt; with the updated object creation code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Wes&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 02:09:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61149#M35641</guid>
      <dc:creator>wesg92</dc:creator>
      <dc:date>2018-01-10T02:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61151#M35643</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/14447"&gt;@wesg92&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Another question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I test TLS 1.2?&amp;nbsp; Can I just post to&amp;nbsp;&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt; with the updated object creation code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Wes&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes!&amp;nbsp; The sandbox endpoint only supports a TLS 1.2 connection, so if you're able to connect at the URL above, you should be good.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 03:10:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61151#M35643</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2018-01-10T03:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61895#M36294</link>
      <description>&lt;P&gt;I am trying to update my code for TLS 1.2 support.&amp;nbsp; But I'm getting an error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;FONT face="Arial" size="2"&gt;The system cannot locate the resource specified. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;on my "Send" command.&amp;nbsp; Specifically, the code is:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp; Set xml = Server.CreateObject ("MSXML2.XMLHTTP.6.0")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; xml.open "POST", "&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;?" &amp;amp; vPostData &amp;amp; "", false&lt;BR /&gt;&amp;nbsp;&amp;nbsp; xml.send ""&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;This code has always worked until today.&amp;nbsp; Instead I get the above error if I set the code to fail on errors.&amp;nbsp; If I set it to resume, I just get an empty response string.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;I've teid other Server Objects, including "MSXML2.ServerXMLHTTP.6.0", "WinHttp.WinHttpRequest.5.1", "Microsoft.XMLHTTP", and "MSXML2.ServerXMLHTTP" (although some of those give me a different error:&amp;nbsp; An error occurred in the secure channel support).&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;I have verified through &lt;A href="http://ssl-checker.online-domain-tools.com/" target="_blank"&gt;http://ssl-checker.online-domain-tools.com/&lt;/A&gt; that my server is supporting TLS 1.2, and that 1.1 and 1.0 are disabled.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;My code was working fine until today, when Authorize.net stopped supporting 1.1 and 1.0.&amp;nbsp; It hasn't changed since.&amp;nbsp; I'm out of things to try here.&amp;nbsp; Any idea of what the "system cannot locate the resource specified" error points me to?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Please, any help is GREATLY appreciated.&amp;nbsp; My store has been down all day.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Thanks,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Tom&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 03:20:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/61895#M36294</guid>
      <dc:creator>tbowenwso</dc:creator>
      <dc:date>2018-03-01T03:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/62005#M36391</link>
      <description>&lt;P&gt;i am also facing same problem with Classic ASP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please HELP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 11:00:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/62005#M36391</guid>
      <dc:creator>bsgrewal</dc:creator>
      <dc:date>2018-03-06T11:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: TSL 1.2 compatibility question with transact.dll</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/62035#M36419</link>
      <description>&lt;P&gt;Any luck??&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 10:51:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/62035#M36419</guid>
      <dc:creator>bsgrewal</dc:creator>
      <dc:date>2018-03-08T10:51:38Z</dc:date>
    </item>
    <item>
      <title>ARB subscription no deduction on create</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/63671#M37741</link>
      <description>&lt;P&gt;I have imlemented ARB for suscription. Its walys gives success message but transaction status N/A. I have put start date which is current date and it not deducting money in production. Please help me.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 06:28:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TSL-1-2-compatibility-question-with-transact-dll/m-p/63671#M37741</guid>
      <dc:creator>RaziaSale</dc:creator>
      <dc:date>2018-07-12T06:28:44Z</dc:date>
    </item>
  </channel>
</rss>

