Login

Login is used to connect to the server using userID and password.  A sessionID is returned which must be used in calls to the server.

POST /TrackService.asmx HTTP/1.1
Host: trackservice.trackroad.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://TrackService.TrackRoad.com/Login"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Login xmlns="http://TrackService.TrackRoad.com/">
      <userName>string</userName>
      <password>string</password>
    </Login>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <SessionIDHeader xmlns="http://TrackService.TrackRoad.com/">
      <SessionID>string</SessionID>
    </SessionIDHeader>
  </soap:Header>
  <soap:Body>
    <LoginResponse xmlns="http://TrackService.TrackRoad.com/">
      <LoginResult>
        <Message>string</Message>
        <Status>None or Success or Failed or SuccessWithErrors</Status>
        <Key>string</Key>
      </LoginResult>
    </LoginResponse>
  </soap:Body>
</soap:Envelope>