SOAP WSDL Generate Code

SpringCMServiceSoap12 / DocumentCreateFilesCommit

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
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    CkXml xml = new CkXml();
    xml.put_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:DocumentCreateFilesCommit|spr:token","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:identifiers|spr:FileIdentifier","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:identifiers|spr:PDFFileIdentifier","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:identifiers|spr:ContentFileIdentifier","string");
    xml.UpdateChildContentInt("soap:Body|spr:DocumentCreateFilesCommit|spr:identifiers|spr:ChunkSize",1042);
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Id","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Name","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:ObjectType","Document");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:ParentFolderId","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CreatedBy","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CreatedDate","dateTime");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:UpdatedBy","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:UpdatedDate","dateTime");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Security","list of enumerated string values");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Description","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:GroupName","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:FieldName","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:Value","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:HighValue","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:ExcludeFromSearch","true");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:SetName","string");
    xml.UpdateChildContentInt("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:SetNumber",1042);
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:Metadata|spr:SCMMetadata|spr:DataType","String");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CheckedOutUserId","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CheckedOutUserName","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:ExpirationDate","dateTime");
    xml.UpdateChildContentInt("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:FileSize",123456);
    xml.UpdateChildContentInt("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:PDFFileSize",123456);
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:PDFConversion","true");
    xml.UpdateChildContentInt("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:PDFPageCount",1042);
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:IsFormDocument","true");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:Key","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:Value","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:SetName","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:CustomFormFields|spr:SCMFormField|spr:SetNumber","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|spr:scmDocument|spr:MIMEType","string");
    xml.UpdateChildContent("soap:Body|spr:DocumentCreateFilesCommit|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.put_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/DocumentCreateFilesCommit";
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    String contentType = "text/xml";

    CkHttp http = new CkHttp();

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

    CkHttpResponse resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
    if (http.get_LastMethodSuccess() == false) {
        System.out.println(http.lastErrorText());
        System.out.println("Failed to send SOAP request.");
        return;
        }

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

    int statusCode = resp.get_StatusCode();
    System.out.println("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) {
        System.out.println(responseXml.getXml());
        return;
        }

    System.out.println(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|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Id");
    String Name = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Name");
    String ObjectType = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:ObjectType");
    String ParentFolderId = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:ParentFolderId");
    String CreatedBy = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CreatedBy");
    String CreatedDate = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CreatedDate");
    String UpdatedBy = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:UpdatedBy");
    String UpdatedDate = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:UpdatedDate");
    String Security = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Security");
    String Description = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Description");
    String GroupName = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:GroupName");
    String FieldName = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:FieldName");
    String Value = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:Value");
    String HighValue = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:HighValue");
    String ExcludeFromSearch = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:ExcludeFromSearch");
    String SetName = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:SetName");
    int SetNumber = responseXml.GetChildIntValue("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:SetNumber");
    String DataType = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:Metadata|*:SCMMetadata|*:DataType");
    String CheckedOutUserId = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CheckedOutUserId");
    String CheckedOutUserName = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CheckedOutUserName");
    String ExpirationDate = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:ExpirationDate");
    int FileSize = responseXml.GetChildIntValue("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:FileSize");
    int PDFFileSize = responseXml.GetChildIntValue("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:PDFFileSize");
    String PDFConversion = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:PDFConversion");
    int PDFPageCount = responseXml.GetChildIntValue("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:PDFPageCount");
    String IsFormDocument = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:IsFormDocument");
    String Key = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CustomFormFields|*:SCMFormField|*:Key");
    Value = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CustomFormFields|*:SCMFormField|*:Value");
    SetName = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CustomFormFields|*:SCMFormField|*:SetName");
    String strSetNumber = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:CustomFormFields|*:SCMFormField|*:SetNumber");
    String MIMEType = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*:MIMEType");
    String Version = responseXml.getChildContent("*:Body|*:DocumentCreateFilesCommitResponse|*:DocumentCreateFilesCommitResult|*: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:DocumentCreateFilesCommit>
            <spr:token>string</spr:token>
            <spr:identifiers>
                <spr:FileIdentifier>string</spr:FileIdentifier>
                <spr:PDFFileIdentifier>string</spr:PDFFileIdentifier>
                <spr:ContentFileIdentifier>string</spr:ContentFileIdentifier>
                <spr:ChunkSize>1042</spr:ChunkSize>
            </spr:identifiers>
            <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:DocumentCreateFilesCommit>
    </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:DocumentCreateFilesCommitResponse>
            <spr:DocumentCreateFilesCommitResult>
                <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:DocumentCreateFilesCommitResult>
        </spr:DocumentCreateFilesCommitResponse>
    </soap:Body>
</soap:Envelope>