SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / getRepairtimeSubnodesTextSearchV4

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 Chilkat.Xml
xml.Tag = "soapenv:Envelope"
Dim success As Boolean
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:getRepairtimeSubnodesTextSearchV4|intf:vrid","xml"
xml.UpdateChildContent "soapenv:Body|intf:getRepairtimeSubnodesTextSearchV4|intf:descriptionLanguage","xml"
xml.UpdateChildContent "soapenv:Body|intf:getRepairtimeSubnodesTextSearchV4|intf:repairtimeTypeId","xml"
xml.UpdateChildContent "soapenv:Body|intf:getRepairtimeSubnodesTextSearchV4|intf:typeCategory","xml"
xml.UpdateChildContent "soapenv:Body|intf:getRepairtimeSubnodesTextSearchV4|intf:nodeId","xml"
xml.UpdateChildContent "soapenv:Body|intf:getRepairtimeSubnodesTextSearchV4|intf:searchText","xml"
xml.UpdateChildContent "soapenv:Body|intf:getRepairtimeSubnodesTextSearchV4|intf:carTypeGroup","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 = False
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 Chilkat.Http

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

Dim resp As Chilkat.HttpResponse
resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    System.DebugLog("Failed to send SOAP request.")
    Return
End If

// Get the XML response body.
Dim responseXml As New Chilkat.Xml
success = resp.GetBodyXml(responseXml)

Dim statusCode As Int32
statusCode = resp.StatusCode
System.DebugLog("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) Then
    System.DebugLog(responseXml.GetXml())
    Return
End If

System.DebugLog(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 awNumber As String
awNumber = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:awNumber")
Dim description As String
description = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:description")
description = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:genarts|*:item|*:description")
Dim id As String
id = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:genarts|*:item|*:id")
Dim mandatory As String
mandatory = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:genarts|*:item|*:mandatory")
Dim hasInfoGroups As String
hasInfoGroups = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:hasInfoGroups")
Dim hasSubnodes As String
hasSubnodes = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:hasSubnodes")
id = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:id")
Dim jobType As String
jobType = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:jobType")
Dim oeCode As String
oeCode = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:oeCode")
Dim order As String
order = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:order")
Dim confirmationLink As String
confirmationLink = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:status|*:confirmationLink")
Dim statusCode As String
statusCode = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:status|*:statusCode")
Dim criteriaId As String
criteriaId = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaId")
Dim criteriaLevel As String
criteriaLevel = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel")
description = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupCriterias|*:item|*:description")
Dim value1 As String
value1 = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value1")
Dim value2 As String
value2 = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupCriterias|*:item|*:value2")
Dim groupDescription As String
groupDescription = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupDescription")
Dim groupId As String
groupId = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:timeCriterias|*:item|*:groupId")
Dim value As String
value = responseXml.GetChildContent("*:Body|*:getRepairtimeSubnodesTextSearchV4Response|*:getRepairtimeSubnodesTextSearchV4Return|*:value")
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:getRepairtimeSubnodesTextSearchV4>
            <intf:vrid>xml</intf:vrid>
            <intf:descriptionLanguage>xml</intf:descriptionLanguage>
            <intf:repairtimeTypeId>xml</intf:repairtimeTypeId>
            <intf:typeCategory>xml</intf:typeCategory>
            <intf:nodeId>xml</intf:nodeId>
            <intf:searchText>xml</intf:searchText>
            <intf:carTypeGroup>xml</intf:carTypeGroup>
        </intf:getRepairtimeSubnodesTextSearchV4>
    </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:getRepairtimeSubnodesTextSearchV4Response>
            <intf:getRepairtimeSubnodesTextSearchV4Return>
                <intf:awNumber>xml</intf:awNumber>
                <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:hasInfoGroups>xml</intf:hasInfoGroups>
                <intf:hasSubnodes>xml</intf:hasSubnodes>
                <intf:id>xml</intf:id>
                <intf:jobType>xml</intf:jobType>
                <intf:oeCode>xml</intf:oeCode>
                <intf:order>xml</intf:order>
                <intf:status>
                    <intf:confirmationLink>xml</intf:confirmationLink>
                    <intf:statusCode>xml</intf:statusCode>
                </intf:status>
                <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:getRepairtimeSubnodesTextSearchV4Return>
        </intf:getRepairtimeSubnodesTextSearchV4Response>
    </soapenv:Body>
</soapenv:Envelope>