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) Alabama Motor Fuel Excise Tax E-Filing SOAP XML POST (NewSubmission)Demonstrates how to post a NewSubmission to the Alabama MFET (Motor Fuel Excise Tax) e-File.
integer li_rc integer li_Success oleobject loo_SbXml oleobject loo_Xml oleobject loo_Http oleobject loo_Resp oleobject loo_XmlResult oleobject loo_SbResult // 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. // -------------------------------------------------------------------------------- // Here is an example of an HTTP POST Request we'll be sending: // POST /WebServices/MFET/ HTTP/1.1 // Content-Type: text/xml // SOAPAction: NewSubmission // // <soapenv:Envelope // xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" // xmlns:tem="http://tempuri.org/" // xmlns:xsd="http://www.w3.org/2001/XMLSchema" // xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> // <soapenv:Header/> // <soapenv:Body> // <tem:NewSubmission> // <tem:UserName>yourusername</tem:UserName> // <tem:Password>yourpassword</tem:Password> // <tem:File xsi:type="xsd:base64Binary">TRANSMISSION_XML_FILE_CONTENTS_AS_BASE64</tem:File> // </tem:NewSubmission> // </soapenv:Body> // </soapenv:Envelope> // In the above XML, the "TRANSMISSION_XML_FILE_CONTENTS_AS_BASE64" contains the base64 encoded // string of the XML file that contains "<Transmission> ... </Transmission>" // First let's load the transmission XML file and get the contents as base64. loo_SbXml = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbXml.ConnectToNewObject("Chilkat.StringBuilder") if li_rc < 0 then destroy loo_SbXml MessageBox("Error","Connecting to COM object failed") return end if li_Success = loo_SbXml.LoadFile("qa_data/xml/AL_SR_999802_test.xml","utf-8") if li_Success <> 1 then Write-Debug "Failed to load XML file." destroy loo_SbXml return end if loo_SbXml.Encode("base64","utf-8") // Build the XMl that will be the body of the HTTP request. loo_Xml = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_Xml.ConnectToNewObject("Chilkat.Xml") loo_Xml.Tag = "soapenv:Envelope" loo_Xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/") loo_Xml.AddAttribute("xmlns:tem","http://tempuri.org/") loo_Xml.AddAttribute("xmlns:xsd","http://www.w3.org/2001/XMLSchema") loo_Xml.AddAttribute("xmlns:xsi","http://www.w3.org/2001/XMLSchema-instance") loo_Xml.UpdateChildContent("soapenv:Header","") loo_Xml.UpdateChildContent("soapenv:Body|tem:NewSubmission|tem:UserName","yourusername") loo_Xml.UpdateChildContent("soapenv:Body|tem:NewSubmission|tem:Password","yourpassword") loo_Xml.UpdateAttrAt("soapenv:Body|tem:NewSubmission|tem:File",1,"xsi:type","xsd:base64Binary") loo_Xml.UpdateChildContent("soapenv:Body|tem:NewSubmission|tem:File",loo_SbXml.GetAsString()) loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") loo_Http.SetRequestHeader("Content-Type","text/xml") loo_Http.SetRequestHeader("SoapAction","NewSubmission") loo_Resp = loo_Http.PostXml("https://mattest.alabama.gov/WebServices/MFET/",loo_Xml.GetXml(),"utf-8") if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText destroy loo_SbXml destroy loo_Xml destroy loo_Http return end if Write-Debug "Response status code = " + string(loo_Resp.StatusCode) Write-Debug "Response body text:" Write-Debug loo_Resp.BodyStr // The response will look like this: // <?xml version="1.0" encoding="utf-8" ?> // <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> // <s:Body> // <NewSubmissionResponse xmlns="http://tempuri.org/"> // <NewSubmissionResult i:type="a:base64Binary" xmlns:a="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">BASE64_RESULT</NewSubmissionResult> // </NewSubmissionResponse> // </s:Body> // </s:Envelope> // We can get the base64 result like this: loo_XmlResult = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_XmlResult.ConnectToNewObject("Chilkat.Xml") loo_XmlResult.LoadXml(loo_Resp.BodyStr) loo_SbResult = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResult.ConnectToNewObject("Chilkat.StringBuilder") loo_SbResult.Append(loo_XmlResult.GetChildContent("s:Body|NewSubmissionResponse|NewSubmissionResult")) loo_SbResult.Decode("base64","utf-8") Write-Debug "Decoded result:" Write-Debug loo_SbResult.GetAsString() // A sample of a decoded error response: // <?xml version="1.0" encoding="utf-8"?> // <!--ADOR Acknowledgement 1--> // <Transmission xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.irs.gov/efile"> // <Jurisdiction>ALABAMA</Jurisdiction> // <TransmissionId>2018-09-1019:14R000000001</TransmissionId> // <Timestamp>2018-09-10T19:14:12Z</Timestamp> // <Transmitter> // <ETIN>00000</ETIN> // </Transmitter> // <ProcessType>P</ProcessType> // <AgentIdentifier>ACK</AgentIdentifier> // <AcknowledgementID>0</AcknowledgementID> // <AcknowledgementTimeStamp>2018-09-11T21:16:34-05:00</AcknowledgementTimeStamp> // <Errors> // <Error>Process Type must be 'T' when submitted to Testing Web Service</Error> // </Errors> // </Transmission> destroy loo_Resp destroy loo_SbXml destroy loo_Xml destroy loo_Http destroy loo_XmlResult destroy loo_SbResult |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.