<?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: Issue Receiving Transaction Information in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45350#M22965</link>
    <description>&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I spoke with our developer. &amp;nbsp;Understand that I'm not a developer myself so there may be some misuse of vocab here. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our ERP system is written in Visual FoxPro, which doesn't have the ability to access the Microsoft .NET System Objects or the AuthorizeNet.DLL&amp;nbsp;to run the XML code provided in the examples provided by Authorize.Net. &amp;nbsp;&lt;/P&gt;&lt;P&gt;According to our developer we currently run functions that use 3rd party Class Libraries from WestWind Technologies which then uses very low level&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;set of code&amp;nbsp;(OS Level) to Transmit &amp;amp; Receive data from the Authorize.net API URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there another way to test what you'd like to test? &amp;nbsp;I've asked that our developer do an official write-up of the information when he gets back in the office around 3PM EST. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once I have that I will post it as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a&amp;nbsp;sample XML file which has been used &amp;amp; working since December 2012:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAMPLE AUTHORIZE.NET:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;Sample of the XML File  

  lcXML1=lcXML1+'&amp;lt;?xml version="1.0"?&amp;gt;' 
  lcXML1=lcXML1+'&amp;lt;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;' 
  lcXML1=lcXML1+"  &amp;lt;merchantAuthentication&amp;gt;" 
  lcXML1=lcXML1+"    &amp;lt;name&amp;gt;"+lcLOGIN+"&amp;lt;/name&amp;gt;"
  lcXML1=lcXML1+"    &amp;lt;transactionKey&amp;gt;"+lcTRANKEY+"&amp;lt;/transactionKey&amp;gt;"
  lcXML1=lcXML1+"  &amp;lt;/merchantAuthentication&amp;gt;"+
  lcXML1=lcXML1+"  &amp;lt;profile&amp;gt;"+CHR(13)+CHR(10)
  lcXML1=lcXML1+"    &amp;lt;merchantCustomerId&amp;gt;"+mCUSTNO+"&amp;lt;/merchantCustomerId&amp;gt;"
  lcXML1=lcXML1+"    &amp;lt;description&amp;gt;"+mCOMPANY+"&amp;lt;/description&amp;gt;"
  lcXML1=lcXML1+"    &amp;lt;email&amp;gt;"+mEMAIL+"&amp;lt;/email&amp;gt;"
  lcXML1=lcXML1+"  &amp;lt;/profile&amp;gt;"
  lcXML1=lcXML1+"&amp;lt;/createCustomerProfileRequest&amp;gt;"

Code used to transmit to Authorize.net
loHttp = CREATE('wwhttp')  
1 - creates &amp;amp; opens http object 

loHttp.nHttpPostMode = 4	  
2 - tells the object posting an XML 

loHttp.AddPostKey(lcXml1)  
3 - add the XML to the Object

lCResult=loHTTP.HTTPGet(lcXMLURL)  
4 - Sends the XML to authorize.net and receives the response 

DO ParseResponse WITH lcTYPE  
5 - parse the XML data being returned 

