Guardian Mortgage Documents

ProcessCalc

Process a calculation.

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

<?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>
    <ProcessCalc xmlns="http://ws.gmd.com/services">
      <parameterList>string</parameterList>
      <request>string</request>
    </ProcessCalc>
  </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>
    <ProcessCalcResponse xmlns="http://ws.gmd.com/services">
      <ProcessCalcResult>string</ProcessCalcResult>
    </ProcessCalcResponse>
  </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 /gmdcalculate/CalculationService.asmx/ProcessCalc HTTP/1.1
Host: com.covius.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

parameterList=string&request=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>