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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
set xml = Server.CreateObject("Chilkat_9_5_0.Xml")
xml.Tag = "soapenv:Envelope"
success = xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
success = 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 = 0
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"

set http = Server.CreateObject("Chilkat_9_5_0.Http")

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

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( "Failed to send SOAP request.") & "</pre>"
    Response.End
End If

' Get the XML response body.
set responseXml = Server.CreateObject("Chilkat_9_5_0.Xml")
success = resp.GetBodyXml(responseXml)

statusCode = resp.StatusCode
Response.Write "<pre>" & Server.HTMLEncode( "response status code: " & statusCode) & "</pre>"

' If the status code does not indicate succcess, then show the response XML,
' which probably contains error information.
If (statusCode <> 200) Then
    Response.Write "<pre>" & Server.HTMLEncode( responseXml.GetXml()) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( responseXml.GetXml()) & "</pre>"

' 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")

%>
</body>
</html>
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>