<?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: Authorize.net payment not working on 32bit Windows server 2008 machine in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67471#M40872</link>
    <description>&lt;P&gt;YES I tried to download all version and when I tried to install that i got message that This UPDATE doesn not apply to you system, I already updated Windows latest update, I searched for&amp;nbsp;&lt;SPAN&gt;KB4039648 and tried install those updates but got same error, I am very frustated as problem is not going, It was working fine before and now its not working, Please let me know if you can help me for that.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Apr 2019 12:17:48 GMT</pubDate>
    <dc:creator>smandola</dc:creator>
    <dc:date>2019-04-22T12:17:48Z</dc:date>
    <item>
      <title>Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67398#M40814</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi I am using Authorize.net for payment gateway in my Asp.net code, It suddenly stopped working few days back,Please help me,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am getting error on below line&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;myWriter = new StreamWriter(objRequest.GetRequestStream()&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Error is The exception message is 'The request was aborted: Could not create SSL/TLS secure channel.'. See server logs for more details.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is code, My windows machine is Windows server 2008 and I have installed Framework 4.5.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; I tried to setup same code on Windows server 2012 R2 and it is working fine there, Problem is in current Production machine(Windows server 2008 32bit) which is 32bit machine, Is Authorized.net not compatible with 32 bit machine? Please let me know&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Below is my code&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;&lt;BR /&gt;String ApiLogin = System.Configuration.ConfigurationManager.AppSettings["ApiLoginL"];&lt;BR /&gt;String TransactionKey = System.Configuration.ConfigurationManager.AppSettings["TransactionKeyL"];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;String post_url = "&lt;A href="https://secure2.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure2.authorize.net/gateway/transact.dll&lt;/A&gt;";&lt;/P&gt;&lt;P&gt;Dictionary&amp;lt;string, string&amp;gt; post_values = new Dictionary&amp;lt;string, string&amp;gt;();&lt;/P&gt;&lt;P&gt;post_values.Add("x_login", ApiLogin);&lt;BR /&gt;post_values.Add("x_tran_key", TransactionKey);&lt;BR /&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", OrderD.CARDNUMBER);&lt;BR /&gt;&lt;BR /&gt;post_values.Add("x_card_code", OrderD.CVV);&lt;BR /&gt;&lt;BR /&gt;post_values.Add("x_exp_date", OrderD.MONTH + "" + OrderD.YEAR);&lt;/P&gt;&lt;P&gt;post_values.Add("x_amount", "1");&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;post_values.Add("x_description", "");&lt;/P&gt;&lt;P&gt;StrSql = "SELECT USERID, FIRSTNAME,LASTNAME,COMPANYNAME,(STREETADDRESS1||' '||STREETADDRESS2)ADDRESS,STATE,ZIPCODE,CITY,COUNTRY FROM USERCONTACTS ";&lt;BR /&gt;StrSql = StrSql + "WHERE USERID= " + OrderD.USERID + " ";&lt;BR /&gt;dt = OdButil.FillDataTable(StrSql, MyConnectionString);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;post_values.Add("x_first_name", dt.Rows[0]["FIRSTNAME"].ToString());&lt;BR /&gt;post_values.Add("x_last_name", dt.Rows[0]["LASTNAME"].ToString());&lt;BR /&gt;post_values.Add("x_company", dt.Rows[0]["COMPANYNAME"].ToString());&lt;/P&gt;&lt;P&gt;post_values.Add("x_address", dt.Rows[0]["ADDRESS"].ToString());&lt;BR /&gt;post_values.Add("x_state", dt.Rows[0]["STATE"].ToString());&lt;BR /&gt;post_values.Add("x_zip", dt.Rows[0]["ZIPCODE"].ToString());&lt;BR /&gt;post_values.Add("x_city", dt.Rows[0]["CITY"].ToString());&lt;BR /&gt;post_values.Add("x_country", dt.Rows[0]["COUNTRY"].ToString());&lt;/P&gt;&lt;P&gt;String post_string = "";/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;/P&gt;&lt;P&gt;foreach (KeyValuePair&amp;lt;string, string&amp;gt; post_value in post_values)/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;BR /&gt;post_string += post_value.Key + "=" + HttpUtility.UrlEncode(post_value.Value) + "&amp;amp;";/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;BR /&gt;post_string = post_string.TrimEnd('&amp;amp;');/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;/P&gt;&lt;P&gt;//Create an HttpWebRequest object to communicate with Authorize.net&lt;BR /&gt;HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(post_url);/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;BR /&gt;objRequest.Method = "POST";&lt;BR /&gt;objRequest.ContentLength = post_string.Length;&lt;BR /&gt;objRequest.ContentType = post_url;&lt;/P&gt;&lt;P&gt;//post data is sent as a stream&lt;BR /&gt;StreamWriter myWriter = null;/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;BR /&gt;myWriter = new StreamWriter(objRequest.GetRequestStream());/* TODO ERROR: Skipped SkippedTokensTrivia */&lt;BR /&gt;myWriter.Write(post_string);&lt;BR /&gt;myWriter.Close();&lt;/P&gt;&lt;P&gt;//returned values are returned as a stream, then read into a string&lt;BR /&gt;String post_response;&lt;BR /&gt;HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();&lt;BR /&gt;using (StreamReader responseStream = new StreamReader(objResponse.GetResponseStream()))&lt;BR /&gt;{&lt;BR /&gt;post_response = responseStream.ReadToEnd();&lt;BR /&gt;responseStream.Close();&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 08:03:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67398#M40814</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-16T08:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67448#M40853</link>
      <description>&lt;P&gt;Anyone know the problem?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 12:16:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67448#M40853</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-19T12:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67454#M40858</link>
      <description>&lt;P&gt;Windows Server 2008 doesn't have TLS 1.1 and TLS 1.2 by default.&amp;nbsp; There is an optional KB update from Microsoft that adds it.&amp;nbsp; I don't know if 32bit is supported.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 18:03:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67454#M40858</guid>
      <dc:creator>kabutotx</dc:creator>
      <dc:date>2019-04-19T18:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67455#M40859</link>
      <description>&lt;P&gt;Found this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.microsoft.com/en-us/help/4019276/update-to-add-support-for-tls-1-1-and-tls-1-2-in-windows" target="_self"&gt;https://support.microsoft.com/en-us/help/4019276/update-to-add-support-for-tls-1-1-and-tls-1-2-in-windows&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 18:05:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67455#M40859</guid>
      <dc:creator>kabutotx</dc:creator>
      <dc:date>2019-04-19T18:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67464#M40867</link>
      <description>&lt;P&gt;I have tried to download each file and installed but I got error that Update doesn not apply to you system. I dont know how to fix this.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 06:43:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67464#M40867</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-21T06:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67466#M40869</link>
      <description>&lt;P&gt;Make sure you are downloading the x86 version.&amp;nbsp; You can also check the Optional updates on the server in control panel/Windows Update.&amp;nbsp; That was where mine was waiting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is also a SHA2 update. (KB4039648)&amp;nbsp; Make sure you have that installed also.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 19:25:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67466#M40869</guid>
      <dc:creator>kabutotx</dc:creator>
      <dc:date>2019-04-21T19:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67471#M40872</link>
      <description>&lt;P&gt;YES I tried to download all version and when I tried to install that i got message that This UPDATE doesn not apply to you system, I already updated Windows latest update, I searched for&amp;nbsp;&lt;SPAN&gt;KB4039648 and tried install those updates but got same error, I am very frustated as problem is not going, It was working fine before and now its not working, Please let me know if you can help me for that.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 12:17:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67471#M40872</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-22T12:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67472#M40873</link>
      <description>&lt;P&gt;I checked registry, TLS 1.2 is added on HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlset\SecurityProviders\SChannel\Protocol\&lt;/P&gt;&lt;P&gt;There I added TLS 1.2, There are other Items added there Multi Protocol Unified Hello,&lt;/P&gt;&lt;P&gt;PCT 1.0, SSL 2.0, SSL 3.0, TLS 1.0, TLS 1.1, Please let me know if anything wrong you see here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 12:23:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67472#M40873</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-22T12:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67475#M40876</link>
      <description>&lt;P&gt;I am thinking the update was superseeded.&amp;nbsp; Look at installed updates.&amp;nbsp; Was something installed about the time it stopped working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought I had TLS 1.2 working on my Windows Server 2008 but it isn't showing up anymore.&amp;nbsp; I don't really need it for anything and I plan to update to Server 2019 in a few months.&amp;nbsp; My Authorize.net site runs under Ubuntu.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 17:11:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67475#M40876</guid>
      <dc:creator>kabutotx</dc:creator>
      <dc:date>2019-04-22T17:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67481#M40880</link>
      <description>&lt;P&gt;Cant say if update caused issue, Should I remove those updates? What approach&amp;nbsp; may be used to fix that without updating to higher version, Please guide me where I can get more help to fix this?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 01:54:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67481#M40880</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-23T01:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67500#M40895</link>
      <description>&lt;P&gt;Played with my Windows Server 2008 x64 yesterday.&amp;nbsp; With the SCHANNEL registry settings I am getting TLS 1.2 with the latest updates.&amp;nbsp; The only way to test was Firefox to the servers IIS website.&amp;nbsp; Firefox confirmed TLS 1.2 connection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is supposed to be a way to get IE 9 to use TLS 1.2 with group policy but I couldn't get that to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also found out there is a .net 4.0/4.5 registry setting you can use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe this &lt;A href="https://community.spiceworks.com/posts/7545264" target="_self"&gt;link&lt;/A&gt; can help.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 18:10:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67500#M40895</guid>
      <dc:creator>kabutotx</dc:creator>
      <dc:date>2019-04-24T18:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net payment not working on 32bit Windows server 2008 machine</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67549#M40934</link>
      <description>&lt;P&gt;What best I can do and where I can take best help, Please advice.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Apr 2019 09:39:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-payment-not-working-on-32bit-Windows-server-2008/m-p/67549#M40934</guid>
      <dc:creator>smandola</dc:creator>
      <dc:date>2019-04-28T09:39:35Z</dc:date>
    </item>
  </channel>
</rss>

