Previous Topic: Call Results ParametersNext Topic: MIME Attachments


Operation Results

Depending on the selection of check boxes in the Call Results parameters, the operation results holds the output of the SOAP Call Results.

Soap Response Body

Stores the complete SOAP response body.

Soap Response Header Data

Stores the response header.

SoapResponseHeader

Contains the stripped data of the SOAP header response.

Soap Response Data

Contains the stripped data of the SOAP call results.

AsyncSoapIntermediateResponse

Contains the complete response along with the headers received from the SOAP call.

Example (using the CheckServerStatus method):

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> 
<SOAP-ENV:Header/> 
<SOAP-ENV:Body> 
<checkServerStatusResponse xmlns="http://www.ca.com/itpam"> 
<serverStatus>Server status ok.</serverStatus> 
</checkServerStatusResponse> 
</SOAP-ENV:Body> 
</SOAP-ENV:Envelope> 
AsyncSoapInterimResponseBody

Contains the body of the SOAP call response.

Example (using the CheckServerStatus method):

<checkServerStatusResponse xmlns="http://www.ca.com/itpam"> 
<serverStatus>Server status ok.</serverStatus> 
</checkServerStatusResponse> 
AsyncSoapInterimResponseHeader

Contains the header of the SOAP call response.

Example (using the CheckServerStatus method):

<SOAP-ENV:Header xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"/>