SOAP WSDL Generate Code

SpringCMServiceSoap12 / DocumentSave

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
Dim xml As New ChilkatXml
xml.Tag = "soap:Envelope"
success = xml.AddAttribute("xmlns:soap","http://www.w3.org/2003/05/soap-envelope")
success = xml.AddAttribute("xmlns:spr","http://www.springcm.com/atlas/webservices/v201308/scm/")
xml.UpdateChildContent "soap:Header",""
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:token","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Id","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Name","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:ObjectType","Document"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:ParentFolderId","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CreatedBy","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CreatedDate","dateTime"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:UpdatedBy","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:UpdatedDate","dateTime"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Security","list of enumerated string values"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Description","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:GroupName","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:FieldName","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:Value","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:HighValue","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:ExcludeFromSearch","true"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:SetName","string"
xml.UpdateChildContentInt "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:SetNumber",1042
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:DataType","String"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CheckedOutUserId","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CheckedOutUserName","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:ExpirationDate","dateTime"
xml.UpdateChildContentInt "soap:Body|spr:DocumentSave|spr:scmDocument|spr:FileSize",123456
xml.UpdateChildContentInt "soap:Body|spr:DocumentSave|spr:scmDocument|spr:PDFFileSize",123456
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:PDFConversion","true"
xml.UpdateChildContentInt "soap:Body|spr:DocumentSave|spr:scmDocument|spr:PDFPageCount",1042
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:IsFormDocument","true"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:Key","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:Value","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:SetName","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:SetNumber","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:MIMEType","string"
xml.UpdateChildContent "soap:Body|spr:DocumentSave|spr:scmDocument|spr:Version","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 = 0
Dim soapRequestBody As String
soapRequestBody = xml.GetXml()

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

Dim http As New ChilkatHttp

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

Dim resp As ChilkatHttpResponse
Set resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Debug.Print "Failed to send SOAP request."
    Exit Sub
End If

' Get the XML response body.
Dim responseXml As New ChilkatXml
success = resp.GetBodyXml(responseXml)

Dim statusCode As Long
statusCode = resp.StatusCode
Debug.Print "response status code: " & statusCode

' If the status code does not indicate succcess, then show the response XML,
' which probably contains error information.
If (statusCode <> 200) Then
    Debug.Print responseXml.GetXml()
    Exit Sub
End If

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

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