SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / processRepairTasksV4

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 <C_CkXmlW.h>
#include <C_CkHttpW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkXmlW xml;
    const wchar_t *soapRequestBody;
    const wchar_t *endpoint;
    const wchar_t *soapAction;
    const wchar_t *contentType;
    HCkHttpW http;
    HCkHttpResponseW resp;
    HCkXmlW responseXml;
    int statusCode;
    const wchar_t *calculatedTime;
    const wchar_t *description;
    const wchar_t *id;
    const wchar_t *mandatory;
    const wchar_t *jobType;
    const wchar_t *oeCode;
    const wchar_t *priceWithoutVat;
    const wchar_t *awNumber;
    const wchar_t *direction;
    const wchar_t *hasInfoGroups;
    const wchar_t *criteriaId;
    const wchar_t *criteriaLevel;
    const wchar_t *value1;
    const wchar_t *value2;
    const wchar_t *groupDescription;
    const wchar_t *groupId;
    const wchar_t *value;
    const wchar_t *nodeId;
    const wchar_t *confirmationLink;
    const wchar_t *statusCode;
    const wchar_t *subtotal;
    const wchar_t *vat;
    const wchar_t *repairPriceWithoutVat;
    const wchar_t *repairTasksVat;
    const wchar_t *totalRepairPrice;
    const wchar_t *totalRepairTime;

    xml = CkXmlW_Create();
    CkXmlW_putTag(xml,L"soapenv:Envelope");
    CkXmlW_AddAttribute(xml,L"xmlns:intf",L"http://data.webservice.workshop.vivid.nl");
    CkXmlW_AddAttribute(xml,L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Header",L"");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:vrid",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:descriptionLanguage",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:carTypeId",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:maintenanceSystemId",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:maintenancePeriodIds",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:repairtimeTypeId",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:typeCategory",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:maintenanceTaskIds",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:useMaintenanceTasks",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:repairTaskIds",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:repairVatRates",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:labourRateMechanical",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:labourRateBody",L"xml");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|intf:processRepairTasksV4|intf:labourRateElectronics",L"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. 
    CkXmlW_putEmitXmlDecl(xml,FALSE);
    soapRequestBody = CkXmlW_getXml(xml);

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

    http = CkHttpW_Create();

    CkHttpW_ClearHeaders(http);
    CkHttpW_SetRequestHeader(http,L"Content-Type",contentType);
    CkHttpW_SetRequestHeader(http,L"SOAPAction",soapAction);

    resp = CkHttpW_PostXml(http,endpoint,soapRequestBody,L"utf-8");
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        wprintf(L"Failed to send SOAP request.\n");
        CkXmlW_Dispose(xml);
        CkHttpW_Dispose(http);
        return;
    }

    // Get the XML response body.
    responseXml = CkXmlW_Create();
    CkHttpResponseW_GetBodyXml(resp,responseXml);

    statusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"response status code: %d\n",statusCode);

    CkHttpResponseW_Dispose(resp);

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if (statusCode != 200) {
        wprintf(L"%s\n",CkXmlW_getXml(responseXml));
        CkXmlW_Dispose(xml);
        CkHttpW_Dispose(http);
        CkXmlW_Dispose(responseXml);
        return;
    }

    wprintf(L"%s\n",CkXmlW_getXml(responseXml));

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

    calculatedTime = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:calculatedTime");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:description");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:genarts|*:item|*:description");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:genarts|*:item|*:id");
    mandatory = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:genarts|*:item|*:mandatory");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:id");
    jobType = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:jobType");
    oeCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:oeCode");
    priceWithoutVat = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:priceWithoutVat");
    awNumber = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:awNumber");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:description");
    direction = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:direction");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:generalArticles|*:item|*:description");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:generalArticles|*:item|*:id");
    mandatory = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:hasInfoGroups");
    jobType = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:jobType");
    oeCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:oeCode");
    criteriaId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaId");
    criteriaLevel = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:description");
    value1 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value1");
    value2 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value2");
    groupDescription = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupDescription");
    groupId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:timeCriterias|*:item|*:groupId");
    value = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:value");
    awNumber = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:awNumber");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:description");
    direction = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:direction");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:generalArticles|*:item|*:description");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:generalArticles|*:item|*:id");
    mandatory = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:hasInfoGroups");
    jobType = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:jobType");
    oeCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:oeCode");
    criteriaId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaId");
    criteriaLevel = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:description");
    value1 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value1");
    value2 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value2");
    groupDescription = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupDescription");
    groupId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:timeCriterias|*:item|*:groupId");
    value = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:includedList|*:item|*:value");
    nodeId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:nodeId");
    awNumber = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:awNumber");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:description");
    direction = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:direction");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:generalArticles|*:item|*:description");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:generalArticles|*:item|*:id");
    mandatory = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:hasInfoGroups");
    jobType = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:jobType");
    oeCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:oeCode");
    criteriaId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaId");
    criteriaLevel = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:description");
    value1 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value1");
    value2 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value2");
    groupDescription = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupDescription");
    groupId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:timeCriterias|*:item|*:groupId");
    value = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:notIncludedList|*:item|*:value");
    awNumber = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:awNumber");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:description");
    direction = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:direction");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:generalArticles|*:item|*:description");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:generalArticles|*:item|*:id");
    mandatory = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:generalArticles|*:item|*:mandatory");
    hasInfoGroups = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:hasInfoGroups");
    jobType = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:jobType");
    oeCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:oeCode");
    criteriaId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaId");
    criteriaLevel = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:description");
    value1 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value1");
    value2 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value2");
    groupDescription = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupDescription");
    groupId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:timeCriterias|*:item|*:groupId");
    value = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:preliminaryList|*:item|*:value");
    confirmationLink = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:status|*:confirmationLink");
    statusCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:repairtimesInfo|*:status|*:statusCode");
    subtotal = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:subtotal");
    criteriaId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaId");
    criteriaLevel = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel");
    description = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:description");
    value1 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value1");
    value2 = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value2");
    groupDescription = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupDescription");
    groupId = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:timeCriterias|*:item|*:groupId");
    vat = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:basketItems|*:item|*:vat");
    repairPriceWithoutVat = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:repairPriceWithoutVat");
    repairTasksVat = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:repairTasksVat");
    confirmationLink = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:status|*:confirmationLink");
    statusCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:status|*:statusCode");
    totalRepairPrice = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:totalRepairPrice");
    totalRepairTime = CkXmlW_getChildContent(responseXml,L"*:Body|*:processRepairTasksV4Response|*:processRepairTasksV4Return|*:totalRepairTime");


    CkXmlW_Dispose(xml);
    CkHttpW_Dispose(http);
    CkXmlW_Dispose(responseXml);

    }
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:processRepairTasksV4>
            <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:processRepairTasksV4>
    </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:processRepairTasksV4Response>
            <intf:processRepairTasksV4Return>
                <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:oeCode>xml</intf:oeCode>
                        <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:oeCode>xml</intf:oeCode>
                                    <intf:timeCriterias>
                                        <intf:item>
                                            <intf:groupCriterias>
                                                <intf:item>
                                                    <intf:criteriaId>xml</intf:criteriaId>
                                                    <intf:criteriaLevel>xml</intf:criteriaLevel>
                                                    <intf:description>xml</intf:description>
                                                    <intf:value1>xml</intf:value1>
                                                    <intf:value2>xml</intf:value2>
                                                </intf:item>
                                            </intf:groupCriterias>
                                            <intf:groupDescription>xml</intf:groupDescription>
                                            <intf:groupId>xml</intf:groupId>
                                        </intf:item>
                                    </intf:timeCriterias>
                                    <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:oeCode>xml</intf:oeCode>
                                    <intf:timeCriterias>
                                        <intf:item>
                                            <intf:groupCriterias>
                                                <intf:item>
                                                    <intf:criteriaId>xml</intf:criteriaId>
                                                    <intf:criteriaLevel>xml</intf:criteriaLevel>
                                                    <intf:description>xml</intf:description>
                                                    <intf:value1>xml</intf:value1>
                                                    <intf:value2>xml</intf:value2>
                                                </intf:item>
                                            </intf:groupCriterias>
                                            <intf:groupDescription>xml</intf:groupDescription>
                                            <intf:groupId>xml</intf:groupId>
                                        </intf:item>
                                    </intf:timeCriterias>
                                    <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:oeCode>xml</intf:oeCode>
                                    <intf:timeCriterias>
                                        <intf:item>
                                            <intf:groupCriterias>
                                                <intf:item>
                                                    <intf:criteriaId>xml</intf:criteriaId>
                                                    <intf:criteriaLevel>xml</intf:criteriaLevel>
                                                    <intf:description>xml</intf:description>
                                                    <intf:value1>xml</intf:value1>
                                                    <intf:value2>xml</intf:value2>
                                                </intf:item>
                                            </intf:groupCriterias>
                                            <intf:groupDescription>xml</intf:groupDescription>
                                            <intf:groupId>xml</intf:groupId>
                                        </intf:item>
                                    </intf:timeCriterias>
                                    <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:oeCode>xml</intf:oeCode>
                                    <intf:timeCriterias>
                                        <intf:item>
                                            <intf:groupCriterias>
                                                <intf:item>
                                                    <intf:criteriaId>xml</intf:criteriaId>
                                                    <intf:criteriaLevel>xml</intf:criteriaLevel>
                                                    <intf:description>xml</intf:description>
                                                    <intf:value1>xml</intf:value1>
                                                    <intf:value2>xml</intf:value2>
                                                </intf:item>
                                            </intf:groupCriterias>
                                            <intf:groupDescription>xml</intf:groupDescription>
                                            <intf:groupId>xml</intf:groupId>
                                        </intf:item>
                                    </intf:timeCriterias>
                                    <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:timeCriterias>
                            <intf:item>
                                <intf:groupCriterias>
                                    <intf:item>
                                        <intf:criteriaId>xml</intf:criteriaId>
                                        <intf:criteriaLevel>xml</intf:criteriaLevel>
                                        <intf:description>xml</intf:description>
                                        <intf:value1>xml</intf:value1>
                                        <intf:value2>xml</intf:value2>
                                    </intf:item>
                                </intf:groupCriterias>
                                <intf:groupDescription>xml</intf:groupDescription>
                                <intf:groupId>xml</intf:groupId>
                            </intf:item>
                        </intf:timeCriterias>
                        <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:processRepairTasksV4Return>
        </intf:processRepairTasksV4Response>
    </soapenv:Body>
</soapenv:Envelope>