SOAP WSDL Generate Code

SpringCMServiceSoap12 / SetPermission

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
Chilkat.Xml xml = 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:SetPermission|spr:token","string");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ObjectId","string");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ObjectType","Document");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:Write","Deny");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:Read","Deny");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:Move","Deny");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:Create","Deny");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:SetAccess","Deny");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ApplyToUserName","string");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ApplyToUserId","string");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ApplyToRole","Primary");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ApplyToGroupId","string");
xml.UpdateChildContent("soap:Body|spr:SetPermission|spr:permissions|spr:Permission|spr:ApplyToGroupName","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 = 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/SetPermission";
//  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
string contentType = "text/xml";

Chilkat.Http http = new Chilkat.Http();

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

Chilkat.HttpResponse resp = http.PostXml(endpoint,soapRequestBody,"utf-8");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    Debug.WriteLine("Failed to send SOAP request.");
    return;
}

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

int statusCode = resp.StatusCode;
Debug.WriteLine("response status code: " + Convert.ToString(statusCode));

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
if (statusCode != 200) {
    Debug.WriteLine(responseXml.GetXml());
    return;
}

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

string ObjectId = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ObjectId");
string ObjectType = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ObjectType");
string Write = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:Write");
string Read = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:Read");
string Move = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:Move");
string Create = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:Create");
string SetAccess = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:SetAccess");
string ApplyToUserName = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ApplyToUserName");
string ApplyToUserId = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ApplyToUserId");
string ApplyToRole = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ApplyToRole");
string ApplyToGroupId = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ApplyToGroupId");
string ApplyToGroupName = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:ErrorObject|*:ApplyToGroupName");
string Message = responseXml.GetChildContent("*:Body|*:SetPermissionResponse|*:SetPermissionResult|*:SetPermissionResult|*:Message");
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:SetPermission>
            <spr:token>string</spr:token>
            <spr:permissions>
                <spr:Permission>
                    <spr:ObjectId>string</spr:ObjectId>
                    <spr:ObjectType>Document</spr:ObjectType>
                    <spr:Write>Deny</spr:Write>
                    <spr:Read>Deny</spr:Read>
                    <spr:Move>Deny</spr:Move>
                    <spr:Create>Deny</spr:Create>
                    <spr:SetAccess>Deny</spr:SetAccess>
                    <spr:ApplyToUserName>string</spr:ApplyToUserName>
                    <spr:ApplyToUserId>string</spr:ApplyToUserId>
                    <spr:ApplyToRole>Primary</spr:ApplyToRole>
                    <spr:ApplyToGroupId>string</spr:ApplyToGroupId>
                    <spr:ApplyToGroupName>string</spr:ApplyToGroupName>
                </spr:Permission>
            </spr:permissions>
        </spr:SetPermission>
    </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:SetPermissionResponse>
            <spr:SetPermissionResult>
                <spr:SetPermissionResult>
                    <spr:ErrorObject>
                        <spr:ObjectId>string</spr:ObjectId>
                        <spr:ObjectType>Document</spr:ObjectType>
                        <spr:Write>Deny</spr:Write>
                        <spr:Read>Deny</spr:Read>
                        <spr:Move>Deny</spr:Move>
                        <spr:Create>Deny</spr:Create>
                        <spr:SetAccess>Deny</spr:SetAccess>
                        <spr:ApplyToUserName>string</spr:ApplyToUserName>
                        <spr:ApplyToUserId>string</spr:ApplyToUserId>
                        <spr:ApplyToRole>Primary</spr:ApplyToRole>
                        <spr:ApplyToGroupId>string</spr:ApplyToGroupId>
                        <spr:ApplyToGroupName>string</spr:ApplyToGroupName>
                    </spr:ErrorObject>
                    <spr:Message>string</spr:Message>
                </spr:SetPermissionResult>
            </spr:SetPermissionResult>
        </spr:SetPermissionResponse>
    </soap:Body>
</soap:Envelope>