SOAP WSDL Generate Code

SpringCMServiceSoap12 / GetRecentlyAccessedDocuments

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
Chilkat.Xml xml = new Chilkat.Xml();
xml.Tag = "soap:Envelope";
xml.AddAttribute("xmlns:soap","http://www.w3.org/2003/05/soap-envelope");
xml.AddAttribute("xmlns:spr","http://www.springcm.com/atlas/webservices/v201308/scm/");
xml.UpdateChildContent("soap:Header","");
xml.UpdateChildContent("soap:Body|spr:GetRecentlyAccessedDocuments|spr:token","string");

// 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;
string soapRequestBody = xml.GetXml();

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

Chilkat.Http http = new Chilkat.Http();

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

Chilkat.HttpResponse resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    Debug.WriteLine("Failed to send SOAP request.");
    return;
}

// Get the XML response body.
Chilkat.Xml responseXml = new Chilkat.Xml();
resp.GetBodyXml(responseXml);

int statusCode = resp.StatusCode;
Debug.WriteLine("response status code: " + Convert.ToString(statusCode));

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

Debug.WriteLine(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).

string Id = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Id");
string Name = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Name");
string ObjectType = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:ObjectType");
string ParentFolderId = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:ParentFolderId");
string CreatedBy = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CreatedBy");
string CreatedDate = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CreatedDate");
string UpdatedBy = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:UpdatedBy");
string UpdatedDate = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:UpdatedDate");
string Security = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Security");
string Description = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Description");
string GroupName = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:GroupName");
string FieldName = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:FieldName");
string Value = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:Value");
string HighValue = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:HighValue");
string ExcludeFromSearch = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:ExcludeFromSearch");
string SetName = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:SetName");
int SetNumber = responseXml.GetChildIntValue("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:SetNumber");
string DataType = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:DataType");
string CheckedOutUserId = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CheckedOutUserId");
string CheckedOutUserName = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CheckedOutUserName");
string ExpirationDate = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:ExpirationDate");
int FileSize = responseXml.GetChildIntValue("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:FileSize");
int PDFFileSize = responseXml.GetChildIntValue("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:PDFFileSize");
string PDFConversion = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:PDFConversion");
int PDFPageCount = responseXml.GetChildIntValue("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:PDFPageCount");
string IsFormDocument = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:IsFormDocument");
string Key = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:Key");
Value = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:Value");
SetName = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:SetName");
string strSetNumber = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:SetNumber");
string MIMEType = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:MIMEType");
string Version = responseXml.GetChildContent("*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*: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:GetRecentlyAccessedDocuments>
            <spr:token>string</spr:token>
        </spr:GetRecentlyAccessedDocuments>
    </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:GetRecentlyAccessedDocumentsResponse>
            <spr:GetRecentlyAccessedDocumentsResult>
                <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:GetRecentlyAccessedDocumentsResult>
        </spr:GetRecentlyAccessedDocumentsResponse>
    </soap:Body>
</soap:Envelope>