<?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: Problems Registering iOS Device for Testing (in Merchant Account) in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/22989#M12402</link>
    <description>&lt;P&gt;OK, so I figured this out and successfully got a device to register. For those having the same problem (sample code not working, the "up and running in 15 minutes" page missing details):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All of the information I wrote above is correct--meaning the sample code and README are missing a few steps. The major piece being you have to call the method mobileDeviceRegistrationRequest: not just run the sample code and then look for your device in the Mobile Device Management area of &lt;A target="_blank" href="https://test.authorize.net."&gt;https://test.authorize.net.&lt;/A&gt; It would be nice if all of this documentation was updated by Authorize.NET so it was consistent and not confusion--and most importantly, missing key bits of informaiton.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My problem below with the code was I was sending this line as a part of my call (which isn't needed):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;mobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.mobileDeviceId = [[UIDevice currentDevice] uniqueGlobalDeviceIdentifier];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the sample code, there is the function&amp;nbsp;loginToGateway which you need to add the mobileDeviceRegistrationRequest: method to as well. You add this before the&amp;nbsp;mobileDeviceLoginRequest: method. In this way, the device registration call is always made no matter what, but if your device is already registered, it doesn't affect anything and it moves on to the login request. So either way you are always covered. The loginToGateway function should look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;- (void)loginToGateway
{
    // First time we need to do a mobile device registration request. Remember that if this is the first time you've registered your
    // device, the transaction will fail, however your device will now be in "pending" status in the test portal
    // (&lt;A target="_blank" href="https://test.authorize.net)."&gt;https://test.authorize.net).&lt;/A&gt;
    MobileDeviceRegistrationRequest *mobileDeviceRegistrationRequest = [MobileDeviceRegistrationRequest mobileDeviceRegistrationRequest];
    mobileDeviceRegistrationRequest.mobileDevice.mobileDeviceId = @"&amp;lt;YOUR_DEVICE_UUID&amp;gt;";
    mobileDeviceRegistrationRequest.mobileDevice.mobileDescription = @"&amp;lt;DEVICE_DESC&amp;gt;";
    mobileDeviceRegistrationRequest.mobileDevice.phoneNumber = @"&amp;lt;DEVICE_PHONE_NUM&amp;gt;";
    mobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.name = @"&amp;lt;USER_NAME&amp;gt;";
    mobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.password = @"&amp;lt;PASSWORD&amp;gt;";
    
    // Create our login request.
    MobileDeviceLoginRequest *mobileDeviceLoginRequest = [MobileDeviceLoginRequest mobileDeviceLoginRequest];
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.name = @"&amp;lt;USER_NAME&amp;gt;";
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.password = @"&amp;lt;PASSWORD&amp;gt;";
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.mobileDeviceId = [[UIDevice currentDevice] uniqueGlobalDeviceIdentifier];

    // Set up an AuthNet instance.
    AuthNet *an = [AuthNet getInstance];
    [an setDelegate:self];
    
    // Process a mobile device registration request.
    [an mobileDeviceRegistrationRequest:mobileDeviceRegistrationRequest];

    // Process a mobile device login request.
    [an mobileDeviceLoginRequest:mobileDeviceLoginRequest];
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps anyone who was also struggling with this.&lt;/P&gt;</description>
    <pubDate>Sat, 11 Feb 2012 01:51:29 GMT</pubDate>
    <dc:creator>chrisdressler</dc:creator>
    <dc:date>2012-02-11T01:51:29Z</dc:date>
    <item>
      <title>Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/22987#M12401</link>
      <description>&lt;P&gt;I am trying to get my mobile device (iPhone 4S) registered on my &lt;STRONG&gt;test&lt;/STRONG&gt; merchant account so I can use the SDK to send transactions from the iOS device.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have downloaded the latest version of the SDK from Authorize.NET. I have been over and over the sample code several times. I've also been through the "up in 15 minutes" for iOS example many times. For one thing, the "up in 15 minutes" page leaves several things out that is in the README for the SDK--which I found incredibly confusing, as I kept getting referred back to the "15 minutes" page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That said, the "15 minutes" page indicates that you just use that sample code and the first time you run it, the device will show up in "pending status" in the merchant account (Mobile Device Management). This is not correct as far as I can tell. When you run the sample code, if you look in the output console in Xcode, you see the following message output:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The mobile device is not registered with this merchant account."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course I know it isn't registered, that's what I'm trying to do. So after reading a couple of posts in these forums, I was told that you don't actually just run the sample code as the "15 minutes" example, or the README in the SDK indicates, but instead you must actually call the &lt;STRONG&gt;mobileDeviceRegistrationRequest:&lt;/STRONG&gt; method the very first time you use a device and this will actually register it with the merchant account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well, I've written code to call &lt;STRONG&gt;mobileDeviceRegistrationRequest:&lt;/STRONG&gt; as well, and that doesn't work either. After running that code, I also get the message "The mobile device is not registered with this merchant account." And I checked Settings in the merchant account one more time, just to make sure the device hadn't appeared in "pending status"--which of course it didn't.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm completely stuck and this is getting incredibly frustrating. Does anyone have any idea what is going on with this and how to get a device successfully registered using the iOS SDK?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference, here is the code I wrote for the mobileDeviceRegistrationRequest: method:&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;MobileDeviceRegistrationRequest&lt;SPAN&gt; *mobileDeviceRegistrationRequest = [&lt;/SPAN&gt;MobileDeviceRegistrationRequest&amp;nbsp;&lt;SPAN&gt;mobileDeviceRegistrationRequest&lt;/SPAN&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&amp;nbsp; &amp;nbsp; mobileDeviceRegistrationRequest.&lt;SPAN&gt;mobileDevice&lt;/SPAN&gt;.&lt;SPAN&gt;mobileDeviceId&lt;/SPAN&gt; = &lt;SPAN&gt;@"XXXXX"&lt;/SPAN&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&amp;nbsp; &amp;nbsp; mobileDeviceRegistrationRequest.&lt;SPAN&gt;mobileDevice&lt;/SPAN&gt;.&lt;SPAN&gt;mobileDescription&lt;/SPAN&gt; = &lt;SPAN&gt;@"XXXXX"&lt;/SPAN&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&amp;nbsp; &amp;nbsp; mobileDeviceRegistrationRequest.&lt;SPAN&gt;mobileDevice&lt;/SPAN&gt;.&lt;SPAN&gt;phoneNumber&lt;/SPAN&gt; = &lt;SPAN&gt;@"99999"&lt;/SPAN&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&amp;nbsp; &amp;nbsp; mobileDeviceRegistrationRequest.&lt;SPAN&gt;anetApiRequest&lt;/SPAN&gt;.&lt;SPAN&gt;merchantAuthentication&lt;/SPAN&gt;.&lt;SPAN&gt;name&lt;/SPAN&gt; = &lt;SPAN&gt;@"username"&lt;/SPAN&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; mobileDeviceRegistrationRequest.&lt;/SPAN&gt;anetApiRequest&lt;SPAN&gt;.&lt;/SPAN&gt;merchantAuthentication&lt;SPAN&gt;.&lt;/SPAN&gt;password&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;@"password"&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; mobileDeviceRegistrationRequest.&lt;/SPAN&gt;anetApiRequest&lt;SPAN&gt;.&lt;/SPAN&gt;merchantAuthentication&lt;SPAN&gt;.&lt;/SPAN&gt;mobileDeviceId&lt;SPAN&gt; = [[&lt;/SPAN&gt;&lt;SPAN&gt;UIDevice&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;currentDevice&lt;/SPAN&gt;&lt;SPAN&gt;] &lt;/SPAN&gt;&lt;SPAN&gt;uniqueGlobalDeviceIdentifier&lt;/SPAN&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that I have removed my information from the "mobileDevice" object and the user name and password. Further, the "uniqueGlobalDeviceIdentifier" is a custom function I'm using that generates a unique device ID since the UUID functionality is deprecated in iOS 5 by Apple.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2012 23:59:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/22987#M12401</guid>
      <dc:creator>chrisdressler</dc:creator>
      <dc:date>2012-02-10T23:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/22989#M12402</link>
      <description>&lt;P&gt;OK, so I figured this out and successfully got a device to register. For those having the same problem (sample code not working, the "up and running in 15 minutes" page missing details):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All of the information I wrote above is correct--meaning the sample code and README are missing a few steps. The major piece being you have to call the method mobileDeviceRegistrationRequest: not just run the sample code and then look for your device in the Mobile Device Management area of &lt;A target="_blank" href="https://test.authorize.net."&gt;https://test.authorize.net.&lt;/A&gt; It would be nice if all of this documentation was updated by Authorize.NET so it was consistent and not confusion--and most importantly, missing key bits of informaiton.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My problem below with the code was I was sending this line as a part of my call (which isn't needed):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;mobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.mobileDeviceId = [[UIDevice currentDevice] uniqueGlobalDeviceIdentifier];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the sample code, there is the function&amp;nbsp;loginToGateway which you need to add the mobileDeviceRegistrationRequest: method to as well. You add this before the&amp;nbsp;mobileDeviceLoginRequest: method. In this way, the device registration call is always made no matter what, but if your device is already registered, it doesn't affect anything and it moves on to the login request. So either way you are always covered. The loginToGateway function should look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;- (void)loginToGateway
{
    // First time we need to do a mobile device registration request. Remember that if this is the first time you've registered your
    // device, the transaction will fail, however your device will now be in "pending" status in the test portal
    // (&lt;A target="_blank" href="https://test.authorize.net)."&gt;https://test.authorize.net).&lt;/A&gt;
    MobileDeviceRegistrationRequest *mobileDeviceRegistrationRequest = [MobileDeviceRegistrationRequest mobileDeviceRegistrationRequest];
    mobileDeviceRegistrationRequest.mobileDevice.mobileDeviceId = @"&amp;lt;YOUR_DEVICE_UUID&amp;gt;";
    mobileDeviceRegistrationRequest.mobileDevice.mobileDescription = @"&amp;lt;DEVICE_DESC&amp;gt;";
    mobileDeviceRegistrationRequest.mobileDevice.phoneNumber = @"&amp;lt;DEVICE_PHONE_NUM&amp;gt;";
    mobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.name = @"&amp;lt;USER_NAME&amp;gt;";
    mobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.password = @"&amp;lt;PASSWORD&amp;gt;";
    
    // Create our login request.
    MobileDeviceLoginRequest *mobileDeviceLoginRequest = [MobileDeviceLoginRequest mobileDeviceLoginRequest];
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.name = @"&amp;lt;USER_NAME&amp;gt;";
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.password = @"&amp;lt;PASSWORD&amp;gt;";
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.mobileDeviceId = [[UIDevice currentDevice] uniqueGlobalDeviceIdentifier];

    // Set up an AuthNet instance.
    AuthNet *an = [AuthNet getInstance];
    [an setDelegate:self];
    
    // Process a mobile device registration request.
    [an mobileDeviceRegistrationRequest:mobileDeviceRegistrationRequest];

    // Process a mobile device login request.
    [an mobileDeviceLoginRequest:mobileDeviceLoginRequest];
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps anyone who was also struggling with this.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Feb 2012 01:51:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/22989#M12402</guid>
      <dc:creator>chrisdressler</dc:creator>
      <dc:date>2012-02-11T01:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/32752#M17297</link>
      <description>&lt;P&gt;thank you for your post&lt;/P&gt;&lt;P&gt;it very helped me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i followed to Quick Start Guide and couldn't redister my device&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;why this important info isn't present in Quick Start Guide?&lt;/P&gt;&lt;P&gt;i think i'm not first person who has the same issue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you again!&lt;/P&gt;&lt;P&gt;good luck!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 17:37:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/32752#M17297</guid>
      <dc:creator>avladv2013</dc:creator>
      <dc:date>2013-01-29T17:37:38Z</dc:date>
    </item>
    <item>
      <title>Quick Start 15 Minutes - Missing!!</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/35276#M19673</link>
      <description>&lt;P&gt;Thank you so much, seems like they would update the documenation immediatly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2013 16:31:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/35276#M19673</guid>
      <dc:creator>parkej60</dc:creator>
      <dc:date>2013-08-21T16:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/38867#M21224</link>
      <description>&lt;P&gt;Thanks for your post now its fine but i am getting below error message &amp;nbsp;while using Authorize.net payment gateway in IOS App&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you pleae help me in this problem to sort out.?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;CFNetwork SSLHandshake failed (-9806)&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;223:60b] errorCode = 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;[223:60b] error = Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x165c1b40 {NSErrorFailingURLStringKey=&lt;A target="_blank" href="https://apitest.authorize.net/xml/v1/request.api,"&gt;https://apitest.authorize.net/xml/v1/request.api,&lt;/A&gt; NSErrorFailingURLKey=&lt;A target="_blank" href="https://apitest.authorize.net/xml/v1/request.api,"&gt;https://apitest.authorize.net/xml/v1/request.api,&lt;/A&gt; NSLocalizedDescription=The request timed out., NSUnderlyingError=0x16738a50 "The request timed out."}&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;2014-02-03 16:32:55.723 Jewellery Daily Deals[223:60b] NSError code = -1001&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;2014-02-03 16:32:55.724 Jewellery Daily Deals[223:60b] NSError description = The request timed out.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 11:10:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/38867#M21224</guid>
      <dc:creator>pbs_naga</dc:creator>
      <dc:date>2014-02-03T11:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/38923#M21252</link>
      <description>&lt;DIV style="font-family: MS Shell Dlg 2; direction: ltr; color: #000000; font-size: 9pt;"&gt;Hi,&lt;/DIV&gt;
&lt;DIV style="font-family: MS Shell Dlg 2; direction: ltr; color: #000000; font-size: 9pt;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV style="font-family: MS Shell Dlg 2; direction: ltr; color: #000000; font-size: 9pt;"&gt;The error that you posted appears to be a basic connectivity error. Perhaps your testing device simply did not have an active connection to the internet at the time you ran your test.&lt;/DIV&gt;
&lt;DIV style="font-family: MS Shell Dlg 2; direction: ltr; color: #000000; font-size: 9pt;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV style="font-family: MS Shell Dlg 2; direction: ltr; color: #000000; font-size: 9pt;"&gt;Thanks,&lt;/DIV&gt;
&lt;DIV style="font-family: MS Shell Dlg 2; direction: ltr; color: #000000; font-size: 9pt;"&gt;Joy&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Feb 2014 20:02:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/38923#M21252</guid>
      <dc:creator>Joy</dc:creator>
      <dc:date>2014-02-04T20:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/45999#M23275</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I had to do:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="line-height: 16px;"&gt;1. Use the mobileDeviceRegistrationRequest method successfully.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="line-height: 16px;"&gt;2. Enable the device in the Merchant Interface (I was using Sandbox) under Account: Settings: Mobile Device Management.&amp;nbsp;&lt;/SPAN&gt;&lt;A target="_blank" href="https://sandbox.authorize.net/UI/themes/sandbox/Settings/mobiledevicemanager.aspx"&gt;https://sandbox.authorize.net/UI/themes/sandbox/Settings/mobiledevicemanager.aspx&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;3. Don't do the&amp;nbsp;&lt;SPAN&gt;mobileDeviceRegistrationRequest method again, but use the mobileDeviceLoginRequest method and store&amp;nbsp;the sessionID.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;4. Use the example createTransaction method which&amp;nbsp;does purchaseRequest (auth is using the same mobileDeviceId and the sessiontoken that was stored from&amp;nbsp;&lt;SPAN&gt;mobileDeviceLoginRequest)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;5. I got back "This transaction has been approved." and a new sessionToken.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;A related question that I have now:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Will every iOS device have to get enabled in the Merchant Interface manually? That's a pain.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Brian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2014 16:16:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/45999#M23275</guid>
      <dc:creator>blalond</dc:creator>
      <dc:date>2014-08-05T16:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Registering iOS Device for Testing (in Merchant Account)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/46001#M23276</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/16719"&gt;@blalond&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Requiring each new device to be approved in the Merchant Interface is a security feature and provides the account owners and&amp;nbsp;administrators the ability to control which devices are allowed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2014 17:02:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problems-Registering-iOS-Device-for-Testing-in-Merchant-Account/m-p/46001#M23276</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-08-05T17:02:43Z</dc:date>
    </item>
  </channel>
</rss>

