SOAP WSDL Generate Code

DPDPackageObjServicesServiceSoapBinding / generateSpedLabelsV4

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"soapenv:Envelope");
    xml.AddAttribute(L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/");
    xml.AddAttribute(L"xmlns:dpd",L"http://dpdservices.dpd.com.pl/");
    xml.UpdateChildContent(L"soapenv:Header",L"");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:documentId",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:address",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:city",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:company",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:countryCode",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:email",L"string");
    xml.UpdateChildContentInt(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:fid",1042);
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:name",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:phone",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:pickupAddress|dpd:postalCode",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:policy",L"STOP_ON_FIRST_ERROR");
    xml.UpdateChildContentInt(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:packages|dpd:packageId",123456);
    xml.UpdateChildContentInt(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:packages|dpd:parcels|dpd:parcelId",123456);
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:packages|dpd:parcels|dpd:reference",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:packages|dpd:parcels|dpd:waybill",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:packages|dpd:reference",L"string");
    xml.UpdateChildContentInt(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:sessionId",123456);
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:dpdServicesParamsV1|dpd:session|dpd:sessionType",L"DOMESTIC");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:outputDocFormatV1",L"PDF");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:outputDocPageFormatV1",L"A4");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:outputLabelType",L"BIC3");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:labelVariant",L"string");
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:authDataV1|dpd:login",L"string");
    xml.UpdateChildContentInt(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:authDataV1|dpd:masterFid",1042);
    xml.UpdateChildContent(L"soapenv:Body|dpd:generateSpedLabelsV4|dpd:authDataV1|dpd:password",L"string");

    // 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://dpdservicesdemo.dpd.com.pl/DPDPackageObjServicesService/DPDPackageObjServices";
    const wchar_t *soapAction = L"";
    //  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 *documentData = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:documentData");
    const wchar_t *documentId = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:documentId");
    int packageId = responseXml.GetChildIntValue(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:packageId");
    int parcelId = responseXml.GetChildIntValue(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:parcels|*:parcelId");
    const wchar_t *reference = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:parcels|*:reference");
    const wchar_t *description = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:parcels|*:statusInfo|*:description");
    const wchar_t *status = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:parcels|*:statusInfo|*:status");
    const wchar_t *waybill = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:parcels|*:waybill");
    reference = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:reference");
    description = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:statusInfo|*:description");
    status = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:packages|*:statusInfo|*:status");
    int sessionId = responseXml.GetChildIntValue(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:sessionId");
    description = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:statusInfo|*:description");
    status = responseXml.getChildContent(L"*:Body|*:generateSpedLabelsV4Response|*:return|*:session|*:statusInfo|*:status");
    }
Request XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dpd="http://dpdservices.dpd.com.pl/">
    <soapenv:Header/>
    <soapenv:Body>
        <dpd:generateSpedLabelsV4>
            <dpd:dpdServicesParamsV1>
                <dpd:documentId>string</dpd:documentId>
                <dpd:pickupAddress>
                    <dpd:address>string</dpd:address>
                    <dpd:city>string</dpd:city>
                    <dpd:company>string</dpd:company>
                    <dpd:countryCode>string</dpd:countryCode>
                    <dpd:email>string</dpd:email>
                    <dpd:fid>1042</dpd:fid>
                    <dpd:name>string</dpd:name>
                    <dpd:phone>string</dpd:phone>
                    <dpd:postalCode>string</dpd:postalCode>
                </dpd:pickupAddress>
                <dpd:policy>STOP_ON_FIRST_ERROR</dpd:policy>
                <dpd:session>
                    <dpd:packages>
                        <dpd:packageId>123456</dpd:packageId>
                        <dpd:parcels>
                            <dpd:parcelId>123456</dpd:parcelId>
                            <dpd:reference>string</dpd:reference>
                            <dpd:waybill>string</dpd:waybill>
                        </dpd:parcels>
                        <dpd:reference>string</dpd:reference>
                    </dpd:packages>
                    <dpd:sessionId>123456</dpd:sessionId>
                    <dpd:sessionType>DOMESTIC</dpd:sessionType>
                </dpd:session>
            </dpd:dpdServicesParamsV1>
            <dpd:outputDocFormatV1>PDF</dpd:outputDocFormatV1>
            <dpd:outputDocPageFormatV1>A4</dpd:outputDocPageFormatV1>
            <dpd:outputLabelType>BIC3</dpd:outputLabelType>
            <dpd:labelVariant>string</dpd:labelVariant>
            <dpd:authDataV1>
                <dpd:login>string</dpd:login>
                <dpd:masterFid>1042</dpd:masterFid>
                <dpd:password>string</dpd:password>
            </dpd:authDataV1>
        </dpd:generateSpedLabelsV4>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dpd="http://dpdservices.dpd.com.pl/">
    <soapenv:Header/>
    <soapenv:Body>
        <dpd:generateSpedLabelsV4Response>
            <dpd:return>
                <dpd:documentData>BqozVXeZZg==</dpd:documentData>
                <dpd:documentId>string</dpd:documentId>
                <dpd:session>
                    <dpd:packages>
                        <dpd:packageId>123456</dpd:packageId>
                        <dpd:parcels>
                            <dpd:parcelId>123456</dpd:parcelId>
                            <dpd:reference>string</dpd:reference>
                            <dpd:statusInfo>
                                <dpd:description>string</dpd:description>
                                <dpd:status>OK</dpd:status>
                            </dpd:statusInfo>
                            <dpd:waybill>string</dpd:waybill>
                        </dpd:parcels>
                        <dpd:reference>string</dpd:reference>
                        <dpd:statusInfo>
                            <dpd:description>string</dpd:description>
                            <dpd:status>OK</dpd:status>
                        </dpd:statusInfo>
                    </dpd:packages>
                    <dpd:sessionId>123456</dpd:sessionId>
                    <dpd:statusInfo>
                        <dpd:description>string</dpd:description>
                        <dpd:status>OK</dpd:status>
                    </dpd:statusInfo>
                </dpd:session>
            </dpd:return>
        </dpd:generateSpedLabelsV4Response>
    </soapenv:Body>
</soapenv:Envelope>