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
<?php

include("chilkat_9_5_0.php");

$xml = new CkXml();
$xml->put_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->put_EmitXmlDecl(false);
$soapRequestBody = $xml->getXml();

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

$http = new CkHttp();

$http->ClearHeaders();
$http->SetRequestHeader('Content-Type',$contentType);
$http->SetRequestHeader('SOAPAction',$soapAction);

// resp is a CkHttpResponse
$resp = $http->PostXml($endpoint,$soapRequestBody,'utf-8');
if ($http->get_LastMethodSuccess() == false) {
    print $http->lastErrorText() . "\n";
    print 'Failed to send SOAP request.' . "\n";
    exit;
}

// Get the XML response body.
$responseXml = new CkXml();
$resp->GetBodyXml($responseXml);

$statusCode = $resp->get_StatusCode();
print 'response status code: ' . $statusCode . "\n";

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if ($statusCode != 200) {
    print $responseXml->getXml() . "\n";
    exit;
}

print $responseXml->getXml() . "\n";

// 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).

$DestinationName = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DestinationDataList|*:DestinationsData|*:DestinationName');
$DocumentId = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DestinationDataList|*:DestinationsData|*:DocumentId');
$Domestic = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DestinationDataList|*:DestinationsData|*:Domestic');
$DocumentData = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:DocumentData');
$waybill = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:nonMatchingDataList|*:waybill');
$packageId = $responseXml->GetChildIntValue('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:packageId');
$parcelId = $responseXml->GetChildIntValue('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:parcelId');
$reference = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:reference');
$Description = $responseXml->getChildContent('*:Body|*:generateProtocolsWithDestinationsV1Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:statusInfo|*:Description');
$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');
$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>