<?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: Difference in Response Code and Transaction Status in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19242#M10613</link>
    <description>&lt;P&gt;Heh, I figured it might be something like that.&lt;/P&gt;</description>
    <pubDate>Tue, 22 Nov 2011 16:37:29 GMT</pubDate>
    <dc:creator>TJPride</dc:creator>
    <dc:date>2011-11-22T16:37:29Z</dc:date>
    <item>
      <title>Difference in Response Code and Transaction Status</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19024#M10509</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We run a batch of CIM's every morning and recently we have started seeing discrepencies in our responses from a.net and what is showing in the merchant.a.net CIM portal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, we are getting the Duplication Transaction error (which is not expected) in the responses from a.net. However, when we log into the merchant site, we see that there are "Settled Successfully" statuses for each of the transactions that had previously been marked as duplicates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are not resubmitting the transactions, and this does not happen every day but only about once a week.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone else getting mixed responses vs what is being actually recorded on the CIM portal?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;BR /&gt;Wesley&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2011 16:06:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19024#M10509</guid>
      <dc:creator>wduffee</dc:creator>
      <dc:date>2011-11-17T16:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Response Code and Transaction Status</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19032#M10513</link>
      <description>&lt;P&gt;Are you logging every charge? Are you using an automated routine to do the processing every morning, or triggering manually? If using an automated routine, can you post applicable code?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2011 17:32:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19032#M10513</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-11-17T17:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Response Code and Transaction Status</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19034#M10514</link>
      <description>&lt;P&gt;Yes, we are logging every charge.&amp;nbsp;It does run automatically. What code are you interested in seeing? I'm happy to share some code, what specifically are you looking for?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What all criteria gets checked by a.net for a duplicate transaction? ie, what can be the same and what can be different?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, each transaction being flagged as a duplicate is happening for the first (and only) time that a CIM profile is getting pushed up if that helps. So, put another way, every day each CIM profile has one and only one transaction request. And that is still getting marked as duplicate (in the response - not on the merchant.a.net site, which shows all as being well).&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2011 17:51:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19034#M10514</guid>
      <dc:creator>wduffee</dc:creator>
      <dc:date>2011-11-17T17:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Response Code and Transaction Status</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19064#M10528</link>
      <description>&lt;P&gt;I'd like to see the code you're using to create a profile and submit a transaction. Also print_r (or equivalent if not using PHP) the responss and paste those as well. Are you sure you're getting the duplicate transaction error for the transaction and not for the profile creation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;createCustomerProfileRequest&lt;/STRONG&gt;&lt;BR /&gt;merchantCustomerId, description, email&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;createCustomerPaymentProfileRequest&lt;/STRONG&gt;&lt;BR /&gt;customerProfileId, cardNumber, accountNumber, routingNumber, billToFirstName, billToLastName, billToAddress, and billToZip&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;createCustomerShippingAddressRequest&lt;/STRONG&gt;&lt;BR /&gt;customerProfileId, firstName, lastName, address, zip and phoneNumber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You get a duplicate transaction if it's for the same amount, same profile, and is within the time cut-off. Essentially, the only way I can think of there'd actually be a duplicate transaction is if you're sending the transaction twice, in which case one would probably be rejected and never show up in the system and the other would be listed as ok.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2011 09:56:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19064#M10528</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-11-18T09:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Response Code and Transaction Status</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19234#M10609</link>
      <description>&lt;P&gt;I'm afraid the solution was very simple and totally unrelated to a.net. Cron scheduling issues on our end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your assistance!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2011 15:01:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19234#M10609</guid>
      <dc:creator>wduffee</dc:creator>
      <dc:date>2011-11-22T15:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Response Code and Transaction Status</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19242#M10613</link>
      <description>&lt;P&gt;Heh, I figured it might be something like that.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2011 16:37:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Difference-in-Response-Code-and-Transaction-Status/m-p/19242#M10613</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2011-11-22T16:37:29Z</dc:date>
    </item>
  </channel>
</rss>

