LandsSearch


Click here for a complete list of operations.

RegisterNewUser

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /tfsearch/LandsSearch.asmx HTTP/1.1
Host: www.sos.ms.gov
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://tempuri.org/RegisterNewUser"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <RegisterNewUser xmlns="https://tempuri.org/">
      <tmpEmail>string</tmpEmail>
      <tmpPass>string</tmpPass>
      <tmpFName>string</tmpFName>
      <tmpMName>string</tmpMName>
      <tmpLName>string</tmpLName>
      <tmpSuffix>string</tmpSuffix>
      <tmpCName>string</tmpCName>
      <tmpAddr1>string</tmpAddr1>
      <tmpAddr2>string</tmpAddr2>
      <tmpCity>string</tmpCity>
      <tmpState>int</tmpState>
      <tmpZip>string</tmpZip>
      <tmpPrefix>string</tmpPrefix>
    </RegisterNewUser>
  </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="https://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <RegisterNewUserResponse xmlns="https://tempuri.org/">
      <RegisterNewUserResult>string</RegisterNewUserResult>
    </RegisterNewUserResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /tfsearch/LandsSearch.asmx HTTP/1.1
Host: www.sos.ms.gov
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:soap12="https://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <RegisterNewUser xmlns="https://tempuri.org/">
      <tmpEmail>string</tmpEmail>
      <tmpPass>string</tmpPass>
      <tmpFName>string</tmpFName>
      <tmpMName>string</tmpMName>
      <tmpLName>string</tmpLName>
      <tmpSuffix>string</tmpSuffix>
      <tmpCName>string</tmpCName>
      <tmpAddr1>string</tmpAddr1>
      <tmpAddr2>string</tmpAddr2>
      <tmpCity>string</tmpCity>
      <tmpState>int</tmpState>
      <tmpZip>string</tmpZip>
      <tmpPrefix>string</tmpPrefix>
    </RegisterNewUser>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:soap12="https://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <RegisterNewUserResponse xmlns="https://tempuri.org/">
      <RegisterNewUserResult>string</RegisterNewUserResult>
    </RegisterNewUserResponse>
  </soap12:Body>
</soap12:Envelope>