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
Dim xml As New ChilkatXml
xml.Tag = "soapenv:Envelope"
success = xml.AddAttribute("xmlns:intf","http://data.webservice.workshop.vivid.nl")
success = 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.EmitXmlDecl = 0
Dim soapRequestBody As String
soapRequestBody = xml.GetXml()

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

Dim http As New ChilkatHttp

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

Dim resp As ChilkatHttpResponse
Set resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Debug.Print "Failed to send SOAP request."
    Exit Sub
End If

' Get the XML response body.
Dim responseXml As New ChilkatXml
success = resp.GetBodyXml(responseXml)

Dim statusCode As Long
statusCode = resp.StatusCode
Debug.Print "response status code: " & statusCode

' If the status code does not indicate succcess, then show the response XML,
' which probably contains error information.
If (statusCode <> 200) Then
    Debug.Print responseXml.GetXml()
    Exit Sub
End If

Debug.Print 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).

Dim calculatedTime As String
calculatedTime = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:calculatedTime")
Dim description As String
description = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:description")
description = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:genarts|*:item|*:description")
Dim id As String
id = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:genarts|*:item|*:id")
Dim mandatory As String
mandatory = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:genarts|*:item|*:mandatory")
id = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:id")
Dim jobType As String
jobType = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:jobType")
Dim priceWithoutVat As String
priceWithoutVat = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:priceWithoutVat")
Dim awNumber As String
awNumber = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:awNumber")
description = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:description")
Dim direction As String
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")
Dim hasInfoGroups As String
hasInfoGroups = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:hasInfoGroups")
jobType = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:followUpWorkList|*:item|*:jobType")
Dim value As String
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")
Dim nodeId As String
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")
Dim confirmationLink As String
confirmationLink = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:status|*:confirmationLink")
Dim statusCode As String
statusCode = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:repairtimesInfo|*:status|*:statusCode")
Dim subtotal As String
subtotal = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:subtotal")
Dim vat As String
vat = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:basketItems|*:item|*:vat")
Dim repairPriceWithoutVat As String
repairPriceWithoutVat = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:repairPriceWithoutVat")
Dim repairTasksVat As String
repairTasksVat = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:repairTasksVat")
confirmationLink = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:status|*:confirmationLink")
statusCode = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:status|*:statusCode")
Dim totalRepairPrice As String
totalRepairPrice = responseXml.GetChildContent("*:Body|*:processRepairTasksV3Response|*:processRepairTasksV3Return|*:totalRepairPrice")
Dim totalRepairTime As String
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>