SOAP WSDL Generate Code

DPDPackageObjServicesServiceSoapBinding / generateProtocolsWithDestinationsV2

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
    xml := chilkat.NewXml()
    xml.SetTag("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:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Policy","STOP_ON_FIRST_ERROR")
    xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:PackageId",123456)
    xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Parcels|dpd:Parcel|dpd:ParcelId",123456)
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Parcels|dpd:Parcel|dpd:Reference","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Parcels|dpd:Parcel|dpd:Waybill","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Session|dpd:Packages|dpd:Package|dpd:Reference","string")
    xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:Session|dpd:SessionId",123456)
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Address","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:City","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Company","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:CountryCode","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Email","string")
    xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Fid",1042)
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Name","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:Phone","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:PickupAddress|dpd:PostalCode","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:DeliveryDestinations|dpd:DeliveryDestination|dpd:DepotList|dpd:ProtocolDepot|dpd:Number","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:DeliveryDestinations|dpd:DeliveryDestination|dpd:DestinationName","string")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:dpdServicesParamsV2|dpd:GenProtForNonMatching","true")
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:authDataV1|dpd:login","string")
    xml.UpdateChildContentInt("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|dpd:authDataV1|dpd:masterFid",1042)
    xml.UpdateChildContent("soapenv:Body|dpd:generateProtocolsWithDestinationsV2|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.SetEmitXmlDecl(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 := chilkat.NewHttp()

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

    resp := http.PostXml(endpoint,*soapRequestBody,"utf-8")
    if http.LastMethodSuccess() == false {
        fmt.Println(http.LastErrorText())
        fmt.Println("Failed to send SOAP request.")
        xml.DisposeXml()
        http.DisposeHttp()
        return
    }

    // Get the XML response body.
    responseXml := chilkat.NewXml()
    resp.GetBodyXml(responseXml)

    statusCode := resp.StatusCode()
    fmt.Println("response status code: ", statusCode)

    resp.DisposeHttpResponse()

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if statusCode != 200 {
        fmt.Println(*responseXml.GetXml())
        xml.DisposeXml()
        http.DisposeHttp()
        responseXml.DisposeXml()
        return
    }

    fmt.Println(*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).

    DestinationName := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:DestinationDataList|*:DestinationsData|*:DestinationName")
    DocumentId := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:DestinationDataList|*:DestinationsData|*:DocumentId")
    Domestic := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:DestinationDataList|*:DestinationsData|*:Domestic")
    DocumentData := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:DocumentData")
    waybill := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:nonMatchingDataList|*:waybill")
    packageId := responseXml.GetChildIntValue("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:packageId")
    parcelId := responseXml.GetChildIntValue("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:parcelId")
    reference := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:reference")
    Description := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:statusInfo|*:Description")
    Status := responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:statusInfo|*:Status")
    waybill = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:parcels|*:waybill")
    reference = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:reference")
    Description = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:statusInfo|*:Description")
    Status = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:Packages|*:Package|*:statusInfo|*:Status")
    SessionId := responseXml.GetChildIntValue("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:SessionId")
    Description = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:StatusInfo|*:Description")
    Status = responseXml.GetChildContent("*:Body|*:generateProtocolsWithDestinationsV2Response|*:return|*:Session|*:StatusInfo|*:Status")

    xml.DisposeXml()
    http.DisposeHttp()
    responseXml.DisposeXml()
Request XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dpd="http://dpdservices.dpd.com.pl/">
    <soapenv:Header/>
    <soapenv:Body>
        <dpd:generateProtocolsWithDestinationsV2>
            <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:generateProtocolsWithDestinationsV2>
    </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:generateProtocolsWithDestinationsV2Response>
            <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:generateProtocolsWithDestinationsV2Response>
    </soapenv:Body>
</soapenv:Envelope>