<?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: iPhone SDK Issue in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41756#M22590</link>
    <description>&lt;P&gt;Have you tried using our recently updated iOS SDK from GitHub? &amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sdk-mpos-ios" target="_blank"&gt;https://github.com/AuthorizeNet/sdk-mpos-ios&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jun 2014 18:52:43 GMT</pubDate>
    <dc:creator>RichardH</dc:creator>
    <dc:date>2014-06-13T18:52:43Z</dc:date>
    <item>
      <title>iPhone SDK Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/35909#M20028</link>
      <description>&lt;P&gt;I'm creating an iOS app using auth.net SDK but can't seem to get it to work. Can you someone please help me or direct me in the right way?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;README =&amp;nbsp;&lt;A target="_blank" href="https://docs.google.com/file/d/0B-r8xXsB9_n0ZUZaY3NmMmktYU0/edit?usp=sharing"&gt;https://docs.google.com/file/d/0B-r8xXsB9_n0ZUZaY3NmMmktYU0/edit?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step-1 Device Register- Sucess&lt;BR /&gt;Step-2 Login- Sucess&lt;/P&gt;&lt;P&gt;Step-3-Payment- unsuccessfully&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;InPut-&lt;/P&gt;&lt;P&gt;=================&lt;/P&gt;&lt;P&gt;#define API_LOGIN_ID @"6XqC5f7x"&lt;/P&gt;&lt;P&gt;#define TRANSACTION_KEY @"7X69ew83UK5h4Kw7&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;#define USERNAME @"taxiRates2013"&lt;/P&gt;&lt;P&gt;#define PASSWORD @"Rates2013"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;AuthNet *an = [AuthNet getInstance];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[an setDelegate:self];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CreditCardType *creditCardType = [CreditCardType creditCardType];&lt;/P&gt;&lt;P&gt;creditCardType.cardNumber = @"5424000000000015";&lt;/P&gt;&lt;P&gt;creditCardType.cardCode = @"123";&lt;/P&gt;&lt;P&gt;creditCardType.expirationDate = @"0511";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PaymentType *paymentType = [PaymentType paymentType];&lt;/P&gt;&lt;P&gt;paymentType.creditCard = creditCardType;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ExtendedAmountType *extendedAmountTypeTax = [ExtendedAmountType extendedAmountType];&lt;/P&gt;&lt;P&gt;extendedAmountTypeTax.amount = @"0";&lt;/P&gt;&lt;P&gt;extendedAmountTypeTax.name = @"Tax";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ExtendedAmountType *extendedAmountTypeShipping = [ExtendedAmountType extendedAmountType];&lt;/P&gt;&lt;P&gt;extendedAmountTypeShipping.amount = @"0";&lt;/P&gt;&lt;P&gt;extendedAmountTypeShipping.name = @"Shipping";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LineItemType *lineItem = [LineItemType lineItem];&lt;/P&gt;&lt;P&gt;lineItem.itemName = @"Soda";&lt;/P&gt;&lt;P&gt;lineItem.itemDescription = @"Soda";&lt;/P&gt;&lt;P&gt;lineItem.itemQuantity = @"1";&lt;/P&gt;&lt;P&gt;lineItem.itemPrice = @"1.00";&lt;/P&gt;&lt;P&gt;lineItem.itemID = @"1";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TransactionRequestType *requestType = [TransactionRequestType transactionRequest];&lt;/P&gt;&lt;P&gt;requestType.lineItems = [NSArray arrayWithObject:lineItem];&lt;/P&gt;&lt;P&gt;requestType.amount = @"1.00";&lt;/P&gt;&lt;P&gt;requestType.payment = paymentType;&lt;/P&gt;&lt;P&gt;requestType.tax = extendedAmountTypeTax;&lt;/P&gt;&lt;P&gt;requestType.shipping = extendedAmountTypeShipping;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CreateTransactionRequest *request = [CreateTransactionRequest createTransactionRequest];&lt;/P&gt;&lt;P&gt;request.transactionRequest = requestType;&lt;/P&gt;&lt;P&gt;request.transactionType = AUTH_ONLY;&lt;/P&gt;&lt;P&gt;request.anetApiRequest.merchantAuthentication.mobileDeviceId =&lt;/P&gt;&lt;P&gt;[[[UIDevice currentDevice] uniqueIdentifier]&lt;/P&gt;&lt;P&gt;stringByReplacingOccurrencesOfString:@"-" withString:@"_"];&lt;/P&gt;&lt;P&gt;request.anetApiRequest.merchantAuthentication.sessionToken = sessionToken;&lt;/P&gt;&lt;P&gt;[an purchaseWithRequest:request];&lt;/P&gt;&lt;P&gt;1 Out Put-&lt;/P&gt;&lt;P&gt;createTransactionResponse&amp;gt;&lt;/P&gt;&lt;P&gt;namespace warning : xmlns: URI AnetApi/xml/v1/schema/AnetApiSchema.xsd is not absolute&lt;/P&gt;&lt;P&gt;ttp://&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema&amp;quot;"&gt;www.w3.org/2001/XMLSchema"&lt;/A&gt; xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&lt;/P&gt;&lt;P&gt;Message.code = E00059\nMessage.text = The authentication type is not allowed for this method call.\nMessage.description = (null)\n"&lt;BR /&gt;2 Output-&lt;BR /&gt;namespace warning : xmlns: URI AnetApi/xml/v1/schema/AnetApiSchema.xsd is not absolute&lt;BR /&gt;ttp://&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema&amp;quot;"&gt;www.w3.org/2001/XMLSchema"&lt;/A&gt; xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&lt;BR /&gt;"Message.code = E00027\nMessage.text = The transaction was unsuccessful.\nMessage.description = (null)\n"&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2013 12:18:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/35909#M20028</guid>
      <dc:creator>rrob</dc:creator>
      <dc:date>2013-09-24T12:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: iPhone SDK Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/35911#M20029</link>
      <description>&lt;P&gt;[AuthNet authNetWithAPILoginID:@"YOUR_LOGIN_ID" andTransactionKey: @"YOUR_TRANSACTION_KEY" forEnvironment:ENV_TEST];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This method is not available in the updated SDK&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2013 13:34:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/35911#M20029</guid>
      <dc:creator>rrob</dc:creator>
      <dc:date>2013-09-24T13:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: iPhone SDK Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41264#M22355</link>
      <description>&lt;P&gt;Could any of you find the solution to this problem?&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 23:37:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41264#M22355</guid>
      <dc:creator>ruchirYtrre123</dc:creator>
      <dc:date>2014-05-26T23:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: iPhone SDK Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41668#M22549</link>
      <description>&lt;P&gt;I am facing the same problem, please provide a solution for it.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2014 04:23:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41668#M22549</guid>
      <dc:creator>ShreyaKapoor01</dc:creator>
      <dc:date>2014-06-10T04:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: iPhone SDK Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41756#M22590</link>
      <description>&lt;P&gt;Have you tried using our recently updated iOS SDK from GitHub? &amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sdk-mpos-ios" target="_blank"&gt;https://github.com/AuthorizeNet/sdk-mpos-ios&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2014 18:52:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/iPhone-SDK-Issue/m-p/41756#M22590</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-06-13T18:52:43Z</dc:date>
    </item>
  </channel>
</rss>

