ProcessRequest
Upload a document and return (download) the resulting processed data.
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/ProcessRequest"
<?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>
<ProcessRequest xmlns="http://ws.gmd.com/services">
<parameterList>string</parameterList>
<request>string</request>
</ProcessRequest>
</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>
<ProcessRequestResponse xmlns="http://ws.gmd.com/services">
<ProcessRequestResult>string</ProcessRequestResult>
</ProcessRequestResponse>
</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/ProcessRequest 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>