SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / getAllModels

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
func chilkatTest() {
    let xml = CkoXml()
    xml.Tag = "soapenv:Envelope"
    xml.AddAttribute("xmlns:intf", value: "http://data.webservice.workshop.vivid.nl")
    xml.AddAttribute("xmlns:soapenv", value: "http://schemas.xmlsoap.org/soap/envelope/")
    xml.UpdateChildContent("soapenv:Header", value: "")
    xml.UpdateChildContent("soapenv:Body|intf:getAllModels|intf:vrid", value: "xml")
    xml.UpdateChildContent("soapenv:Body|intf:getAllModels|intf:makeId", value: "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
    var soapRequestBody: String? = xml.GetXml()

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

    let http = CkoHttp()

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

    var resp: CkoHttpResponse? = http.PostXml(endpoint, xmlDoc: soapRequestBody, charset: "utf-8")
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        print("Failed to send SOAP request.")
        return
    }

    // Get the XML response body.
    let responseXml = CkoXml()
    resp!.GetBodyXml(responseXml)

    var statusCode: Int = resp!.StatusCode.intValue
    print("response status code: \(statusCode)")

    resp = nil

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if statusCode != 200 {
        print("\(responseXml.GetXml())")
        return
    }

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

    var id: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:modelArray|*:item|*:id")
    var mo_make_id: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:modelArray|*:item|*:mo_make_id")
    var mo_name: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:modelArray|*:item|*:mo_name")
    var mo_sort_order: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:modelArray|*:item|*:mo_sort_order")
    var mo_used: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:modelArray|*:item|*:mo_used")
    var mo_years_build: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:modelArray|*:item|*:mo_years_build")
    var confirmationLink: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:status|*:confirmationLink")
    var statusCode: String? = responseXml.GetChildContent("*:Body|*:getAllModelsResponse|*:getAllModelsReturn|*:status|*:statusCode")

}
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:getAllModels>
            <intf:vrid>xml</intf:vrid>
            <intf:makeId>xml</intf:makeId>
        </intf:getAllModels>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tns2="http://datatypes.webservice.elecdata.vivid.nl" xmlns:tns1="http://datamodel.webservice.elecdata.vivid.nl" xmlns:intf="http://data.webservice.workshop.vivid.nl">
    <soapenv:Header/>
    <soapenv:Body>
        <intf:getAllModelsResponse>
            <intf:getAllModelsReturn>
                <tns1:modelArray>
                    <intf:item>
                        <tns2:id>xml</tns2:id>
                        <tns2:mo_make_id>xml</tns2:mo_make_id>
                        <tns2:mo_name>xml</tns2:mo_name>
                        <tns2:mo_sort_order>xml</tns2:mo_sort_order>
                        <tns2:mo_used>xml</tns2:mo_used>
                        <tns2:mo_years_build>xml</tns2:mo_years_build>
                    </intf:item>
                </tns1:modelArray>
                <tns1:status>
                    <intf:confirmationLink>xml</intf:confirmationLink>
                    <intf:statusCode>xml</intf:statusCode>
                </tns1:status>
            </intf:getAllModelsReturn>
        </intf:getAllModelsResponse>
    </soapenv:Body>
</soapenv:Envelope>