LoHTTP.HTTPClose()  
6 - Close the HTTP object and connection&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps. &amp;nbsp;Let me know if you need anything else, and thanks again for helping with this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GKElite&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jul 2014 18:31:59 GMT</pubDate>
    <dc:creator>GKElite</dc:creator>
    <dc:date>2014-07-15T18:31:59Z</dc:date>
    <item>
      <title>Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45276#M22928</link>
      <description>&lt;P&gt;Since last Tuesday we have been unable to access our authorize.net CIM information via our internal ERP system. The transaction goes out to authorize.net and is accepted, however, when returned we are unable to decrypt what is being sent back. So, the result looks a mixture of different types of characters including wingdings, alpha and numeric. We have run several tests. The results were as follows, which includes testing from our internal network and our developer’s network:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pointing to the sandbox/test authorize.net environment everything worked successfully.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Created a new customer - PASS&lt;/LI&gt;&lt;LI&gt;Added a credit card - PASS&lt;/LI&gt;&lt;LI&gt;Charge a credit card- PASS&lt;/LI&gt;&lt;LI&gt;Selecting existing credit cards - PASS&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Pointing to the production authorize.net environment we received encrypted data, which we are unable to decrypt&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Created a new customer – Returned encrypted data&lt;/LI&gt;&lt;LI&gt;Added a credit card - Returned encrypted data&lt;/LI&gt;&lt;LI&gt;Charge a credit card- Returned encrypted data&lt;/LI&gt;&lt;LI&gt;Selecting existing credit cards - Returned encrypted data&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additional Information: We’ve made no changes within our internal ERP environment. Our ERP system is developed in FoxPro 9(vfp9). We are utilizing pieces of a 3rd party widget/plugin called West Wind, for our authorize.net integration.&lt;BR /&gt;&lt;BR /&gt;Note, we've also confirmed the same transaciton key and login information is being used on our website, and the results are being passed back readable with no issues.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2014 19:08:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45276#M22928</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-14T19:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45278#M22929</link>
      <description>&lt;P&gt;Also, our website (which is working successfully) is using API methods to send requests, where as our ERP environment is using XML.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2014 19:15:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45278#M22929</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-14T19:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45284#M22932</link>
      <description>&lt;P&gt;Encrypted data? so the xml structure is there?&lt;/P&gt;&lt;P&gt;Last Tuesday? isn't that a windows updated date? can you see if windows updated ran on that day and the time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do you have something like fiddler2 to look at the http traffic on the ERP server?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2014 20:19:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45284#M22932</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-14T20:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45312#M22946</link>
      <description>&lt;P&gt;RaynorC1emen7,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Encrypted Data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="line-height: 16px;"&gt;: The information recieved is not in XML format. &amp;nbsp;Like we stated before, it's a mix of alpha, numeric and wingdings.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Windows Update&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="line-height: 16px;"&gt;: Our GKERP Server has not done updates since 2013.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="line-height: 16px;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Fiddler2&lt;/STRONG&gt;&lt;/SPAN&gt;: We do not have tools or the expertise at the moment to look at the http traffic on GKERP server.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;Let me know if you need any more information.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;GKELITE&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 14:31:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45312#M22946</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-15T14:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45320#M22950</link>
      <description>&lt;P&gt;That doesn't make sense, both soap and xml url use the same ssl cert.&lt;/P&gt;&lt;P&gt;can you download the sample code CIM XML code to try in your developer's network?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 14:43:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45320#M22950</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-15T14:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45324#M22952</link>
      <description>&lt;P&gt;What sample code are you talking about?&amp;nbsp;&lt;SPAN&gt;Can you elaborate?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 14:51:08 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45324#M22952</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-15T14:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45328#M22954</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/downloads/samplecode/"&gt;http://developer.authorize.net/downloads/samplecode/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 15:27:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45328#M22954</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-15T15:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45350#M22965</link>
      <description>&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I spoke with our developer. &amp;nbsp;Understand that I'm not a developer myself so there may be some misuse of vocab here. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our ERP system is written in Visual FoxPro, which doesn't have the ability to access the Microsoft .NET System Objects or the AuthorizeNet.DLL&amp;nbsp;to run the XML code provided in the examples provided by Authorize.Net. &amp;nbsp;&lt;/P&gt;&lt;P&gt;According to our developer we currently run functions that use 3rd party Class Libraries from WestWind Technologies which then uses very low level&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;set of code&amp;nbsp;(OS Level) to Transmit &amp;amp; Receive data from the Authorize.net API URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there another way to test what you'd like to test? &amp;nbsp;I've asked that our developer do an official write-up of the information when he gets back in the office around 3PM EST. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once I have that I will post it as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a&amp;nbsp;sample XML file which has been used &amp;amp; working since December 2012:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAMPLE AUTHORIZE.NET:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;Sample of the XML File  

  lcXML1=lcXML1+'&amp;lt;?xml version="1.0"?&amp;gt;' 
  lcXML1=lcXML1+'&amp;lt;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;' 
  lcXML1=lcXML1+"  &amp;lt;merchantAuthentication&amp;gt;" 
  lcXML1=lcXML1+"    &amp;lt;name&amp;gt;"+lcLOGIN+"&amp;lt;/name&amp;gt;"
  lcXML1=lcXML1+"    &amp;lt;transactionKey&amp;gt;"+lcTRANKEY+"&amp;lt;/transactionKey&amp;gt;"
  lcXML1=lcXML1+"  &amp;lt;/merchantAuthentication&amp;gt;"+
  lcXML1=lcXML1+"  &amp;lt;profile&amp;gt;"+CHR(13)+CHR(10)
  lcXML1=lcXML1+"    &amp;lt;merchantCustomerId&amp;gt;"+mCUSTNO+"&amp;lt;/merchantCustomerId&amp;gt;"
  lcXML1=lcXML1+"    &amp;lt;description&amp;gt;"+mCOMPANY+"&amp;lt;/description&amp;gt;"
  lcXML1=lcXML1+"    &amp;lt;email&amp;gt;"+mEMAIL+"&amp;lt;/email&amp;gt;"
  lcXML1=lcXML1+"  &amp;lt;/profile&amp;gt;"
  lcXML1=lcXML1+"&amp;lt;/createCustomerProfileRequest&amp;gt;"

