<?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: Null sessionToken returned in mobileDeviceLoginSucceeded in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24945#M13334</link>
    <description>&lt;P&gt;That's cool, so from even a PHP client perspective, what reason can you think of to get back a null sessionToken?&lt;/P&gt;</description>
    <pubDate>Mon, 26 Mar 2012 00:58:45 GMT</pubDate>
    <dc:creator>fermyon123</dc:creator>
    <dc:date>2012-03-26T00:58:45Z</dc:date>
    <item>
      <title>Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24859#M13295</link>
      <description>&lt;P&gt;I'm in the process of going between step4 and step5 of &lt;A target="_blank" href="https://developer.authorize.net/integration/fifteenminutes/ios"&gt;https://developer.authorize.net/integration/fifteenminutes/ios&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that the &lt;U&gt;&lt;EM&gt;sessionToken&lt;/EM&gt;&lt;/U&gt; is being returned as &lt;U&gt;&lt;EM&gt;null&lt;/EM&gt;&lt;/U&gt; !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;What should be done about this?&lt;/LI&gt;&lt;LI&gt;Has the sessionToken been deprecated?&lt;/LI&gt;&lt;LI&gt;Should name and password be part of every CreateTransactionRequest's merchantAuthentication object?&lt;EM&gt;&lt;U&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Here's some proof that its null:&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;MobileDeviceLoginResponse: MobileDeviceLoginResponse.anetApiResponse = ANetApiResponse.refId = (null)
ANetApiResponse.messages = Messages.resultCode = Ok
Messages.message = (
    "Message.code = I00006\nMessage.text = The mobile device is approved and ready for use.\nMessage.description = (null)\n"
)
MobileDeviceLoginResponse.sessionToken = (null)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;And here's why that trips me up:&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;Create Transaction response
&lt;STRONG&gt;The element 'merchantAuthentication' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has incomplete content. List of possible elements expected: 'name, transactionKey, sessionToken, password'&lt;/STRONG&gt; in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2012 02:24:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24859#M13295</guid>
      <dc:creator>fermyon123</dc:creator>
      <dc:date>2012-03-23T02:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24915#M13320</link>
      <description>&lt;P&gt;The session token has absolutely not been deprecated.&amp;nbsp; I can't say that I fully understand the first block of code that you posted, but it doesn't appear to me that you are actually running the mobileDeviceLoginRequest in this sample and instead you are going directly to reading the mobileDeviceLoginResponse.&amp;nbsp; It is true that the token would appear to be null in this scenario.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2012 21:32:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24915#M13320</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2012-03-23T21:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24919#M13322</link>
      <description>&lt;UL&gt;&lt;LI&gt;Thanks for confirming tha the sesionToken has not been deprecated!&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;The first block is not code but it is a cut-out from the logs that Xcode generates when running the project, the logs are actually dumped by the AuthNet binary and not me. This is very helpful as I don't have to go around placing log statements on my own. If the log statment isn't showing up, then its because the binary does not log that request.&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;    ...&lt;BR /&gt;    MobileDeviceLoginRequest *mobileDeviceLoginRequest =
    [MobileDeviceLoginRequest mobileDeviceLoginRequest];
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.name = @"username";
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.password = @"password";
    mobileDeviceLoginRequest.anetApiRequest.merchantAuthentication.mobileDeviceId =
    [[[UIDevice currentDevice] uniqueIdentifier]
     stringByReplacingOccurrencesOfString:@"-" withString:@"_"];

    // 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;UL&gt;&lt;LI&gt;As you can see, I am actually running the mobileDeviceLoginRequest in this sample:&lt;/LI&gt;&lt;LI&gt;[an mobileDeviceLoginRequest:mobileDeviceLoginRequest];&lt;/LI&gt;&lt;LI&gt;I'm not going directly to reading the response, having said that, here's the full log ... please help :) and like I said I don't know why the binary chooses not to log that mobileDeviceLoginRequest ... there's no way I could have created its associated response object on my own which is getting logged, its the binary doing the work here...&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;2012-03-22 20:40:47.391 Mobile Device Login Response

2012-03-22 20:40:47.392 &amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;lt;mobileDeviceRegistrationResponse xmlns:xsi="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema-instance"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;" xmlns:xsd="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Ok&amp;lt;/resultCode&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;I00006&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;&lt;U&gt;&lt;STRONG&gt;The mobile device is approved and ready for use.&lt;/STRONG&gt;&lt;/U&gt;&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;/mobileDeviceRegistrationResponse&amp;gt;

2012-03-22 20:40:47.394 Error = (null)

