SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / processRepairTasksV3

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 <CkXml.h>
#include <CkHttp.h>
#include <CkHttpResponse.h>

void ChilkatSample(void)
    {
    CkXml xml;
    xml.put_Tag("soapenv:Envelope");
    xml.AddAttribute("xmlns:intf","http://data.webservice.workshop.vivid.nl");
    xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
    xml.UpdateChildContent("soapenv:Header","");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:vrid","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:descriptionLanguage","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:carTypeId","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:maintenanceSystemId","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:maintenancePeriodIds","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:repairtimeTypeId","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:typeCategory","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:maintenanceTaskIds","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:useMaintenanceTasks","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:repairTaskIds","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:repairVatRates","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:labourRateMechanical","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:labourRateBody","xml");
    xml.UpdateChildContent("soapenv:Body|intf:processRepairTasksV3|intf:labourRateElectronics","xml");

    // 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 char *soapRequestBody = xml.getXml();

    const char *endpoint = "http://www.haynespro-services.com/workshopServices3/services/DataServiceEndpoint";
    const char *soapAction = "";
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    const char *contentType = "text/xml";

    CkHttp http;

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

    CkHttpResponse *resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
    if (http.get_LastMethodSuccess() == false) {
        std::cout << http.lastErrorText() << "\r\n";
        std::cout << "Failed to send SOAP request." << "\r\n";
        return;
    }

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

    int statusCode = resp->get_StatusCode();
    std::cout << "response status code: " << statusCode << "\r\n";

    delete resp;

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if (statusCode != 200) {
        std::cout << responseXml.getXml() << "\r\n";
        return;
    }

    std::cout << responseXml.getXml() << "\r\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).

    const char *calculatedTime = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:calculatedTime");
    const char *description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:description");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:genarts|*:item|*:description");
    const char *id = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:genarts|*:item|*:id");
    const char *mandatory = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:genarts|*:item|*:mandatory");
    id = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:id");
    const char *jobType = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:jobType");
    const char *priceWithoutVat = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:priceWithoutVat");
    const char *awNumber = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:awNumber");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:description");
    const char *direction = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:direction");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:generalArticles|*:item|*:description");
    id = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:generalArticles|*:item|*:id");
    mandatory = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:generalArticles|*:item|*:mandatory");
    const char *hasInfoGroups = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:hasInfoGroups");
    jobType = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:jobType");
    const char *value = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:value");
    awNumber = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:awNumber");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:description");
    direction = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:direction");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:generalArticles|*:item|*:description");
    id = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:generalArticles|*:item|*:id");
    mandatory = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:hasInfoGroups");
    jobType = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:jobType");
    value = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:value");
    const char *nodeId = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:nodeId");
    awNumber = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:awNumber");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:description");
    direction = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:direction");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:generalArticles|*:item|*:description");
    id = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:generalArticles|*:item|*:id");
    mandatory = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:hasInfoGroups");
    jobType = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:jobType");
    value = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:value");
    awNumber = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:awNumber");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:description");
    direction = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:direction");
    description = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:generalArticles|*:item|*:description");
    id = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:generalArticles|*:item|*:id");
    mandatory = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:hasInfoGroups");
    jobType = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:jobType");
    value = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:value");
    const char *confirmationLink = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:status|*:confirmationLink");
    const char *statusCode = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:status|*:statusCode");
    const char *subtotal = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:subtotal");
    const char *vat = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:vat");
    const char *repairPriceWithoutVat = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:repairPriceWithoutVat");
    const char *repairTasksVat = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:repairTasksVat");
    confirmationLink = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:status|*:confirmationLink");
    statusCode = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:status|*:statusCode");
    const char *totalRepairPrice = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:totalRepairPrice");
    const char *totalRepairTime = responseXml.getChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:totalRepairTime");
    }
