<?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: AIM: Transactions by ID always returns &amp;amp;quot;An error occurred during processing. Please try in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47149#M23811</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have replaced with my data and It worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So what is the fix I have to do in my code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;</description>
    <pubDate>Tue, 16 Sep 2014 02:54:51 GMT</pubDate>
    <dc:creator>chandu1985</dc:creator>
    <dc:date>2014-09-16T02:54:51Z</dc:date>
    <item>
      <title>AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try again.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47141#M23807</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using both SIM and AIM&amp;nbsp;for authorization and capture.&lt;/P&gt;&lt;P&gt;SIM for AUTH_ONLY as i need to do some process related to my application before capture.&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I am using AIM&amp;nbsp;PRIOR_AUTH_CAPTURE using the transaction Id received from SIM AUTH_ONLY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I am always getting the reasonrespose code and response message as RCC_3_22&amp;nbsp;and NOT FOUND.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"An error occurred during processing. Please try again in 5 minutes."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is somethig not possible to do SIM and AIM together or something I am missing or any setting I have to do it in my sandbox accouint?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2014 23:13:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47141#M23807</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-15T23:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47143#M23808</link>
      <description>&lt;P&gt;Look fine to me, the transaction id is not zero it is?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2014 23:28:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47143#M23808</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-15T23:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47145#M23809</link>
      <description>&lt;P&gt;No it is not zero. i am getting proper transaction Id. (2219657248)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see code below which I am using to call AIM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID,&lt;BR /&gt;transactionKey);&lt;/P&gt;&lt;P&gt;Transaction authCaptureTransaction = merchant.createAIMTransaction(&lt;BR /&gt;TransactionType.PRIOR_AUTH_CAPTURE, new BigDecimal(1676.00));&lt;BR /&gt;authCaptureTransaction.setTransactionId("2219657248");&lt;BR /&gt;&lt;BR /&gt;Result&amp;lt;Transaction&amp;gt; result = (Result&amp;lt;Transaction&amp;gt;)merchant.postTransaction(&lt;BR /&gt;authCaptureTransaction);&lt;/P&gt;&lt;P&gt;if (result.isApproved())&lt;BR /&gt;{&lt;BR /&gt;System.out.println("Approved!&amp;lt;/br&amp;gt;");&lt;BR /&gt;System.out.println("Transaction Id: " + result.getTarget().getTransactionId());&lt;BR /&gt;} else if (result.isDeclined()) {&lt;BR /&gt;System.out.println("Declined.&amp;lt;/br&amp;gt;");&lt;BR /&gt;System.out.println(result.getReasonResponseCode() + " : " + result.getResponseText());&lt;BR /&gt;} else {&lt;BR /&gt;System.out.println("Error.&amp;lt;/br&amp;gt;");&lt;BR /&gt;System.out.println(result.getReasonResponseCode() + " : " + result.getResponseText());&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2014 23:35:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47145#M23809</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-15T23:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47147#M23810</link>
      <description>&lt;P&gt;Do this simple test&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll?  x_version=3.1&amp;amp;x_type=PRIOR_AUTH_CAPTURE&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=8R82QxAySac&amp;amp;x_tran_key=xxxxx&amp;amp;x_trans_id=xxxxx&amp;amp;x_amount=xxxxx"&gt;https://test.authorize.net/gateway/transact.dll?....&lt;/A&gt;&lt;/P&gt;&lt;P&gt;copy the link and replace the xxxxx with your value and copy it to a web broswer url and run it.&lt;/P&gt;&lt;P&gt;It is an AIM transaction, see if it works.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 00:16:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47147#M23810</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-16T00:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47149#M23811</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have replaced with my data and It worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So what is the fix I have to do in my code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 02:54:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47149#M23811</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-16T02:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47155#M23814</link>
      <description>&lt;P&gt;Your code look ok. If it only happend with the SDKs, it might be a bug in it.&lt;/P&gt;&lt;P&gt;Can you try an auth_capture transaction.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 11:34:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47155#M23814</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-16T11:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47179#M23826</link>
      <description>&lt;P&gt;Tried with AUTH_CAPTURE, got the same error.&lt;/P&gt;&lt;P&gt;,,,,&lt;/P&gt;&lt;P&gt;Transaction authCaptureTransaction = merchant.createAIMTransaction(&lt;BR /&gt;TransactionType.AUTH_CAPTURE, new BigDecimal(1676.00));&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 15:09:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47179#M23826</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-16T15:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47185#M23829</link>
      <description>&lt;P&gt;So it only failed if is using the AIM java sdks? it is always response 3,22?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 15:39:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47185#M23829</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-16T15:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47197#M23835</link>
      <description>&lt;P&gt;Yes it is failing for AIM,&lt;/P&gt;&lt;P&gt;fyi., I am using below sdk.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;dependency&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;groupId&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;net.authorize&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/groupId&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;artifactId&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;anet-java-sdk&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/artifactId&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;version&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;1.8.1&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/version&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;/dependency&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 17:13:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47197#M23835</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-16T17:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47201#M23837</link>
      <description>&lt;P&gt;Can you suggest me how to fix it?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 18:17:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47201#M23837</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-16T18:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47205#M23839</link>
      <description>&lt;P&gt;Haven't read anybody having issue with the java SDK.&lt;/P&gt;&lt;P&gt;But you could try debug it&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-java/blob/master/src/main/java/net/authorize/util/HttpClient.java"&gt;https://github.com/AuthorizeNet/sdk-java/blob/master/src/main/java/net/authorize/util/HttpClient.java&lt;/A&gt;&lt;/P&gt;&lt;P&gt;look like it build the aim data in method and see what is getting generated&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;private&lt;/SPAN&gt; &lt;SPAN&gt;static&lt;/SPAN&gt; &lt;SPAN&gt;HttpPost&lt;/SPAN&gt; &lt;SPAN&gt;createHttpPost&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Environment&lt;/SPAN&gt; &lt;SPAN&gt;env&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;Transaction&lt;/SPAN&gt; &lt;SPAN&gt;transaction&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 19:22:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47205#M23839</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-16T19:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47207#M23840</link>
      <description>&lt;P&gt;Did you set the setDeviceType and setMarketType? that only use for card present.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 20:13:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47207#M23840</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-16T20:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47211#M23842</link>
      <description>&lt;P&gt;As suggested, I have debugged the code and the data is posting to URL :&amp;nbsp;&lt;A target="_blank" href="https://sandbox.authorize.net/gateway/transact.dll"&gt;https://sandbox.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I am seeing the response as&amp;nbsp;HTTP/1.1 404 Not Found&amp;nbsp;&lt;/P&gt;&lt;P&gt;So sdk returning as&amp;nbsp;RRC_3_22&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sending environment as SANDBOX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is above post url the sdk making correct?&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 20:50:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47211#M23842</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-16T20:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47213#M23843</link>
      <description>&lt;P&gt;No I am not setting any devicetype and markettype.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 20:53:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47213#M23843</guid>
      <dc:creator>chandu1985</dc:creator>
      <dc:date>2014-09-16T20:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: AIM: Transactions by ID always returns &amp;quot;An error occurred during processing. Please try</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47215#M23844</link>
      <description>&lt;P&gt;That is, look like the master branch on github was wrong, use the sdk-fixes branch.&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-java/blob/sdk-fixes/src/main/java/net/authorize/Environment.java"&gt;https://github.com/AuthorizeNet/sdk-java/blob/sdk-fixes/src/main/java/net/authorize/Environment.java&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2014 21:00:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-Transactions-by-ID-always-returns-amp-quot-An-error-occurred/m-p/47215#M23844</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-09-16T21:00:44Z</dc:date>
    </item>
  </channel>
</rss>

