Guardian Mortgage Documents

Download

Download a document to the client.

Test

To test the operations of this Web service, use the sample client application we have provided.

Formats

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 /gmdinterface/interfacewebservice.asmx HTTP/1.1
Host: com.covius.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ws.gmd.com/services/Download"

<?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>
    <AuthenticationSoapHeader xmlns="http://ws.gmd.com/services">
      <Login>string</Login>
      <Password>string</Password>
    </AuthenticationSoapHeader>
  </soap:Header>
  <soap:Body>
    <Download xmlns="http://ws.gmd.com/services">
      <parameterList>string</parameterList>
    </Download>
  </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:Body>
    <DownloadResponse xmlns="http://ws.gmd.com/services">
      <DownloadResult>string</DownloadResult>
    </DownloadResponse>
  </soap:Body>
</soap:Envelope>

HTTP POST

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

POST /gmdinterface/interfacewebservice.asmx/Download HTTP/1.1
Host: com.covius.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

parameterList=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://ws.gmd.com/services">string</string>