SOAP WSDL Generate Code

WSHttpBinding_IWcfDianCustomerServices / SendEventUpdateStatus

ASP AutoIt C C (Unicode) C++ C++ (Unicode) C# DataFlex Delphi Foxpro Go Java Node.js Objective-C Perl PHP Extension PowerBuilder Powershell PureBasic Python CkPython Ruby SQL Server Swift TCL VB.NET VB6 VBScript Xojo
#include <CkXmlW.h>
#include <CkHttpW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    CkXmlW xml;
    xml.put_Tag(L"soap:Envelope");
    xml.AddAttribute(L"xmlns:soap",L"http://www.w3.org/2003/05/soap-envelope");
    xml.AddAttribute(L"xmlns:wcf",L"http://wcf.dian.colombia");
    xml.UpdateChildContent(L"soap:Header",L"");
    xml.UpdateChildContent(L"soap:Body|wcf:SendEventUpdateStatus|wcf:contentFile",L"BqozVXeZZg==");

    // In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required. 
    xml.put_EmitXmlDecl(false);
    const wchar_t *soapRequestBody = xml.getXml();

    const wchar_t *endpoint = L"https://vpfe-hab.dian.gov.co/WcfDianCustomerServices.svc";
    const wchar_t *soapAction = L"http://wcf.dian.colombia/IWcfDianCustomerServices/SendEventUpdateStatus";
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    const wchar_t *contentType = L"text/xml";

    CkHttpW http;

    http.ClearHeaders();
    http.SetRequestHeader(L"Content-Type",contentType);
    http.SetRequestHeader(L"SOAPAction",soapAction);

    CkHttpResponseW *resp = http.PostXml(endpoint,soapRequestBody,L"utf-8");
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        wprintf(L"Failed to send SOAP request.\n");
        return;
    }

    // Get the XML response body.
    CkXmlW responseXml;
    resp->GetBodyXml(responseXml);

    int statusCode = resp->get_StatusCode();
    wprintf(L"response status code: %d\n",statusCode);

    delete resp;

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if (statusCode != 200) {
        wprintf(L"%s\n",responseXml.getXml());
        return;
    }

    wprintf(L"%s\n",responseXml.getXml());

    // Parse the successful SOAP response XML.

    // This is a sample of the response XML, but the namespace prefixes will be different.
    // We can parse the result using "*" for the namespace prefixes (see below).

    const wchar_t *v_string = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:ErrorMessage|*:string");
    const wchar_t *IsValid = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:IsValid");
    const wchar_t *StatusCode = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:StatusCode");
    const wchar_t *StatusDescription = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:StatusDescription");
    const wchar_t *StatusMessage = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:StatusMessage");
    const wchar_t *XmlBase64Bytes = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:XmlBase64Bytes");
    const wchar_t *XmlBytes = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:XmlBytes");
    const wchar_t *XmlDocumentKey = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:XmlDocumentKey");
    const wchar_t *XmlFileName = responseXml.getChildContent(L"*:Body|*:SendEventUpdateStatusResponse|*:SendEventUpdateStatusResult|*:XmlFileName");
    }
Request XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wcf="http://wcf.dian.colombia">
    <soap:Header/>
    <soap:Body>
        <wcf:SendEventUpdateStatus>
            <wcf:contentFile>BqozVXeZZg==</wcf:contentFile>
        </wcf:SendEventUpdateStatus>
    </soap:Body>
</soap:Envelope>
Response XML
<soap:Envelope xmlns:wcf="http://wcf.dian.colombia" xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:dia="http://schemas.datacontract.org/2004/07/DianResponse" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <soap:Header/>
    <soap:Body>
        <wcf:SendEventUpdateStatusResponse>
            <wcf:SendEventUpdateStatusResult>
                <dia:ErrorMessage>
                    <arr:string>string</arr:string>
                </dia:ErrorMessage>
                <dia:IsValid>true</dia:IsValid>
                <dia:StatusCode>string</dia:StatusCode>
                <dia:StatusDescription>string</dia:StatusDescription>
                <dia:StatusMessage>string</dia:StatusMessage>
                <dia:XmlBase64Bytes>BqozVXeZZg==</dia:XmlBase64Bytes>
                <dia:XmlBytes>BqozVXeZZg==</dia:XmlBytes>
                <dia:XmlDocumentKey>string</dia:XmlDocumentKey>
                <dia:XmlFileName>string</dia:XmlFileName>
            </wcf:SendEventUpdateStatusResult>
        </wcf:SendEventUpdateStatusResponse>
    </soap:Body>
</soap:Envelope>