SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / getMaintenanceSystemsV5

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
-- Important: See this note about {{-https://cknotes.com/sql-sp_oamethod-string-length-return-value-limitations/|||string length limitations for strings returned by sp_OAMethod calls-}}.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the {{-https://www.example-code.com/sql/default.asp|||warning about using nvarchar(max)-}}.
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @xml int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Xml', @xml OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    EXEC sp_OASetProperty @xml, 'Tag', 'soapenv:Envelope'
    DECLARE @success int
    EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:intf', 'http://data.webservice.workshop.vivid.nl'
    EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:soapenv', 'http://schemas.xmlsoap.org/soap/envelope/'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Header', ''
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:vrid', 'xml'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:descriptionLanguage', 'xml'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:carTypeId', 'xml'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:repairtimesTypeId', 'xml'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:rtTypeCategory', 'xml'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:useImperial', 'xml'
    EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|intf:getMaintenanceSystemsV5|intf:includeServiceTimes', '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. 
    EXEC sp_OASetProperty @xml, 'EmitXmlDecl', 0
    DECLARE @soapRequestBody nvarchar(4000)
    EXEC sp_OAMethod @xml, 'GetXml', @soapRequestBody OUT

    DECLARE @endpoint nvarchar(4000)
    SELECT @endpoint = 'http://www.haynespro-services.com/workshopServices3/services/DataServiceEndpoint'
    DECLARE @soapAction nvarchar(4000)
    SELECT @soapAction = ''
    --  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    DECLARE @contentType nvarchar(4000)
    SELECT @contentType = 'text/xml'

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT

    EXEC sp_OAMethod @http, 'ClearHeaders', NULL
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', @contentType
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'SOAPAction', @soapAction

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostXml', @resp OUT, @endpoint, @soapRequestBody, 'utf-8'
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed to send SOAP request.'
        EXEC @hr = sp_OADestroy @xml
        EXEC @hr = sp_OADestroy @http
        RETURN
      END

    -- Get the XML response body.
    DECLARE @responseXml int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Xml', @responseXml OUT

    EXEC sp_OAMethod @resp, 'GetBodyXml', @success OUT, @responseXml

    DECLARE @statusCode int
    EXEC sp_OAGetProperty @resp, 'StatusCode', @statusCode OUT

    PRINT 'response status code: ' + @statusCode

    EXEC @hr = sp_OADestroy @resp

    -- If the status code does not indicate succcess, then show the response XML,
    -- which probably contains error information.
    IF @statusCode <> 200
      BEGIN
        EXEC sp_OAMethod @responseXml, 'GetXml', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @xml
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @responseXml
        RETURN
      END

    EXEC sp_OAMethod @responseXml, 'GetXml', @sTmp0 OUT
    PRINT @sTmp0

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

    DECLARE @attributeTypeDescription nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @attributeTypeDescription OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:criteria|*:item|*:attributeTypeDescription'
    DECLARE @keyTableDescription nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @keyTableDescription OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:criteria|*:item|*:keyTableDescription'
    DECLARE @keyValue nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @keyValue OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:criteria|*:item|*:keyValue'
    DECLARE @keyValueDescription nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @keyValueDescription OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:criteria|*:item|*:keyValueDescription'
    DECLARE @kritnr nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @kritnr OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:criteria|*:item|*:kritnr'
    DECLARE @tabnr nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @tabnr OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:criteria|*:item|*:tabnr'
    DECLARE @criteriaId nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @criteriaId OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupCriterias|*:item|*:criteriaId'
    DECLARE @criteriaLevel nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @criteriaLevel OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel'
    DECLARE @description nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @description OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupCriterias|*:item|*:description'
    DECLARE @value1 nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @value1 OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupCriterias|*:item|*:value1'
    DECLARE @value2 nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @value2 OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupCriterias|*:item|*:value2'
    DECLARE @groupDescription nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @groupDescription OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupDescription'
    DECLARE @groupId nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @groupId OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:generalCriterias|*:item|*:groupId'
    DECLARE @id nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @id OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:id'
    DECLARE @combinable nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @combinable OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:combinable'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @criteriaId OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupCriterias|*:item|*:criteriaId'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @criteriaLevel OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupCriterias|*:item|*:criteriaLevel'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @description OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupCriterias|*:item|*:description'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @value1 OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupCriterias|*:item|*:value1'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @value2 OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupCriterias|*:item|*:value2'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @groupDescription OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupDescription'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @groupId OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:generalCriterias|*:item|*:groupId'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @id OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:id'
    DECLARE @name nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @name OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:name'
    DECLARE @code nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @code OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:times|*:item|*:code'
    DECLARE @selected nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @selected OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:times|*:item|*:selected'
    DECLARE @v_type nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @v_type OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:times|*:item|*:type'
    DECLARE @value nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @value OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:maintenancePeriods|*:item|*:times|*:item|*:value'
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @name OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:name'
    DECLARE @confirmationLink nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @confirmationLink OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:status|*:confirmationLink'
    DECLARE @statusCode nvarchar(4000)
    EXEC sp_OAMethod @responseXml, 'GetChildContent', @statusCode OUT, '*:Body|*:getMaintenanceSystemsV5Response|*:getMaintenanceSystemsV5Return|*:status|*:statusCode'

    EXEC @hr = sp_OADestroy @xml
    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @responseXml


END
GO
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:getMaintenanceSystemsV5>
            <intf:vrid>xml</intf:vrid>
            <intf:descriptionLanguage>xml</intf:descriptionLanguage>
            <intf:carTypeId>xml</intf:carTypeId>
            <intf:repairtimesTypeId>xml</intf:repairtimesTypeId>
            <intf:rtTypeCategory>xml</intf:rtTypeCategory>
            <intf:useImperial>xml</intf:useImperial>
            <intf:includeServiceTimes>xml</intf:includeServiceTimes>
        </intf:getMaintenanceSystemsV5>
    </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:getMaintenanceSystemsV5Response>
            <intf:getMaintenanceSystemsV5Return>
                <intf:criteria>
                    <intf:item>
                        <intf:attributeTypeDescription>xml</intf:attributeTypeDescription>
                        <intf:keyTableDescription>xml</intf:keyTableDescription>
                        <intf:keyValue>xml</intf:keyValue>
                        <intf:keyValueDescription>xml</intf:keyValueDescription>
                        <intf:kritnr>xml</intf:kritnr>
                        <intf:tabnr>xml</intf:tabnr>
                    </intf:item>
                </intf:criteria>
                <intf:generalCriterias>
                    <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:generalCriterias>
                <intf:id>xml</intf:id>
                <intf:maintenancePeriods>
                    <intf:item>
                        <intf:combinable>xml</intf:combinable>
                        <intf:generalCriterias>
                            <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:generalCriterias>
                        <intf:id>xml</intf:id>
                        <intf:name>xml</intf:name>
                        <intf:times>
                            <intf:item>
                                <intf:code>xml</intf:code>
                                <intf:selected>xml</intf:selected>
                                <intf:type>xml</intf:type>
                                <intf:value>xml</intf:value>
                            </intf:item>
                        </intf:times>
                    </intf:item>
                </intf:maintenancePeriods>
                <intf:name>xml</intf:name>
                <intf:status>
                    <intf:confirmationLink>xml</intf:confirmationLink>
                    <intf:statusCode>xml</intf:statusCode>
                </intf:status>
            </intf:getMaintenanceSystemsV5Return>
        </intf:getMaintenanceSystemsV5Response>
    </soapenv:Body>
</soapenv:Envelope>