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
$oXml = ObjCreate("Chilkat_9_5_0.Xml")
$oXml.Tag = "soap:Envelope"
$oXml.AddAttribute("xmlns:soap","http://www.w3.org/2003/05/soap-envelope")
$oXml.AddAttribute("xmlns:spr","http://www.springcm.com/atlas/webservices/v201308/scm/")
$oXml.UpdateChildContent "soap:Header",""
$oXml.UpdateChildContent "soap:Body|spr:Copy|spr:token","string"
$oXml.UpdateChildContent "soap:Body|spr:Copy|spr:type","Document"
$oXml.UpdateChildContent "soap:Body|spr:Copy|spr:id","string"
$oXml.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. 
$oXml.EmitXmlDecl = False
Local $soapRequestBody = $oXml.GetXml()

Local $sEndpoint = "https://soapna11.springcm.com/atlas/webservices/v201308/springcmservice.asmx"
Local $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"
Local $sContentType = "text/xml"

$oHttp = ObjCreate("Chilkat_9_5_0.Http")

$oHttp.ClearHeaders 
$oHttp.SetRequestHeader "Content-Type",$sContentType
$oHttp.SetRequestHeader "SOAPAction",$soapAction

Local $oResp = $oHttp.PostXml($sEndpoint,$soapRequestBody,"utf-8")
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    ConsoleWrite("Failed to send SOAP request." & @CRLF)
    Exit
EndIf

; Get the XML response body.
$oResponseXml = ObjCreate("Chilkat_9_5_0.Xml")
$oResp.GetBodyXml($oResponseXml)

Local $iStatusCode = $oResp.StatusCode
ConsoleWrite("response status code: " & $iStatusCode & @CRLF)

; If the status code does not indicate succcess, then show the response XML,
; which probably contains error information.
If ($iStatusCode <> 200) Then
    ConsoleWrite($oResponseXml.GetXml() & @CRLF)
    Exit
EndIf

ConsoleWrite($oResponseXml.GetXml() & @CRLF)

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

Local $sNewDocumentName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewDocumentName")
Local $sSourceDocumentName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceDocumentName")
Local $sSourceFolderName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceFolderName")
Local $sNewFolderName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewFolderName")
Local $sNewDocId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewDocId")
Local $sNewFolderId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:NewFolderId")
Local $sSourceDocId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceDocId")
Local $sSourceFolderId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:DocumentResults|*:SCMDocumentCopyResult|*:SourceFolderId")
$sNewFolderId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewFolderId")
$sNewFolderName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewFolderName")
Local $sNewParentFolderId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewParentFolderId")
Local $sNewParentFolderName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:NewParentFolderName")
$sSourceFolderId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceFolderId")
$sSourceFolderName = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceFolderName")
Local $sSourceParentFolderId = $oResponseXml.GetChildContent("*:Body|*:CopyResponse|*:CopyResult|*:FolderResults|*:SCMFolderCopyResult|*:SourceParentFolderId")
Local $sSourceParentFolderName = $oResponseXml.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>