Understanding the SOAP message body
The body of the message contains either the request for a specific operation, the response to a request, or an error message. The following example requests detailed data about users on the volume:
<SOAP-ENV:Body>
<SOAP-ACTU:SelectUsers
xmlns:SOAP-ACTU="http://schemas.actuate.com/actuate11">
<ResultDef SOAP-ENC:arrayType="xsd:String[5]">
<String>Id</String>
<String>Name</String>
<String>EmailAddress</String>
<String>Homefolder</String>
<String>Description</String>
</ResultDef>
<Search>
<CountLimit>201</CountLimit>
<FetchSize>100</FetchSize>
<FetchDirection>true</FetchDirection>
</Search>
</SOAP-ACTU:SelectUsers>
</SOAP-ENV:Body>
The response includes details for each attribute in the request, including the attribute name and data type, when the attribute takes effect, and whether it is required.
<SOAP-ENV:Body>
<ACTU:SelectUsersResponse
xmlns:ACTU="http://schemas.actuate.com/actuate11"
xmlns="http://schemas.actuate.com/actuate11">
<Users>
<User>
<Name>Administrator</Name>
<Id>1</Id>
<EmailAddress></EmailAddress>
<HomeFolder></HomeFolder>
<Description></Description>
</User>
<User>
<Name>User0</Name>
<Id>2</Id>
<EmailAddress>User0@localhost</EmailAddress>
<HomeFolder>/home/User0</HomeFolder>
<Description></Description>
</User>
</Users>
<TotalCount>15</TotalCount>
</ACTU:SelectUsersResponse>
</SOAP-ENV:Body>