Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) HTTP SOAP 1.1 Request and Response using POSTDemonstrates 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 details
integer li_rc oleobject loo_Http oleobject loo_SoapXml oleobject loo_Req integer li_Success oleobject loo_Resp oleobject loo_XmlResponse // 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 // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 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 // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 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 // Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 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 = loo_Http.SynchronousRequest("secure.smartbearsoftware.com",80,0,loo_Req) if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText else loo_XmlResponse = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_XmlResponse.ConnectToNewObject("Chilkat.Xml") li_Success = loo_XmlResponse.LoadXml(loo_Resp.BodyStr) Write-Debug loo_XmlResponse.GetXml() destroy loo_Resp end if // 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_XmlResponse |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.