Unicode C
Unicode C
Alabama Motor Fuel Excise Tax E-Filing SOAP XML POST (NewSubmission)
See more HTTP Misc Examples
Demonstrates how to post a NewSubmission to the Alabama MFET (Motor Fuel Excise Tax) e-File.Chilkat Unicode C Downloads
#include <C_CkStringBuilderW.h>
#include <C_CkXmlW.h>
#include <C_CkHttpW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
BOOL success;
HCkStringBuilderW sbXmlFileData;
HCkXmlW xml;
HCkHttpW http;
HCkStringBuilderW sbXml;
HCkHttpResponseW resp;
HCkXmlW xmlResult;
HCkStringBuilderW sbResult;
success = FALSE;
// 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.
sbXmlFileData = CkStringBuilderW_Create();
success = CkStringBuilderW_LoadFile(sbXmlFileData,L"qa_data/xml/AL_SR_999802_test.xml",L"utf-8");
if (success != TRUE) {
wprintf(L"Failed to load XML file.\n");
CkStringBuilderW_Dispose(sbXmlFileData);
return;
}
CkStringBuilderW_Encode(sbXmlFileData,L"base64",L"utf-8");
// Build the XMl that will be the body of the HTTP request.
xml = CkXmlW_Create();
CkXmlW_putTag(xml,L"soapenv:Envelope");
CkXmlW_AddAttribute(xml,L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/");
CkXmlW_AddAttribute(xml,L"xmlns:tem",L"http://tempuri.org/");
CkXmlW_AddAttribute(xml,L"xmlns:xsd",L"http://www.w3.org/2001/XMLSchema");
CkXmlW_AddAttribute(xml,L"xmlns:xsi",L"http://www.w3.org/2001/XMLSchema-instance");
CkXmlW_UpdateChildContent(xml,L"soapenv:Header",L"");
CkXmlW_UpdateChildContent(xml,L"soapenv:Body|tem:NewSubmission|tem:UserName",L"yourusername");
CkXmlW_UpdateChildContent(xml,L"soapenv:Body|tem:NewSubmission|tem:Password",L"yourpassword");
CkXmlW_UpdateAttrAt(xml,L"soapenv:Body|tem:NewSubmission|tem:File",TRUE,L"xsi:type",L"xsd:base64Binary");
CkXmlW_UpdateChildContent(xml,L"soapenv:Body|tem:NewSubmission|tem:File",CkStringBuilderW_getAsString(sbXmlFileData));
http = CkHttpW_Create();
CkHttpW_SetRequestHeader(http,L"SoapAction",L"NewSubmission");
sbXml = CkStringBuilderW_Create();
CkXmlW_GetXmlSb(xml,sbXml);
resp = CkHttpResponseW_Create();
success = CkHttpW_HttpSb(http,L"POST",L"https://mattest.alabama.gov/WebServices/MFET/",sbXml,L"utf-8",L"text/xml",resp);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkStringBuilderW_Dispose(sbXmlFileData);
CkXmlW_Dispose(xml);
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbXml);
CkHttpResponseW_Dispose(resp);
return;
}
wprintf(L"Response status code = %d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"Response body text:\n");
wprintf(L"%s\n",CkHttpResponseW_bodyStr(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 = CkXmlW_Create();
CkXmlW_LoadXml(xmlResult,CkHttpResponseW_bodyStr(resp));
sbResult = CkStringBuilderW_Create();
CkStringBuilderW_Append(sbResult,CkXmlW_getChildContent(xmlResult,L"s:Body|NewSubmissionResponse|NewSubmissionResult"));
CkStringBuilderW_Decode(sbResult,L"base64",L"utf-8");
wprintf(L"Decoded result:\n");
wprintf(L"%s\n",CkStringBuilderW_getAsString(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>
CkStringBuilderW_Dispose(sbXmlFileData);
CkXmlW_Dispose(xml);
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbXml);
CkHttpResponseW_Dispose(resp);
CkXmlW_Dispose(xmlResult);
CkStringBuilderW_Dispose(sbResult);
}