Use ChilkatAx-win32.pkg
Procedure TestHandle hoXml
Boolean iSuccess
String sSoapRequestBody
String sEndpoint
String sSoapAction
String sContentType
Handle hoHttp
Variant vResp
Handle hoResp
Variant vResponseXml
Handle hoResponseXml
Integer iStatusCode
String sBPMInitiateWorkflowResult
String sTemp1
Boolean bTemp1
Get Create (RefClass(cComChilkatXml)) To hoXml
If (Not(IsComObjectCreated(hoXml))) BeginSend CreateComObject of hoXml
EndSetComTagOf hoXml To"soapenv:Envelope"GetComAddAttributeOf hoXml "xmlns:soapenv""http://schemas.xmlsoap.org/soap/envelope/"To iSuccess
GetComAddAttributeOf hoXml "xmlns:spr""http://www.springcm.com/atlas/webservices/v201308/scm/"To iSuccess
SendComUpdateChildContentTo hoXml "soapenv:Header"""SendComUpdateChildContentTo hoXml "soapenv:Body|spr:BPMInitiateWorkflow|spr:token""string"SendComUpdateChildContentTo hoXml "soapenv:Body|spr:BPMInitiateWorkflow|spr:name""string"SendComUpdateChildContentTo hoXml "soapenv:Body|spr:BPMInitiateWorkflow|spr:data""string"// In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required. SetComEmitXmlDeclOf hoXml ToFalseGetComGetXmlOf hoXml To sSoapRequestBody
Move"https://soapna11.springcm.com/atlas/webservices/v201308/springcmservice.asmx"To sEndpoint
Move"http://www.springcm.com/atlas/webservices/v201308/scm/BPMInitiateWorkflow"To sSoapAction
// For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"Move"text/xml"To sContentType
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) BeginSend CreateComObject of hoHttp
EndSendComClearHeadersTo hoHttp
SendComSetRequestHeaderTo hoHttp "Content-Type" sContentType
SendComSetRequestHeaderTo hoHttp "SOAPAction" sSoapAction
GetComPostXmlOf hoHttp sEndpoint sSoapRequestBody "utf-8"To vResp
If (IsComObject(vResp)) BeginGet Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
EndGetComLastMethodSuccessOf hoHttp To bTemp1
If (bTemp1 = False) BeginGetComLastErrorTextOf hoHttp To sTemp1
Showln sTemp1
Showln"Failed to send SOAP request."Procedure_ReturnEnd// Get the XML response body.Get Create (RefClass(cComChilkatXml)) To hoResponseXml
If (Not(IsComObjectCreated(hoResponseXml))) BeginSend CreateComObject of hoResponseXml
End
Get pvComObject of hoResponseXml to vResponseXml
GetComGetBodyXmlOf hoResp vResponseXml To iSuccess
GetComStatusCodeOf hoResp To iStatusCode
Showln"response status code: " iStatusCode
Send Destroy of hoResp
// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.If (iStatusCode <> 200) BeginGetComGetXmlOf hoResponseXml To sTemp1
Showln sTemp1
Procedure_ReturnEndGetComGetXmlOf hoResponseXml To sTemp1
Showln sTemp1
// 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).GetComGetChildContentOf hoResponseXml "*:Body|*:BPMInitiateWorkflowResponse|*:BPMInitiateWorkflowResult"To sBPMInitiateWorkflowResult
End_Procedure