Request XML
<soapenv:Envelope xmlns:intf="http://data.webservice.workshop.vivid.nl" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <intf:processRepairTasksV3>
            <intf:vrid>xml</intf:vrid>
            <intf:descriptionLanguage>xml</intf:descriptionLanguage>
            <intf:carTypeId>xml</intf:carTypeId>
            <intf:maintenanceSystemId>xml</intf:maintenanceSystemId>
            <intf:maintenancePeriodIds>xml</intf:maintenancePeriodIds>
            <intf:repairtimeTypeId>xml</intf:repairtimeTypeId>
            <intf:typeCategory>xml</intf:typeCategory>
            <intf:maintenanceTaskIds>xml</intf:maintenanceTaskIds>
            <intf:useMaintenanceTasks>xml</intf:useMaintenanceTasks>
            <intf:repairTaskIds>xml</intf:repairTaskIds>
            <intf:repairVatRates>xml</intf:repairVatRates>
            <intf:labourRateMechanical>xml</intf:labourRateMechanical>
            <intf:labourRateBody>xml</intf:labourRateBody>
            <intf:labourRateElectronics>xml</intf:labourRateElectronics>
        </intf:processRepairTasksV3>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:intf="http://data.webservice.workshop.vivid.nl" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <intf:processRepairTasksV3Response>
            <intf:processRepairTasksV3Return>
                <intf:basketItems>
                    <intf:item>
                        <intf:calculatedTime>xml</intf:calculatedTime>
                        <intf:description>xml</intf:description>
                        <intf:genarts>
                            <intf:item>
                                <intf:description>xml</intf:description>
                                <intf:id>xml</intf:id>
                                <intf:mandatory>xml</intf:mandatory>
                            </intf:item>
                        </intf:genarts>
                        <intf:id>xml</intf:id>
                        <intf:jobType>xml</intf:jobType>
                        <intf:priceWithoutVat>xml</intf:priceWithoutVat>
                        <intf:repairtimesInfo>
                            <intf:followUpWorkList>
                                <intf:item>
                                    <intf:awNumber>xml</intf:awNumber>
                                    <intf:description>xml</intf:description>
                                    <intf:direction>xml</intf:direction>
                                    <intf:generalArticles>
                                        <intf:item>
                                            <intf:description>xml</intf:description>
                                            <intf:id>xml</intf:id>
                                            <intf:mandatory>xml</intf:mandatory>
                                        </intf:item>
                                    </intf:generalArticles>
                                    <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                    <intf:jobType>xml</intf:jobType>
                                    <intf:value>xml</intf:value>
                                </intf:item>
                            </intf:followUpWorkList>
                            <intf:includedList>
                                <intf:item>
                                    <intf:awNumber>xml</intf:awNumber>
                                    <intf:description>xml</intf:description>
                                    <intf:direction>xml</intf:direction>
                                    <intf:generalArticles>
                                        <intf:item>
                                            <intf:description>xml</intf:description>
                                            <intf:id>xml</intf:id>
                                            <intf:mandatory>xml</intf:mandatory>
                                        </intf:item>
                                    </intf:generalArticles>
                                    <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                    <intf:jobType>xml</intf:jobType>
                                    <intf:value>xml</intf:value>
                                </intf:item>
                            </intf:includedList>
                            <intf:nodeId>xml</intf:nodeId>
                            <intf:notIncludedList>
                                <intf:item>
                                    <intf:awNumber>xml</intf:awNumber>
                                    <intf:description>xml</intf:description>
                                    <intf:direction>xml</intf:direction>
                                    <intf:generalArticles>
                                        <intf:item>
                                            <intf:description>xml</intf:description>
                                            <intf:id>xml</intf:id>
                                            <intf:mandatory>xml</intf:mandatory>
                                        </intf:item>
                                    </intf:generalArticles>
                                    <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                    <intf:jobType>xml</intf:jobType>
                                    <intf:value>xml</intf:value>
                                </intf:item>
                            </intf:notIncludedList>
                            <intf:preliminaryList>
                                <intf:item>
                                    <intf:awNumber>xml</intf:awNumber>
                                    <intf:description>xml</intf:description>
                                    <intf:direction>xml</intf:direction>
                                    <intf:generalArticles>
                                        <intf:item>
                                            <intf:description>xml</intf:description>
                                            <intf:id>xml</intf:id>
                                            <intf:mandatory>xml</intf:mandatory>
                                        </intf:item>
                                    </intf:generalArticles>
                                    <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                    <intf:jobType>xml</intf:jobType>
                                    <intf:value>xml</intf:value>
                                </intf:item>
                            </intf:preliminaryList>
                            <intf:status>
                                <intf:confirmationLink>xml</intf:confirmationLink>
                                <intf:statusCode>xml</intf:statusCode>
                            </intf:status>
                        </intf:repairtimesInfo>
                        <intf:subtotal>xml</intf:subtotal>
                        <intf:vat>xml</intf:vat>
                    </intf:item>
                </intf:basketItems>
                <intf:repairPriceWithoutVat>xml</intf:repairPriceWithoutVat>
                <intf:repairTasksVat>xml</intf:repairTasksVat>
                <intf:status>
                    <intf:confirmationLink>xml</intf:confirmationLink>
                    <intf:statusCode>xml</intf:statusCode>
                </intf:status>
                <intf:totalRepairPrice>xml</intf:totalRepairPrice>
                <intf:totalRepairTime>xml</intf:totalRepairTime>
            </intf:processRepairTasksV3Return>
        </intf:processRepairTasksV3Response>
    </soapenv:Body>
</soapenv:Envelope>