|
|
(JavaScript) Simple SOAP Request
Demonstrates how to send a simple SOAP request.
var success = false;
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
// Create the following XML to be sent in the SOAP request body.
// <soapenv:Envelope xmlns:dat="http://www.dataaccess.com/webservicesserver/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
// <soapenv:Header/>
// <soapenv:Body>
// <dat:NumberToDollars>
// <dat:dNum>99.0</dat:dNum>
// </dat:NumberToDollars>
// </soapenv:Body>
// </soapenv:Envelope>
var xml = new CkXml();
xml.Tag = "soapenv:Envelope";
xml.AddAttribute("xmlns:dat","http://www.dataaccess.com/webservicesserver/");
xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
xml.UpdateChildContent("soapenv:Header","");
xml.UpdateChildContent("soapenv:Body|dat:NumberToDollars|dat:dNum","99.0");
// In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required.
xml.EmitXmlDecl = false;
var soapRequestBody = xml.GetXml();
var endpoint = "https://www.dataaccess.com/webservicesserver/numberconversion.wso";
var soapAction = "";
// For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
var contentType = "text/xml";
var http = new CkHttp();
http.ClearHeaders();
http.SetRequestHeader("SOAPAction",soapAction);
var resp = new CkHttpResponse();
success = http.HttpStr("POST",endpoint,soapRequestBody,"utf-8",contentType,resp);
if (success == false) {
console.log(http.LastErrorText);
return;
}
// Get the XML response body.
var responseXml = new CkXml();
resp.GetBodyXml(responseXml);
var statusCode = resp.StatusCode;
console.log("response status code: " + statusCode);
// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if (statusCode !== 200) {
console.log(responseXml.GetXml());
return;
}
console.log(responseXml.GetXml());
// Parse the successful SOAP response XML.
// This is a sample of the response XML, but the namespace prefixes will be different.
// We can parse the result using "*" for the namespace prefixes (see below).
// <soapenv:Envelope xmlns:dat="http://www.dataaccess.com/webservicesserver/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
// <soapenv:Header/>
// <soapenv:Body>
// <dat:NumberToDollarsResponse>
// <dat:NumberToDollarsResult>string</dat:NumberToDollarsResult>
// </dat:NumberToDollarsResponse>
// </soapenv:Body>
// </soapenv:Envelope>
var dat_NumberToDollarsResult = responseXml.GetChildContent("*:Body|*:NumberToDollarsResponse|*:NumberToDollarsResult");
console.log("result: " + dat_NumberToDollarsResult);
|