SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / processMaintenanceRepairTasks2

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
import sys
import chilkat

xml = chilkat.CkXml()
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:processMaintenanceRepairTasks2|intf:vrid","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:descriptionLanguage","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:carTypeId","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:maintenanceSystemId","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:maintenancePeriodIds","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:repairtimeTypeId","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:ids","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:vatRate","xml")
xml.UpdateChildContent("soapenv:Body|intf:processMaintenanceRepairTasks2|intf:labourRate","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)
soapRequestBody = xml.getXml()

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

http = chilkat.CkHttp()

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

# resp is a CkHttpResponse
resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
if (http.get_LastMethodSuccess() == False):
    print(http.lastErrorText())
    print("Failed to send SOAP request.")
    sys.exit()

# Get the XML response body.
responseXml = chilkat.CkXml()
resp.GetBodyXml(responseXml)

statusCode = resp.get_StatusCode()
print("response status code: " + str(statusCode))

# If the status code does not indicate succcess, then show the response XML,
# which probably contains error information.
if (statusCode != 200):
    print(responseXml.getXml())
    sys.exit()

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

item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:calculatedTimes|*:item")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:descriptions|*:item")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:genarts|*:item")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:ids|*:item")
price = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:price")
awNumber = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:followUpWorkList|*:item|*:awNumber")
description = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:followUpWorkList|*:item|*:description")
direction = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:followUpWorkList|*:item|*:direction")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:followUpWorkList|*:item|*:genarts|*:item")
hasInfoGroups = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:followUpWorkList|*:item|*:hasInfoGroups")
value = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:followUpWorkList|*:item|*:value")
awNumber = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:includedList|*:item|*:awNumber")
description = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:includedList|*:item|*:description")
direction = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:includedList|*:item|*:direction")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:includedList|*:item|*:genarts|*:item")
hasInfoGroups = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:includedList|*:item|*:hasInfoGroups")
value = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:includedList|*:item|*:value")
nodeId = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:nodeId")
awNumber = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:notIncludedList|*:item|*:awNumber")
description = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:notIncludedList|*:item|*:description")
direction = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:notIncludedList|*:item|*:direction")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:notIncludedList|*:item|*:genarts|*:item")
hasInfoGroups = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:notIncludedList|*:item|*:hasInfoGroups")
value = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:notIncludedList|*:item|*:value")
awNumber = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:preliminaryList|*:item|*:awNumber")
description = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:preliminaryList|*:item|*:description")
direction = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:preliminaryList|*:item|*:direction")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:preliminaryList|*:item|*:genarts|*:item")
hasInfoGroups = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:preliminaryList|*:item|*:hasInfoGroups")
value = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:preliminaryList|*:item|*:value")
confirmationLink = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:status|*:confirmationLink")
statusCode = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:repairtimesInfos|*:item|*:status|*:statusCode")
confirmationLink = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:status|*:confirmationLink")
statusCode = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:status|*:statusCode")
item = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:subtotal|*:item")
totalPrice = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:totalPrice")
totalTime = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:totalTime")
vat = responseXml.getChildContent("*:Body|*:processMaintenanceRepairTasks2Response|*:processMaintenanceRepairTasks2Return|*:vat")
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:processMaintenanceRepairTasks2>
            <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:ids>xml</intf:ids>
            <intf:vatRate>xml</intf:vatRate>
            <intf:labourRate>xml</intf:labourRate>
        </intf:processMaintenanceRepairTasks2>
    </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:processMaintenanceRepairTasks2Response>
            <intf:processMaintenanceRepairTasks2Return>
                <intf:calculatedTimes>
                    <intf:item>xml</intf:item>
                </intf:calculatedTimes>
                <intf:descriptions>
                    <intf:item>xml</intf:item>
                </intf:descriptions>
                <intf:genarts>
                    <intf:item>xml</intf:item>
                </intf:genarts>
                <intf:ids>
                    <intf:item>xml</intf:item>
                </intf:ids>
                <intf:price>xml</intf:price>
                <intf:repairtimesInfos>
                    <intf:item>
                        <intf:followUpWorkList>
                            <intf:item>
                                <intf:awNumber>xml</intf:awNumber>
                                <intf:description>xml</intf:description>
                                <intf:direction>xml</intf:direction>
                                <intf:genarts>
                                    <intf:item>xml</intf:item>
                                </intf:genarts>
                                <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                <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:genarts>
                                    <intf:item>xml</intf:item>
                                </intf:genarts>
                                <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                <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:genarts>
                                    <intf:item>xml</intf:item>
                                </intf:genarts>
                                <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                <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:genarts>
                                    <intf:item>xml</intf:item>
                                </intf:genarts>
                                <intf:hasInfoGroups>xml</intf:hasInfoGroups>
                                <intf:value>xml</intf:value>
                            </intf:item>
                        </intf:preliminaryList>
                        <intf:status>
                            <intf:confirmationLink>xml</intf:confirmationLink>
                            <intf:statusCode>xml</intf:statusCode>
                        </intf:status>
                    </intf:item>
                </intf:repairtimesInfos>
                <intf:status>
                    <intf:confirmationLink>xml</intf:confirmationLink>
                    <intf:statusCode>xml</intf:statusCode>
                </intf:status>
                <intf:subtotal>
                    <intf:item>xml</intf:item>
                </intf:subtotal>
                <intf:totalPrice>xml</intf:totalPrice>
                <intf:totalTime>xml</intf:totalTime>
                <intf:vat>xml</intf:vat>
            </intf:processMaintenanceRepairTasks2Return>
        </intf:processMaintenanceRepairTasks2Response>
    </soapenv:Body>
</soapenv:Envelope>