<?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: Android Card Present AIM Intergration : Error E00000 in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41318#M22381</link>
    <description>&lt;P&gt;Which encrypted reader are you using (make and model) ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to use an encrypted reader with the Sandbox, it must be injected with the Authorize.Net key specific to the sandbox.&lt;/P&gt;</description>
    <pubDate>Fri, 30 May 2014 15:58:17 GMT</pubDate>
    <dc:creator>RichardH</dc:creator>
    <dc:date>2014-05-30T15:58:17Z</dc:date>
    <item>
      <title>Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41308#M22376</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am doing an integration of my android with authorize.net sdk to accept card present transactions. Every thing works fine&amp;nbsp; except to the ponit when we submit the transaction for processing, we are getting an error E00000 - Unknown error. We are not able to find the root cause of this error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help? I have already spent 3 days trying to debug this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ritesh&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 12:45:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41308#M22376</guid>
      <dc:creator>riteshmitra</dc:creator>
      <dc:date>2014-05-30T12:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41314#M22379</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/16000"&gt;@riteshmitra&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are there additional details that could help us further troubleshoot your issue? &amp;nbsp;For example, are you submitting the track data? &amp;nbsp;Is the track data encrypted? &amp;nbsp;What is the content of your createTransaction request?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 15:03:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41314#M22379</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-05-30T15:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41316#M22380</link>
      <description>&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;Yes we are submitting the track data and it is an encrypted one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the copy of the code that is being used for the processing of the transaction:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CreditCard creditCard = CreditCard.createCreditCard();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; creditCard.setTrack1(Track1Data);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order order = Order.createOrder();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order.setTotalAmount(new BigDecimal(oTotal));&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order.setDescription(" Test Order");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer customer = null;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Address shippingAddress = null;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ShippingCharges shippingCharges = null;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmailReceipt emailReceipt = null;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HashMap&amp;lt;String, String&amp;gt; merchantDefinedFields = new HashMap&amp;lt;String, String&amp;gt;();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; merchantDefinedFields.put("notes", "sent from SampleActivity");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Intent authNetIntent = authNetObj.createAIMAuthCaptureIntent(this, refId,totalAmount,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; creditCard, order, customer, shippingAddress,shippingCharges, emailReceipt,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; merchantDefinedFields);&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 15:18:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41316#M22380</guid>
      <dc:creator>riteshmitra</dc:creator>
      <dc:date>2014-05-30T15:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41318#M22381</link>
      <description>&lt;P&gt;Which encrypted reader are you using (make and model) ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to use an encrypted reader with the Sandbox, it must be injected with the Authorize.Net key specific to the sandbox.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 15:58:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41318#M22381</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-05-30T15:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41320#M22382</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are using Shuttle reader. We bought it from posenclosures.com/authnet/ website. On their website they mentioned that they are authorized reseller of the encrypted card readers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have also tried the transaction on the live account with the same response. The response is always the same irrespective of the environment.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 16:00:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41320#M22382</guid>
      <dc:creator>riteshmitra</dc:creator>
      <dc:date>2014-05-30T16:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41332#M22386</link>
      <description>&lt;P&gt;any update...please help&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 21:56:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41332#M22386</guid>
      <dc:creator>riteshmitra</dc:creator>
      <dc:date>2014-05-30T21:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41334#M22387</link>
      <description>&lt;P&gt;Have you seen this?&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://community.developer.authorize.net/t5/Integration-and-Testing/Getting-E00061-How-do-I-format-device-information-for-encrypted/td-p/39906"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/Getting-E00061-How-do-I-format-device-information-for-encrypted/td-p/39906&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 02:01:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41334#M22387</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-05-31T02:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41346#M22393</link>
      <description>&lt;P&gt;This doesn't help as the error that I am getting back is different.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jun 2014 14:08:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41346#M22393</guid>
      <dc:creator>riteshmitra</dc:creator>
      <dc:date>2014-06-01T14:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41348#M22394</link>
      <description>&lt;P&gt;Did you read it? It said to read the AIM XML to see that need to be done to work with encrypted card reader&lt;/P&gt;&lt;P&gt;You might need to see if the SDKs support encrypted card reader.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jun 2014 19:52:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41348#M22394</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-06-01T19:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41410#M22422</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/16000"&gt;@riteshmitra&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Support for encrypted payments using the current SDK is not yet support. &amp;nbsp;A newer release supporting this feature will be available soon. &amp;nbsp;Unfortunately, I don't have a specfic time line for delivery but will post updates to this thread when I do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd recommend subscribing to this topic so that you'll be alerted via email if there are updates. To subscribe, click &lt;STRONG&gt;Topic Options&lt;/STRONG&gt; at the top of this thread and then select &lt;STRONG&gt;Subscribe&lt;/STRONG&gt;. You'll then receive an email once anyone replies to your post.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2014 19:22:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/41410#M22422</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-06-03T19:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/47999#M24214</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I am also facing same issue. I &amp;nbsp;have tried sending both track1 and track2 data, but it is throwing Unknown error. If your problem is solved. please help me with this. I am using IDTECH Unipay Card reader.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2014 05:16:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/47999#M24214</guid>
      <dc:creator>Mounica1131</dc:creator>
      <dc:date>2014-10-17T05:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/48001#M24215</link>
      <description>&lt;P&gt;Hi RiteshMishra,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Is your problem Solved. If, so please give me the details how you solved it. I am also getting the same issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2014 05:57:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/48001#M24215</guid>
      <dc:creator>Mounica1131</dc:creator>
      <dc:date>2014-10-17T05:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/48003#M24216</link>
      <description>&lt;P&gt;Have you looked at the sample Android application on GitHub?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2014 15:52:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/48003#M24216</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-10-17T15:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/48021#M24225</link>
      <description>&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;There is no integration of card swipe in the sample application. So, i am setting track info like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;String refId = Long.toString(System.currentTimeMillis());&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;BigDecimal totalAmount = new BigDecimal(pay_now_total);&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;CreditCard creditCard = CreditCard.createCreditCard();&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;creditCard.setTrack2(trac2_details);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Order order = Order.createOrder();&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;order.setTotalAmount(new BigDecimal(pay_now_total));&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;order.setDescription("Android Test Order");&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Customer customer = null;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Address shippingAddress = null;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;ShippingCharges shippingCharges = null;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;EmailReceipt emailReceipt = null;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;HashMap&amp;lt;String, String&amp;gt; merchantDefinedFields = new HashMap&amp;lt;String, String&amp;gt;();&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;merchantDefinedFields.put("notes", "sent from SampleActivity");&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Intent authNetIntent = authNetObj.createAIMAuthOnlyIntent(DashBoard.this, refId,totalAmount,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;creditCard, order, customer, shippingAddress,shippingCharges, emailReceipt,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;merchantDefinedFields);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;launchSubActivity(authNetIntent, createPaymentIntentResultCallback());&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have removed first and last character of track2 and sent it. It is throwing me&lt;STRONG&gt; E00000: Unknown error.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Oct 2014 07:09:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/48021#M24225</guid>
      <dc:creator>Mounica1131</dc:creator>
      <dc:date>2014-10-18T07:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/49003#M24628</link>
      <description>&lt;P&gt;Your correct, there is no example of the using the swipe in such sample stated above ! Right now i am only able to use the Shuttle both Production and Developer version using the production Authorize.net app from Play Store. I have not been able to get the swipe to work using the sample app in Github.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has a sample app that has been able to get the swipe to work please share it in Github. Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2014 00:20:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/49003#M24628</guid>
      <dc:creator>amormemorials1</dc:creator>
      <dc:date>2014-11-27T00:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Android Card Present AIM Intergration : Error E00000</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/49987#M25497</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Swipe is working fine after i added the line in the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CreditCard creditCard = CreditCard.createCreditCard();&lt;BR /&gt;creditCard.setCardPresent(true);&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>Mon, 16 Mar 2015 07:45:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Android-Card-Present-AIM-Intergration-Error-E00000/m-p/49987#M25497</guid>
      <dc:creator>Mounica1131</dc:creator>
      <dc:date>2015-03-16T07:45:38Z</dc:date>
    </item>
  </channel>
</rss>