2012-03-22 20:40:47.395 Message: 
Message.code = I00006
Message.text =&lt;STRONG&gt;&lt;U&gt; The mobile device is approved and ready for use.&lt;/U&gt;&lt;/STRONG&gt;
Message.description = (null)

2012-03-22 20:40:47.396 Messages: 
Messages.resultCode = Ok
Messages.message = (
    "Message.code = I00006\nMessage.text = The mobile device is approved and ready for use.\nMessage.description = (null)\n"
)

2012-03-22 20:40:47.397 MerchantContact = MerchantContact.merchantName = (null)
MerchantContact.merchantAddress = (null)
MerchantContact.merchantCity = (null)
MerchantContact.merchantState = (null)
MerchantContact.merchantZip = (null)
MerchantContact.merchantPhone = (null)

2012-03-22 20:40:47.398 MobileDeviceLoginResponse: MobileDeviceLoginResponse.anetApiResponse = ANetApiResponse.refId = (null)
ANetApiResponse.messages = Messages.resultCode = Ok
Messages.message = (
    "Message.code = I00006\nMessage.text = The mobile device is approved and ready for use.\nMessage.description = (null)\n"
)


&lt;STRONG&gt;&lt;U&gt;MobileDeviceLoginResponse.sessionToken = (null)&lt;/U&gt;&lt;/STRONG&gt;
MobileDeviceLoginResponse.merchantContact = MerchantContact.merchantName = (null)
MerchantContact.merchantAddress = (null)
MerchantContact.merchantCity = (null)
MerchantContact.merchantState = (null)
MerchantContact.merchantZip = (null)
MerchantContact.merchantPhone = (null)

MobileDeviceLoginResponse.userPermissions = (
)

2012-03-22 20:40:47.403 Create Transaction Request:
&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;lt;&lt;U&gt;&lt;STRONG&gt;createTransactionRequest&lt;/STRONG&gt;&lt;/U&gt; xmlns:xsi="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema-instance"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;" xmlns:xsd="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;merchantAuthentication&amp;gt;&amp;lt;/merchantAuthentication&amp;gt;&amp;lt;transactionRequest&amp;gt;&amp;lt;transactionType&amp;gt;authCaptureTransaction&amp;lt;/transactionType&amp;gt;&amp;lt;amount&amp;gt;1.00&amp;lt;/amount&amp;gt;&amp;lt;payment&amp;gt;&amp;lt;creditCard&amp;gt;&amp;lt;cardNumber&amp;gt;4111111111111111&amp;lt;/cardNumber&amp;gt;&amp;lt;expirationDate&amp;gt;1212&amp;lt;/expirationDate&amp;gt;&amp;lt;cardCode&amp;gt;100&amp;lt;/cardCode&amp;gt;&amp;lt;/creditCard&amp;gt;&amp;lt;/payment&amp;gt;&amp;lt;order&amp;gt;&amp;lt;/order&amp;gt;&amp;lt;lineItems&amp;gt;&amp;lt;lineItem&amp;gt;&amp;lt;itemId&amp;gt;1&amp;lt;/itemId&amp;gt;&amp;lt;name&amp;gt;Soda&amp;lt;/name&amp;gt;&amp;lt;description&amp;gt;Soda&amp;lt;/description&amp;gt;&amp;lt;quantity&amp;gt;1&amp;lt;/quantity&amp;gt;&amp;lt;unitPrice&amp;gt;1.00&amp;lt;/unitPrice&amp;gt;&amp;lt;taxable&amp;gt;false&amp;lt;/taxable&amp;gt;&amp;lt;/lineItem&amp;gt;&amp;lt;/lineItems&amp;gt;&amp;lt;tax&amp;gt;&amp;lt;amount&amp;gt;0&amp;lt;/amount&amp;gt;&amp;lt;name&amp;gt;Tax&amp;lt;/name&amp;gt;&amp;lt;/tax&amp;gt;&amp;lt;shipping&amp;gt;&amp;lt;amount&amp;gt;0&amp;lt;/amount&amp;gt;&amp;lt;name&amp;gt;Shipping&amp;lt;/name&amp;gt;&amp;lt;/shipping&amp;gt;&amp;lt;customer&amp;gt;&amp;lt;/customer&amp;gt;&amp;lt;billTo&amp;gt;&amp;lt;/billTo&amp;gt;&amp;lt;shipTo&amp;gt;&amp;lt;/shipTo&amp;gt;&amp;lt;transactionSettings&amp;gt;&amp;lt;/transactionSettings&amp;gt;&amp;lt;userFields&amp;gt;&amp;lt;/userFields&amp;gt;&amp;lt;/transactionRequest&amp;gt;&amp;lt;/createTransactionRequest&amp;gt;

