websrv
Click here for a complete list of operations.
submit
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 /websrv.asmx HTTP/1.1 Host: 116.63.75.242 Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://tempurl.org/submit" <?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> <submit xmlns="http://tempurl.org"> <as_cnn>string</as_cnn> <as_ctrlparm>string</as_ctrlparm> <abb_data> <base64Binary>base64Binary</base64Binary> <base64Binary>base64Binary</base64Binary> </abb_data> <as_parm> <string>string</string> <string>string</string> </as_parm> <as_ctrl> <string>string</string> <string>string</string> </as_ctrl> <as_msg>string</as_msg> <as_more>string</as_more> </submit> </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> <submitResponse xmlns="http://tempurl.org"> <submitResult>int</submitResult> <abb_data> <base64Binary>base64Binary</base64Binary> <base64Binary>base64Binary</base64Binary> </abb_data> <as_parm> <string>string</string> <string>string</string> </as_parm> <as_ctrl> <string>string</string> <string>string</string> </as_ctrl> <as_msg>string</as_msg> <as_more>string</as_more> </submitResponse> </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 /websrv.asmx HTTP/1.1 Host: 116.63.75.242 Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <submit xmlns="http://tempurl.org"> <as_cnn>string</as_cnn> <as_ctrlparm>string</as_ctrlparm> <abb_data> <base64Binary>base64Binary</base64Binary> <base64Binary>base64Binary</base64Binary> </abb_data> <as_parm> <string>string</string> <string>string</string> </as_parm> <as_ctrl> <string>string</string> <string>string</string> </as_ctrl> <as_msg>string</as_msg> <as_more>string</as_more> </submit> </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="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <submitResponse xmlns="http://tempurl.org"> <submitResult>int</submitResult> <abb_data> <base64Binary>base64Binary</base64Binary> <base64Binary>base64Binary</base64Binary> </abb_data> <as_parm> <string>string</string> <string>string</string> </as_parm> <as_ctrl> <string>string</string> <string>string</string> </as_ctrl> <as_msg>string</as_msg> <as_more>string</as_more> </submitResponse> </soap12:Body> </soap12:Envelope>