PowerBuilder
PowerBuilder
HTTP SOAP 1.1 Request and Response using POST
See more HTTP Examples
Demonstrates a working SOAP 1.1 request and response using POST with a live server. You may try running this example with the URLs and data provided. See http://secure.smartbearsoftware.com/samples/testcomplete10/webservices/Service.asmx?WSDL for detailsChilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_SoapXml
oleobject loo_Req
oleobject loo_Resp
oleobject loo_XmlResponse
li_Success = 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Generate the following XML:
// <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:smar="http://smartbear.com">
// <soapenv:Header/>
// <soapenv:Body>
// <smar:HelloWorld/>
// </soapenv:Body>
// </soapenv:Envelope>
loo_SoapXml = create oleobject
li_rc = loo_SoapXml.ConnectToNewObject("Chilkat.Xml")
loo_SoapXml.Tag = "soapenv:Envelope"
loo_SoapXml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
loo_SoapXml.AddAttribute("xmlns:smar","http://smartbear.com")
loo_SoapXml.UpdateChildContent("soapenv:Header","")
loo_SoapXml.UpdateChildContent("soapenv:Body|smar:HelloWorld","")
Write-Debug loo_SoapXml.GetXml()
loo_Req = create oleobject
li_rc = loo_Req.ConnectToNewObject("Chilkat.HttpRequest")
loo_Req.HttpVerb = "POST"
loo_Req.SendCharset = 0
loo_Req.AddHeader("Content-Type","text/xml; charset=utf-8")
loo_Req.AddHeader("SOAPAction","http://smartbear.com/HelloWorld")
loo_Req.Path = "/samples/testcomplete10/webservices/Service.asmx"
li_Success = loo_Req.LoadBodyFromString(loo_SoapXml.GetXml(),"utf-8")
loo_Http.FollowRedirects = 1
loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")
li_Success = loo_Http.HttpSReq("secure.smartbearsoftware.com",443,1,loo_Req,loo_Resp)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_SoapXml
destroy loo_Req
destroy loo_Resp
return
end if
loo_XmlResponse = create oleobject
li_rc = loo_XmlResponse.ConnectToNewObject("Chilkat.Xml")
li_Success = loo_XmlResponse.LoadXml(loo_Resp.BodyStr)
Write-Debug loo_XmlResponse.GetXml()
// A successful XML response:
// <?xml version="1.0" encoding="utf-8" ?>
// <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
// <soap:Body>
// <HelloWorldResponse xmlns="http://smartbear.com">
// <HelloWorldResult>Hello World</HelloWorldResult>
// </HelloWorldResponse>
// </soap:Body>
// </soap:Envelope>
destroy loo_Http
destroy loo_SoapXml
destroy loo_Req
destroy loo_Resp
destroy loo_XmlResponse