SOAP WSDL Generate Code

SpringCMServiceSoap / 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
<?php

include("chilkat_9_5_0.php");

$xml = new CkXml();
$xml->put_Tag('soapenv:Envelope');
$xml->AddAttribute('xmlns:soapenv','http://schemas.xmlsoap.org/soap/envelope/');
$xml->AddAttribute('xmlns:spr','http://www.springcm.com/atlas/webservices/v201308/scm/');
$xml->UpdateChildContent('soapenv:Header','');
$xml->UpdateChildContent('soapenv: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->put_EmitXmlDecl(false);
$soapRequestBody = $xml->getXml();

$endpoint = 'https://soapna11.springcm.com/atlas/webservices/v201308/springcmservice.asmx';
$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"
$contentType = 'text/xml';

$http = new CkHttp();

$http->ClearHeaders();
$http->SetRequestHeader('Content-Type',$contentType);
$http->SetRequestHeader('SOAPAction',$soapAction);

// resp is a CkHttpResponse
$resp = $http->PostXml($endpoint,$soapRequestBody,'utf-8');
if ($http->get_LastMethodSuccess() == false) {
    print $http->lastErrorText() . "\n";
    print 'Failed to send SOAP request.' . "\n";
    exit;
}

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

$statusCode = $resp->get_StatusCode();
print 'response status code: ' . $statusCode . "\n";

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if ($statusCode != 200) {
    print $responseXml->getXml() . "\n";
    exit;
}

print $responseXml->getXml() . "\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).

$Id = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Id');
$Name = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Name');
$ObjectType = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:ObjectType');
$ParentFolderId = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:ParentFolderId');
$CreatedBy = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CreatedBy');
$CreatedDate = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CreatedDate');
$UpdatedBy = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:UpdatedBy');
$UpdatedDate = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:UpdatedDate');
$Security = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Security');
$Description = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Description');
$GroupName = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:GroupName');
$FieldName = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:FieldName');
$Value = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:Value');
$HighValue = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:HighValue');
$ExcludeFromSearch = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:ExcludeFromSearch');
$SetName = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:SetName');
$SetNumber = $responseXml->GetChildIntValue('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:SetNumber');
$DataType = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Metadata|*:SCMMetadata|*:DataType');
$CheckedOutUserId = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CheckedOutUserId');
$CheckedOutUserName = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CheckedOutUserName');
$ExpirationDate = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:ExpirationDate');
$FileSize = $responseXml->GetChildIntValue('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:FileSize');
$PDFFileSize = $responseXml->GetChildIntValue('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:PDFFileSize');
$PDFConversion = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:PDFConversion');
$PDFPageCount = $responseXml->GetChildIntValue('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:PDFPageCount');
$IsFormDocument = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:IsFormDocument');
$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');
$strSetNumber = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:CustomFormFields|*:SCMFormField|*:SetNumber');
$MIMEType = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:MIMEType');
$Version = $responseXml->getChildContent('*:Body|*:GetRecentlyAccessedDocumentsResponse|*:GetRecentlyAccessedDocumentsResult|*:SCMDocument|*:Version');

?>
Request XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:spr="http://www.springcm.com/atlas/webservices/v201308/scm/">
    <soapenv:Header/>
    <soapenv:Body>
        <spr:GetRecentlyAccessedDocuments>
            <spr:token>string</spr:token>
        </spr:GetRecentlyAccessedDocuments>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:spr="http://www.springcm.com/atlas/webservices/v201308/scm/">
    <soapenv:Header/>
    <soapenv: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>
    </soapenv:Body>
</soapenv:Envelope>