SOAP WSDL Generate Code

SpringCMServiceSoap12 / GroupFind

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
use chilkat();

$xml = chilkat::CkXml->new();
$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:GroupFind|spr:token","string");
$xml->UpdateChildContent("soap:Body|spr:GroupFind|spr:name","string");
$xml->UpdateChildContent("soap:Body|spr:GroupFind|spr:IncludeDeleted","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->put_EmitXmlDecl(0);
$soapRequestBody = $xml->getXml();

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

$http = chilkat::CkHttp->new();

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

# resp is a HttpResponse
$resp = $http->PostXml($endpoint,$soapRequestBody,"utf-8");
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    print "Failed to send SOAP request." . "\r\n";
    exit;
}

# Get the XML response body.
$responseXml = chilkat::CkXml->new();
$resp->GetBodyXml($responseXml);

$statusCode = $resp->get_StatusCode();
print "response status code: " . $statusCode . "\r\n";

# If the status code does not indicate succcess, then show the response XML,
# which probably contains error information.
if ($statusCode != 200) {
    print $responseXml->getXml() . "\r\n";
    exit;
}

print $responseXml->getXml() . "\r\n";

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

$Id = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Id");
$Name = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Name");
$ObjectType = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:ObjectType");
$IsPrivate = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:IsPrivate");
$Id = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Id");
$Name = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Name");
$ObjectType = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:ObjectType");
$v_Email = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Email");
$FirstName = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:FirstName");
$LastName = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:LastName");
$PhoneNumber = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:PhoneNumber");
$FaxNumber = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:FaxNumber");
$Company = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Company");
$Department = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Department");
$Title = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Title");
$Address1 = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Address1");
$Address2 = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Address2");
$Address3 = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Address3");
$City = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:City");
$ProvinceState = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:ProvinceState");
$PostalCode = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:PostalCode");
$Country = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:Members|*:SCMContactInfo|*:Country");
$GroupType = $responseXml->getChildContent("*:Body|*:GroupFindResponse|*:GroupFindResult|*:SCMGroup|*:GroupType");
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:GroupFind>
            <spr:token>string</spr:token>
            <spr:name>string</spr:name>
            <spr:IncludeDeleted>true</spr:IncludeDeleted>
        </spr:GroupFind>
    </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:GroupFindResponse>
            <spr:GroupFindResult>
                <spr:SCMGroup>
                    <spr:Id>string</spr:Id>
                    <spr:Name>string</spr:Name>
                    <spr:ObjectType>Document</spr:ObjectType>
                    <spr:IsPrivate>true</spr:IsPrivate>
                    <spr:Members>
                        <spr:SCMContactInfo>
                            <spr:Id>string</spr:Id>
                            <spr:Name>string</spr:Name>
                            <spr:ObjectType>Document</spr:ObjectType>
                            <spr:Email>string</spr:Email>
                            <spr:FirstName>string</spr:FirstName>
                            <spr:LastName>string</spr:LastName>
                            <spr:PhoneNumber>string</spr:PhoneNumber>
                            <spr:FaxNumber>string</spr:FaxNumber>
                            <spr:Company>string</spr:Company>
                            <spr:Department>string</spr:Department>
                            <spr:Title>string</spr:Title>
                            <spr:Address1>string</spr:Address1>
                            <spr:Address2>string</spr:Address2>
                            <spr:Address3>string</spr:Address3>
                            <spr:City>string</spr:City>
                            <spr:ProvinceState>string</spr:ProvinceState>
                            <spr:PostalCode>string</spr:PostalCode>
                            <spr:Country>string</spr:Country>
                        </spr:SCMContactInfo>
                    </spr:Members>
                    <spr:GroupType>Distribution</spr:GroupType>
                </spr:SCMGroup>
            </spr:GroupFindResult>
        </spr:GroupFindResponse>
    </soap:Body>
</soap:Envelope>