SOAP WSDL Generate Code

DPDPackageObjServicesServiceSoapBinding / generateProtocolsWithDestinationsV1

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
Chilkat.Xml xml = new Chilkat.Xml();
xml.Tag = "soapenv:Envelope";
xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
xml.AddAttribute("xmlns:dpd","http://dpdservices.dpd.com.pl/");
xml.UpdateChildContent("soapenv:Header","");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Policy","STOP_ON_FIRST_ERROR");
xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:PackageId",123456);
xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Parcels|dpd:Parcel|dpd:ParcelId",123456);
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Parcels|dpd:Parcel|dpd:Reference","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Parcels|dpd:Parcel|dpd:Waybill","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Reference","string");
xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:Session|dpd:SessionId",123456);
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Address","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:City","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Company","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:CountryCode","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Email","string");
xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Fid",1042);
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Name","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Phone","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:PostalCode","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:DeliveryDestinations|dpd:DeliveryDestination|dpd:DepotList|dpd:ProtocolDepot|dpd:Number","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:DeliveryDestinations|dpd:DeliveryDestination|dpd:DestinationName","string");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:dpdServicesParamsV2|dpd:GenProtForNonMatching","true");
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:authDataV1|dpd:login","string");
xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:authDataV1|dpd:masterFid",1042);
xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV1|dpd:authDataV1|dpd:password","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.EmitXmlDecl = false;
string soapRequestBody = xml.GetXml();

string endpoint = "https://dpdservicesdemo.dpd.com.pl/DPDPackageObjServicesService/DPDPackageObjServices";
string soapAction = "";
//  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
string contentType = "text/xml";

Chilkat.Http http = new Chilkat.Http();

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

Chilkat.HttpResponse resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    Debug.WriteLine("Failed to send SOAP request.");
    return;
}

// Get the XML response body.
Chilkat.Xml responseXml = new Chilkat.Xml();
resp.GetBodyXml(responseXml);

int statusCode = resp.StatusCode;
Debug.WriteLine("response status code: " + Convert.ToString(statusCode));

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if (statusCode != 200) {
    Debug.WriteLine(responseXml.GetXml());
    return;
}

Debug.WriteLine(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).

string DestinationName = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DestinationDataList|*:DestinationsData|*:DestinationName");
string DocumentId = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DestinationDataList|*:DestinationsData|*:DocumentId");
string Domestic = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DestinationDataList|*:DestinationsData|*:Domestic");
string DocumentData = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DocumentData");
string waybill = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:nonMatchingDataList|*:waybill");
int packageId = responseXml.GetChildIntValue("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:packageId");
int parcelId = responseXml.GetChildIntValue("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:parcelId");
string reference = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:reference");
string Description = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:statusInfo|*:Description");
string Status = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:statusInfo|*:Status");
waybill = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:waybill");
reference = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:reference");
Description = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:statusInfo|*:Description");
Status = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:statusInfo|*:Status");
int SessionId = responseXml.GetChildIntValue("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:SessionId");
Description = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:StatusInfo|*:Description");
Status = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV1Response|*: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:generateProtocolsWithDestinationsV1>
            <dpd:dpdServicesParamsV2>
                <dpd:Policy>STOP_ON_FIRST_ERROR</dpd:Policy>
                <dpd:Session>
                    <dpd:Packages>
                        <dpd:Package>
                            <dpd:PackageId>123456</dpd:PackageId>
                            <dpd:Parcels>
                                <dpd:Parcel>
                                    <dpd:ParcelId>123456</dpd:ParcelId>
                                    <dpd:Reference>string</dpd:Reference>
                                    <dpd:Waybill>string</dpd:Waybill>
                                </dpd:Parcel>
                            </dpd:Parcels>
                            <dpd:Reference>string</dpd:Reference>
                        </dpd:Package>
                    </dpd:Packages>
                    <dpd:SessionId>123456</dpd:SessionId>
                </dpd:Session>
                <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:DeliveryDestinations>
                    <dpd:DeliveryDestination>
                        <dpd:DepotList>
                            <dpd:ProtocolDepot>
                                <dpd:Number>string</dpd:Number>
                            </dpd:ProtocolDepot>
                        </dpd:DepotList>
                        <dpd:DestinationName>string</dpd:DestinationName>
                    </dpd:DeliveryDestination>
                </dpd:DeliveryDestinations>
                <dpd:GenProtForNonMatching>true</dpd:GenProtForNonMatching>
            </dpd:dpdServicesParamsV2>
            <dpd:authDataV1>
                <dpd:login>string</dpd:login>
                <dpd:masterFid>1042</dpd:masterFid>
                <dpd:password>string</dpd:password>
            </dpd:authDataV1>
        </dpd:generateProtocolsWithDestinationsV1>
    </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:generateProtocolsWithDestinationsV1Response>
            <dpd:return>
                <dpd:DestinationDataList>
                    <dpd:DestinationsData>
                        <dpd:DestinationName>string</dpd:DestinationName>
                        <dpd:DocumentId>string</dpd:DocumentId>
                        <dpd:Domestic>true</dpd:Domestic>
                    </dpd:DestinationsData>
                </dpd:DestinationDataList>
                <dpd:DocumentData>BqozVXeZZg==</dpd:DocumentData>
                <dpd:nonMatchingDataList>
                    <dpd:waybill>string</dpd:waybill>
                </dpd:nonMatchingDataList>
                <dpd:Session>
                    <dpd:Packages>
                        <dpd:Package>
                            <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>string</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>string</dpd:Status>
                            </dpd:statusInfo>
                        </dpd:Package>
                    </dpd:Packages>
                    <dpd:SessionId>123456</dpd:SessionId>
                    <dpd:StatusInfo>
                        <dpd:Description>string</dpd:Description>
                        <dpd:Status>string</dpd:Status>
                    </dpd:StatusInfo>
                </dpd:Session>
            </dpd:return>
        </dpd:generateProtocolsWithDestinationsV1Response>
    </soapenv:Body>
</soapenv:Envelope>