Code used to transmit to Authorize.net
loHttp = CREATE('wwhttp')  
1 - creates &amp;amp; opens http object 

loHttp.nHttpPostMode = 4	  
2 - tells the object posting an XML 

loHttp.AddPostKey(lcXml1)  
3 - add the XML to the Object

lCResult=loHTTP.HTTPGet(lcXMLURL)  
4 - Sends the XML to authorize.net and receives the response 

DO ParseResponse WITH lcTYPE  
5 - parse the XML data being returned 

LoHTTP.HTTPClose()  
6 - Close the HTTP object and connection&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps. &amp;nbsp;Let me know if you need anything else, and thanks again for helping with this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GKElite&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 18:31:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45350#M22965</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-15T18:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45354#M22967</link>
      <description>&lt;P&gt;Look at some doc on &lt;A target="_blank" href="https://www.west-wind.com/"&gt;https://www.west-wind.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the prod server do pass in gzip, it this turn on?&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://www.west-wind.com/webconnection/wwipstuff_docs/_20j0b58l2.htm"&gt;https://www.west-wind.com/webconnection/wwipstuff_docs/_20j0b58l2.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 19:58:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45354#M22967</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-15T19:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45358#M22969</link>
      <description>&lt;P&gt;can the developer see what header information is getting pass?&lt;/P&gt;&lt;P&gt;and there also&amp;nbsp;cErrorMsg &lt;A target="_blank" href="https://www.west-wind.com/webconnection/wwipstuff_docs/_0jj1auej3.htm"&gt;https://www.west-wind.com/webconnection/wwipstuff_docs/_0jj1auej3.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and there is cResultCode&amp;nbsp;&lt;A target="_blank" href="https://www.west-wind.com/webconnection/wwipstuff_docs/_0xy0ul6dp.htm"&gt;https://www.west-wind.com/webconnection/wwipstuff_docs/_0xy0ul6dp.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;can they see if there is an error?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2014 20:22:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45358#M22969</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-15T20:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45389#M22985</link>
      <description>&lt;P&gt;&lt;SPAN&gt;RaynorC1emen7,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Our developer says that by default the HTTP Header does have gzip turned on in both Production &amp;amp; Sandbox and specifically &amp;nbsp;noted. &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;On a side note, our developer&amp;nbsp;ran a test that manually removing “Accept-Encoding: gzip, deflate” and replaced it with &lt;/SPAN&gt;&lt;SPAN&gt;'Content-Type: text/XML; charset=UTF-8' &lt;/SPAN&gt;&lt;SPAN&gt;in the HTTP Header and lo and behold human readable data was returned from the AUTHORIZE.NET production URL.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This would be a minor 2 line change in the program that calls out to the AUTHORIZE.NET API.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also,&amp;nbsp;no error message “cerrormsg” was returned and the Result “cresultcode” was returned as 200 (ok). But data still not human readable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GKElite&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 13:49:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45389#M22985</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-16T13:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45391#M22986</link>
      <description>&lt;P&gt;My guess it that authorize.net update their server last Tuesday and returning data with gzip if the request ask for it.&lt;/P&gt;&lt;P&gt;So have your developer removed it from the header as they tested will fixes this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 13:59:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45391#M22986</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-16T13:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45393#M22987</link>
      <description>&lt;P&gt;Authorize.net is insisting that they have rolled back every change they made and that in no way could their change have had any impact on the issues we're having.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions on how to best prove otherwise?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 15:01:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45393#M22987</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-16T15:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45395#M22988</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;ANOTHER QUESTION:&lt;/SPAN&gt;&lt;/STRONG&gt; If the request asks for GZIP, what would it hand to us?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially, could the jumbled response (wingdings, alpha, and numeric) be a GZIP-ed file?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 15:12:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45395#M22988</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-16T15:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45399#M22990</link>
      <description>&lt;DIV class="lia-message-body lia-component-body"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;Authorize.net is insisting that they have rolled back every change they made and that in no way could their change have had any impact on the issues we're having.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Any suggestions on how to best prove otherwise?&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;If you have the https log of the response header from before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the request asks for GZIP, what would it hand to us?&lt;/P&gt;&lt;P&gt;If the request ask for gzip, the server(authorize.net) can response with gzip or they can also said no, don't want to and response with no compression(just text).&lt;/P&gt;&lt;P&gt;So if your request ask for gzip, your code should handled gzip response, but it sound like it wasn't. so either stop the request from asking for gzip or fix the code to handle gzip response.&lt;/P&gt;&lt;P&gt;there wiki on this too &lt;A target="_blank" href="http://en.wikipedia.org/wiki/HTTP_compression"&gt;http://en.wikipedia.org/wiki/HTTP_compression&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially, could the jumbled response (wingdings, alpha, and numeric) be a GZIP-ed file?&lt;/P&gt;&lt;P&gt;Yes, did the reponse have something like a diamond with a question mark?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 15:37:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45399#M22990</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-16T15:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Receiving Transaction Information</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45469#M23017</link>
      <description>&lt;P&gt;Authorize.net has confirmed that they made a change to IIS which in turn affected GZIP.&lt;/P&gt;&lt;P&gt;They are not rolling back the change they did so we did need to modify our code to work around their change.&lt;/P&gt;&lt;P&gt;The Westwind code change we made:&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;** 07/17/2014 force the HTTP request to only&lt;/P&gt;&lt;P&gt;** have 'Content-Type', 'text/XML; charset=UTF-8'&lt;/P&gt;&lt;P&gt;** and no ref to gzip&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;loHTTP.addheader("")&lt;/P&gt;&lt;P&gt;loHTTP.addheader('Content-Type', 'text/XML; charset=UTF-8')&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This fixed our issue and we are no longer receiving jumbled responses.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANK YOU&amp;nbsp;RaynorC1emen7 for your help in identifying and fixing this issue for us!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2014 17:21:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Issue-Receiving-Transaction-Information/m-p/45469#M23017</guid>
      <dc:creator>GKElite</dc:creator>
      <dc:date>2014-07-18T17:21:43Z</dc:date>
    </item>
  </channel>
</rss>

