SOAP WSDL Generate Code

SpringCMServiceSoap12 / DocumentGetMatchByIdAndMetadata

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 <CkXmlW.h>
#include <CkHttpW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    CkXmlW xml;
    xml.put_Tag(L"soap:Envelope");
    xml.AddAttribute(L"xmlns:soap",L"http://www.w3.org/2003/05/soap-envelope");
    xml.AddAttribute(L"xmlns:spr",L"http://www.springcm.com/atlas/webservices/v201308/scm/");
    xml.UpdateChildContent(L"soap:Header",L"");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:token",L"string");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:documentId",L"string");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:folderId",L"string");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:MustMatchMetadata",L"string");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:PartialMatchMetadata",L"string");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:ReturnAll",L"true");
    xml.UpdateChildContent(L"soap:Body|spr:DocumentGetMatchByIdAndMetadata|spr:loadExtendedMetadata",L"true");

    // 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 wchar_t *soapRequestBody = xml.getXml();

    const wchar_t *endpoint = L"https://soapna11.springcm.com/atlas/webservices/v201308/springcmservice.asmx";
    const wchar_t *soapAction = L"http://www.springcm.com/atlas/webservices/v201308/scm/DocumentGetMatchByIdAndMetadata";
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    const wchar_t *contentType = L"text/xml";

    CkHttpW http;

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

    CkHttpResponseW *resp = http.PostXml(endpoint,soapRequestBody,L"utf-8");
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        wprintf(L"Failed to send SOAP request.\n");
        return;
    }

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

    int statusCode = resp->get_StatusCode();
    wprintf(L"response status code: %d\n",statusCode);

    delete resp;

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

    wprintf(L"%s\n",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).

    const wchar_t *Id = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Id");
    const wchar_t *Name = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Name");
    const wchar_t *ObjectType = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:ObjectType");
    const wchar_t *ParentFolderId = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:ParentFolderId");
    const wchar_t *CreatedBy = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CreatedBy");
    const wchar_t *CreatedDate = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CreatedDate");
    const wchar_t *UpdatedBy = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:UpdatedBy");
    const wchar_t *UpdatedDate = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:UpdatedDate");
    const wchar_t *Security = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Security");
    const wchar_t *Description = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Description");
    const wchar_t *GroupName = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:GroupName");
    const wchar_t *FieldName = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:FieldName");
    const wchar_t *Value = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:Value");
    const wchar_t *HighValue = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:HighValue");
    const wchar_t *ExcludeFromSearch = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:ExcludeFromSearch");
    const wchar_t *SetName = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:SetName");
    int SetNumber = responseXml.GetChildIntValue(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:SetNumber");
    const wchar_t *DataType = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:DataType");
    const wchar_t *CheckedOutUserId = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CheckedOutUserId");
    const wchar_t *CheckedOutUserName = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CheckedOutUserName");
    const wchar_t *ExpirationDate = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:ExpirationDate");
    int FileSize = responseXml.GetChildIntValue(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:FileSize");
    int PDFFileSize = responseXml.GetChildIntValue(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:PDFFileSize");
    const wchar_t *PDFConversion = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:PDFConversion");
    int PDFPageCount = responseXml.GetChildIntValue(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:PDFPageCount");
    const wchar_t *IsFormDocument = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:IsFormDocument");
    const wchar_t *Key = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:Key");
    Value = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:Value");
    SetName = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:SetName");
    const wchar_t *strSetNumber = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:SetNumber");
    const wchar_t *MIMEType = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:MIMEType");
    const wchar_t *Version = responseXml.getChildContent(L"*:Body|*:DocumentGetMatchByIdAndMetadataResponse|*:DocumentGetMatchByIdAndMetadataResult|*:SCMDocument|*:Version");
    }
Request XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:spr="http://www.springcm.com/atlas/webservices/v201308/scm/">
    <soap:Header/>
    <soap:Body>
        <spr:DocumentGetMatchByIdAndMetadata>
            <spr:token>string</spr:token>
            <spr:documentId>string</spr:documentId>
            <spr:folderId>string</spr:folderId>
            <spr:MustMatchMetadata>string</spr:MustMatchMetadata>
            <spr:PartialMatchMetadata>string</spr:PartialMatchMetadata>
            <spr:ReturnAll>true</spr:ReturnAll>
            <spr:loadExtendedMetadata>true</spr:loadExtendedMetadata>
        </spr:DocumentGetMatchByIdAndMetadata>
    </soap:Body>
</soap:Envelope>
Response XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:spr="http://www.springcm.com/atlas/webservices/v201308/scm/">
    <soap:Header/>
    <soap:Body>
        <spr:DocumentGetMatchByIdAndMetadataResponse>
            <spr:DocumentGetMatchByIdAndMetadataResult>
                <spr:SCMDocument>
                    <spr:Id>string</spr:Id>
                    <spr:Name>string</spr:Name>
                    <spr:ObjectType>Document</spr:ObjectType>
                    <spr:ParentFolderId>string</spr:ParentFolderId>
                    <spr:CreatedBy>string</spr:CreatedBy>
                    <spr:CreatedDate>dateTime</spr:CreatedDate>
                    <spr:UpdatedBy>string</spr:UpdatedBy>
                    <spr:UpdatedDate>dateTime</spr:UpdatedDate>
                    <spr:Security>list of enumerated string values</spr:Security>
                    <spr:Description>string</spr:Description>
                    <spr:Metadata>
                        <spr:SCMMetadata>
                            <spr:GroupName>string</spr:GroupName>
                            <spr:FieldName>string</spr:FieldName>
                            <spr:Value>string</spr:Value>
                            <spr:HighValue>string</spr:HighValue>
                            <spr:ExcludeFromSearch>true</spr:ExcludeFromSearch>
                            <spr:SetName>string</spr:SetName>
                            <spr:SetNumber>1042</spr:SetNumber>
                            <spr:DataType>String</spr:DataType>
                        </spr:SCMMetadata>
                    </spr:Metadata>
                    <spr:CheckedOutUserId>string</spr:CheckedOutUserId>
                    <spr:CheckedOutUserName>string</spr:CheckedOutUserName>
                    <spr:ExpirationDate>dateTime</spr:ExpirationDate>
                    <spr:FileSize>123456</spr:FileSize>
                    <spr:PDFFileSize>123456</spr:PDFFileSize>
                    <spr:PDFConversion>true</spr:PDFConversion>
                    <spr:PDFPageCount>1042</spr:PDFPageCount>
                    <spr:IsFormDocument>true</spr:IsFormDocument>
                    <spr:CustomFormFields>
                        <spr:SCMFormField>
                            <spr:Key>string</spr:Key>
                            <spr:Value>string</spr:Value>
                            <spr:SetName>string</spr:SetName>
                            <spr:SetNumber>string</spr:SetNumber>
                        </spr:SCMFormField>
                    </spr:CustomFormFields>
                    <spr:MIMEType>string</spr:MIMEType>
                    <spr:Version>string</spr:Version>
                </spr:SCMDocument>
            </spr:DocumentGetMatchByIdAndMetadataResult>
        </spr:DocumentGetMatchByIdAndMetadataResponse>
    </soap:Body>
</soap:Envelope>