Previous Topic: Output ParametersNext Topic: Dynamic Parameters


SOAP Call Data

serviceURL

Returns the service URL the SOAP call uses.

methodName

Returns the method name to call.

userName

Returns the user name for basic HTTP authentication.

password

Returns the password for basic HTTP authentication.

httpAuth

Displays true or false, depending on your Use HTTP Basic Authentication? selection.

soapVersion

Returns the SOAP version that the product uses to make SOAP calls, either SOAP 1.1 or SOAP 1.2.

inputSource

Returns one of the following values for the SOAP call input source:

inlineText

Returns the inline text data that is used for the SOAP call. This variable only populates when you select Inline Text as the input source.

Example:
<checkServerStatus xmlns="http://www.ca.com/itpam">
CA AuthMinder
<token>token__</token>
<user>user__</user>
<password>password__</password>
</auth>
</checkServerStatus>
FileName

Returns the inline text data that is used for the SOAP call. This variable is only populated when you select Preformatted SOAP File as the input source.

Expression Value

Returns the inline text data that is used for the SOAP call. This variable is only populated when you select Expression as the input source.

SavedCallFileName

Returns the file name from the Saved Call File field. This file contains the actual SOAP envelope that the product uses to make a SOAP call.

Example:
<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Header/><SOAP-ENV:Body><checkServerStatus xmlns="http://www.ca.com/itpam">
CA AuthMinder<token>token__</token><user>user__</user><password>password__</password></auth></checkServerStatus></SOAP-ENV:Body></SOAP-ENV:Envelope>