Mobile SDK > Testing a mobile application > Testing a disconnected application > Logging into MobileSyncWebService
 
Logging into MobileSyncWebService
Use the /Logon URL to log into the MobileSyncWebService. The following request shows the detail HTTP request with the test user credentials user:Pass1234.
get http://localhost/SPSSMR/MobileSync/logon HTTP/1.1
User-Agent: Fiddler
Accept: application/xml
Authorization: basic dXNlcjpQYXNzMTIzNA==
Host: localhost
MobileSyncWebService generates a Session-Token header in the response, which should be used in the following requests. For example:
HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Server: Microsoft-IIS/7.5Session-Token: 92d8cb82-eb67-4192-9110-eabbffd87f33X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Fri, 31 Oct 2014 07:31:29 GMT
Content-Length: 0
Next
Retrieving the project list
See also
Testing a disconnected application