SOAP WSDL Generate Code

SpringCMServiceSoap12 / Copy

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:Copy|spr:token","string");
    xml.UpdateChildContent("soap:Body|spr:Copy|spr:type","Document");
    xml.UpdateChildContent("soap:Body|spr:Copy|spr:id","string");
    xml.UpdateChildContent("soap:Body|spr:Copy|spr:destinationFolderId","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/Copy";
    //  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 NewDocumentName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewDocumentName");
    String SourceDocumentName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceDocumentName");
    String SourceFolderName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceFolderName");
    String NewFolderName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewFolderName");
    String NewDocId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewDocId");
    String NewFolderId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewFolderId");
    String SourceDocId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceDocId");
    String SourceFolderId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceFolderId");
    NewFolderId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewFolderId");
    NewFolderName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewFolderName");
    String NewParentFolderId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewParentFolderId");
    String NewParentFolderName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewParentFolderName");
    SourceFolderId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceFolderId");
    SourceFolderName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceFolderName");
    String SourceParentFolderId = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceParentFolderId");
    String SourceParentFolderName = responseXml.getChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceParentFolderName");
  }
}
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:Copy>
            <spr:token>string</spr:token>
            <spr:type>Document</spr:type>
            <spr:id>string</spr:id>
            <spr:destinationFolderId>string</spr:destinationFolderId>
        </spr:Copy>
    </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:CopyResponse>
            <spr:CopyResult>
                <spr:DocumentResults>
                    <spr:SCMDocumentCopyResult>
                        <spr:NewDocumentName>string</spr:NewDocumentName>
                        <spr:SourceDocumentName>string</spr:SourceDocumentName>
                        <spr:SourceFolderName>string</spr:SourceFolderName>
                        <spr:NewFolderName>string</spr:NewFolderName>
                        <spr:NewDocId>string</spr:NewDocId>
                        <spr:NewFolderId>string</spr:NewFolderId>
                        <spr:SourceDocId>string</spr:SourceDocId>
                        <spr:SourceFolderId>string</spr:SourceFolderId>
                    </spr:SCMDocumentCopyResult>
                </spr:DocumentResults>
                <spr:FolderResults>
                    <spr:SCMFolderCopyResult>
                        <spr:NewFolderId>string</spr:NewFolderId>
                        <spr:NewFolderName>string</spr:NewFolderName>
                        <spr:NewParentFolderId>string</spr:NewParentFolderId>
                        <spr:NewParentFolderName>string</spr:NewParentFolderName>
                        <spr:SourceFolderId>string</spr:SourceFolderId>
                        <spr:SourceFolderName>string</spr:SourceFolderName>
                        <spr:SourceParentFolderId>string</spr:SourceParentFolderId>
                        <spr:SourceParentFolderName>string</spr:SourceParentFolderName>
                    </spr:SCMFolderCopyResult>
                </spr:FolderResults>
            </spr:CopyResult>
        </spr:CopyResponse>
    </soap:Body>
</soap:Envelope>