Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PureBasic Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(PureBasic) 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.

Chilkat PureBasic Module Download

Chilkat PureBasic Module

IncludeFile "CkHttp.pb"
IncludeFile "CkXml.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

    ; 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.
    ; --------------------------------------------------------------------------------

    success.i

    ; 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.
    sbXml.i = CkStringBuilder::ckCreate()
    If sbXml.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkStringBuilder::ckLoadFile(sbXml,"qa_data/xml/AL_SR_999802_test.xml","utf-8")
    If success <> 1
        Debug "Failed to load XML file."
        CkStringBuilder::ckDispose(sbXml)
        ProcedureReturn
    EndIf

    CkStringBuilder::ckEncode(sbXml,"base64","utf-8")

    ; Build the XMl that will be the body of the HTTP request.
    xml.i = CkXml::ckCreate()
    If xml.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkXml::setCkTag(xml, "soapenv:Envelope")
    CkXml::ckAddAttribute(xml,"xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
    CkXml::ckAddAttribute(xml,"xmlns:tem","http://tempuri.org/")
    CkXml::ckAddAttribute(xml,"xmlns:xsd","http://www.w3.org/2001/XMLSchema")
    CkXml::ckAddAttribute(xml,"xmlns:xsi","http://www.w3.org/2001/XMLSchema-instance")
    CkXml::ckUpdateChildContent(xml,"soapenv:Header","")
    CkXml::ckUpdateChildContent(xml,"soapenv:Body|tem:NewSubmission|tem:UserName","yourusername")
    CkXml::ckUpdateChildContent(xml,"soapenv:Body|tem:NewSubmission|tem:Password","yourpassword")
    CkXml::ckUpdateAttrAt(xml,"soapenv:Body|tem:NewSubmission|tem:File",1,"xsi:type","xsd:base64Binary")
    CkXml::ckUpdateChildContent(xml,"soapenv:Body|tem:NewSubmission|tem:File",CkStringBuilder::ckGetAsString(sbXml))

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttp::ckSetRequestHeader(http,"Content-Type","text/xml")
    CkHttp::ckSetRequestHeader(http,"SoapAction","NewSubmission")

    resp.i = CkHttp::ckPostXml(http,"https://mattest.alabama.gov/WebServices/MFET/",CkXml::ckGetXml(xml),"utf-8")
    If CkHttp::ckLastMethodSuccess(http) <> 1
        Debug CkHttp::ckLastErrorText(http)
        CkStringBuilder::ckDispose(sbXml)
        CkXml::ckDispose(xml)
        CkHttp::ckDispose(http)
        ProcedureReturn
    EndIf

    Debug "Response status code = " + Str(CkHttpResponse::ckStatusCode(resp))
    Debug "Response body text:"
    Debug CkHttpResponse::ckBodyStr(resp)

    ; 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:
    xmlResult.i = CkXml::ckCreate()
    If xmlResult.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkXml::ckLoadXml(xmlResult,CkHttpResponse::ckBodyStr(resp))
    sbResult.i = CkStringBuilder::ckCreate()
    If sbResult.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkStringBuilder::ckAppend(sbResult,CkXml::ckGetChildContent(xmlResult,"s:Body|NewSubmissionResponse|NewSubmissionResult"))
    CkStringBuilder::ckDecode(sbResult,"base64","utf-8")
    Debug "Decoded result:"
    Debug CkStringBuilder::ckGetAsString(sbResult)

    ; 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>

    CkHttpResponse::ckDispose(resp)



    CkStringBuilder::ckDispose(sbXml)
    CkXml::ckDispose(xml)
    CkHttp::ckDispose(http)
    CkXml::ckDispose(xmlResult)
    CkStringBuilder::ckDispose(sbResult)


    ProcedureReturn
EndProcedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.