2012-03-22 20:40:47.685 Create Transaction response
2012-03-22 20:40:47.686 &amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;lt;ErrorResponse xmlns:xsi="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema-instance"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;" xmlns:xsd="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Error&amp;lt;/resultCode&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;E00003&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;The element 'merchantAuthentication' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has incomplete content. List of possible elements expected: 'name, transactionKey, sessionToken, password' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'.&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;/ErrorResponse&amp;gt;

2012-03-22 20:40:47.688 Message: 
Message.code = E00003
Message.text = The element 'merchantAuthentication' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has incomplete content. List of possible elements expected: 'name, transactionKey, sessionToken, password' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'.
Message.description = (null)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2012 22:19:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24919#M13322</guid>
      <dc:creator>fermyon123</dc:creator>
      <dc:date>2012-03-23T22:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24925#M13325</link>
      <description>&lt;P&gt;Any thoughts? Did the paste overload scare folks away?&lt;/P&gt;</description>
      <pubDate>Sun, 25 Mar 2012 01:11:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24925#M13325</guid>
      <dc:creator>fermyon123</dc:creator>
      <dc:date>2012-03-25T01:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24929#M13327</link>
      <description>&lt;P&gt;The active posters on the forum don't integrate mobile devices, I'm afraid. I'm a PHP guy myself.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Mar 2012 08:45:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24929#M13327</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-03-25T08:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24945#M13334</link>
      <description>&lt;P&gt;That's cool, so from even a PHP client perspective, what reason can you think of to get back a null sessionToken?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 00:58:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24945#M13334</guid>
      <dc:creator>fermyon123</dc:creator>
      <dc:date>2012-03-26T00:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24949#M13336</link>
      <description>&lt;P&gt;In the spirit of sharing, I wrote a comprehensive mobile device setup tutorial:&lt;/P&gt;&lt;P&gt;part 1 - &lt;A target="_blank" href="http://pulkitsinghal.blogspot.com/2012/03/authnet-ios-integration.html"&gt;http://pulkitsinghal.blogspot.com/2012/03/authnet-ios-integration.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;part 2 - &lt;A target="_blank" href="http://pulkitsinghal.blogspot.com/2012/03/authnet-ios-integration-part-2.html"&gt;http://pulkitsinghal.blogspot.com/2012/03/authnet-ios-integration-part-2.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I still need the community's help to get over that last wall of the null sessionToken :)&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 01:42:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/24949#M13336</guid>
      <dc:creator>fermyon123</dc:creator>
      <dc:date>2012-03-26T01:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/26033#M13860</link>
      <description>&lt;P&gt;I know that this is a late response, but I wanted to follow up since this thread never really got a resolution.&amp;nbsp; It appears that the issue here came down to a conflict between the design of the SDK and the way that you were trying to use it.&amp;nbsp; The current implementation of the iOS SDK does not allow concurrent requests.&amp;nbsp; Your code is running the mobileDeviceLoginRequest before the mobileDeviceRegistrationRequest has been completed and closed out.&amp;nbsp; Simply changing the request pattern should resolve the null response.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2012 21:07:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/26033#M13860</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2012-04-26T21:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/32380#M16940</link>
      <description>&lt;P&gt;I confirm that the solution above is correct. I commented out the registration code&lt;/P&gt;&lt;P&gt;the second time and left the login code and the session now is no longer null.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//[an mobileDeviceRegistrationRequest:mobileDeviceRegistrationRequest];&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [an mobileDeviceLoginRequest: mobileDeviceLoginRequest];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks to everyone! Now does anyone know what the next steps are?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jan 2013 11:15:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/32380#M16940</guid>
      <dc:creator>RomeoSprout</dc:creator>
      <dc:date>2013-01-01T11:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/34255#M18736</link>
      <description>&lt;P&gt;Hey Did You Solve This Proble...I also Get this typeOutput..i m Stuck At here,,,i &amp;nbsp;also get null SessionToken On MobileDeviceLoginSucceed ...Is There Any Solution.....??????????????????:(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reply.....&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2013 11:11:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/34255#M18736</guid>
      <dc:creator>nikunj_iPhone</dc:creator>
      <dc:date>2013-05-16T11:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Null sessionToken returned in mobileDeviceLoginSucceeded</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/34276#M18757</link>
      <description>&lt;P&gt;Didn't Romeo's post help?&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2013 23:43:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Null-sessionToken-returned-in-mobileDeviceLoginSucceeded/m-p/34276#M18757</guid>
      <dc:creator>fermyon123</dc:creator>
      <dc:date>2013-05-16T23:43:05Z</dc:date>
    </item>
  </channel>
</rss>

