SOAP WSDL Generate Code

DataServiceEndpointSoapBinding / getStoryInfoV6

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
#include <CkXml.h>
#include <CkHttp.h>
#include <CkHttpResponse.h>

void ChilkatSample(void)
    {
    CkXml xml;
    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:getStoryInfoV6|intf:vrid","xml");
    xml.UpdateChildContent("soapenv:Body|intf:getStoryInfoV6|intf:descriptionLanguage","xml");
    xml.UpdateChildContent("soapenv:Body|intf:getStoryInfoV6|intf:carTypeId","xml");
    xml.UpdateChildContent("soapenv:Body|intf:getStoryInfoV6|intf:storyId","xml");
    xml.UpdateChildContent("soapenv:Body|intf:getStoryInfoV6|intf:smartLinks","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);
    const char *soapRequestBody = xml.getXml();

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

    CkHttp http;

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

    CkHttpResponse *resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
    if (http.get_LastMethodSuccess() == false) {
        std::cout << http.lastErrorText() << "\r\n";
        std::cout << "Failed to send SOAP request." << "\r\n";
        return;
    }

    // Get the XML response body.
    CkXml responseXml;
    resp->GetBodyXml(responseXml);

    int statusCode = resp->get_StatusCode();
    std::cout << "response status code: " << statusCode << "\r\n";

    delete resp;

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if (statusCode != 200) {
        std::cout << responseXml.getXml() << "\r\n";
        return;
    }

    std::cout << responseXml.getXml() << "\r\n";

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

    const char *name = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:name");
    const char *confirmationLink = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:status|*:confirmationLink");
    const char *statusCode = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:status|*:statusCode");
    const char *id = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:id");
    const char *mimeDataName = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:mimeData|*:mimeDataName");
    name = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:name");
    const char *order = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:order");
    id = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:paragraphContent|*:item|*:id");
    name = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:paragraphContent|*:item|*:name");
    order = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:paragraphContent|*:item|*:order");
    const char *sentenceStyle = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:paragraphContent|*:item|*:sentenceStyle");
    const char *remark = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:remark");
    const char *sentenceGroupType = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:sentenceGroupType");
    sentenceStyle = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:sentenceStyle");
    const char *filter = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:smartLinks|*:item|*:filter");
    const char *id1 = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:smartLinks|*:item|*:id1");
    const char *id2 = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:smartLinks|*:item|*:id2");
    const char *operation = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:smartLinks|*:item|*:operation");
    const char *item = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:smartLinks|*:item|*:text|*:item");
    const char *code = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:code");
    const char *description = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:description");
    const char *dimensions = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:dimensions");
    id = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:id");
    mimeDataName = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:mimeDataName");
    order = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:order");
    confirmationLink = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:status|*:confirmationLink");
    statusCode = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:specialTool|*:item|*:status|*:statusCode");
    confirmationLink = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:status|*:confirmationLink");
    statusCode = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:status|*:statusCode");
    const char *numberOfColumns = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:tableContent|*:numberOfColumns");
    const char *numberOfRows = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:tableContent|*:numberOfRows");
    order = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:tableContent|*:tableCells|*:item|*:order");
    const char *value = responseXml.getChildContent("*:Body|*:getStoryInfoV6Response|*:getStoryInfoV6Return|*:storyLines|*:item|*:tableContent|*:tableCells|*:item|*: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:getStoryInfoV6>
            <intf:vrid>xml</intf:vrid>
            <intf:descriptionLanguage>xml</intf:descriptionLanguage>
            <intf:carTypeId>xml</intf:carTypeId>
            <intf:storyId>xml</intf:storyId>
            <intf:smartLinks>xml</intf:smartLinks>
        </intf:getStoryInfoV6>
    </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:getStoryInfoV6Response>
            <intf:getStoryInfoV6Return>
                <intf:name>xml</intf:name>
                <intf:status>
                    <intf:confirmationLink>xml</intf:confirmationLink>
                    <intf:statusCode>xml</intf:statusCode>
                </intf:status>
                <intf:storyLines>
                    <intf:item>
                        <intf:id>xml</intf:id>
                        <intf:mimeData>
                            <intf:mimeDataName>xml</intf:mimeDataName>
                            <intf:subStoryLines/>
                        </intf:mimeData>
                        <intf:name>xml</intf:name>
                        <intf:order>xml</intf:order>
                        <intf:paragraphContent>
                            <intf:item>
                                <intf:id>xml</intf:id>
                                <intf:name>xml</intf:name>
                                <intf:order>xml</intf:order>
                                <intf:sentenceStyle>xml</intf:sentenceStyle>
                            </intf:item>
                        </intf:paragraphContent>
                        <intf:remark>xml</intf:remark>
                        <intf:sentenceGroupType>xml</intf:sentenceGroupType>
                        <intf:sentenceStyle>xml</intf:sentenceStyle>
                        <intf:smartLinks>
                            <intf:item>
                                <intf:filter>xml</intf:filter>
                                <intf:id1>xml</intf:id1>
                                <intf:id2>xml</intf:id2>
                                <intf:operation>xml</intf:operation>
                                <intf:text>
                                    <intf:item>xml</intf:item>
                                </intf:text>
                            </intf:item>
                        </intf:smartLinks>
                        <intf:specialTool>
                            <intf:item>
                                <intf:code>xml</intf:code>
                                <intf:description>xml</intf:description>
                                <intf:dimensions>xml</intf:dimensions>
                                <intf:id>xml</intf:id>
                                <intf:mimeDataName>xml</intf:mimeDataName>
                                <intf:order>xml</intf:order>
                                <intf:status>
                                    <intf:confirmationLink>xml</intf:confirmationLink>
                                    <intf:statusCode>xml</intf:statusCode>
                                </intf:status>
                            </intf:item>
                        </intf:specialTool>
                        <intf:status>
                            <intf:confirmationLink>xml</intf:confirmationLink>
                            <intf:statusCode>xml</intf:statusCode>
                        </intf:status>
                        <intf:subStoryLines/>
                        <intf:tableContent>
                            <intf:numberOfColumns>xml</intf:numberOfColumns>
                            <intf:numberOfRows>xml</intf:numberOfRows>
                            <intf:tableCells>
                                <intf:item>
                                    <intf:order>xml</intf:order>
                                    <intf:value>xml</intf:value>
                                </intf:item>
                            </intf:tableCells>
                        </intf:tableContent>
                    </intf:item>
                </intf:storyLines>
            </intf:getStoryInfoV6Return>
        </intf:getStoryInfoV6Response>
    </soapenv:Body>
</soapenv:Envelope>