SOAP WSDL Generate Code

SpringCMServiceSoap12 / DocumentCreateCheckin

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 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:DocumentCreateCheckin|spr:token","string")
xml.UpdateChildContent("soap:Body|spr:DocumentCreateCheckin|spr:fileIdentifier","string")
xml.UpdateChildContent("soap:Body|spr:DocumentCreateCheckin|spr:checkedOutDocumentId","string")
xml.UpdateChildContent("soap:Body|spr:DocumentCreateCheckin|spr:keepCheckedOut","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.EmitXmlDecl = False
Dim soapRequestBody As String = xml.GetXml()

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

Dim http As New Chilkat.Http

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

Dim resp As Chilkat.HttpResponse = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = False) Then
    Debug.WriteLine(http.LastErrorText)
    Debug.WriteLine("Failed to send SOAP request.")
    Exit Sub
End If


' Get the XML response body.
Dim responseXml As New Chilkat.Xml
resp.GetBodyXml(responseXml)

Dim statusCode As Integer = resp.StatusCode
Debug.WriteLine("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.WriteLine(responseXml.GetXml())
    Exit Sub
End If


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


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