Class SOAPService

Represents a SOAP WebService.

PropertyDescription
authentication: StringReturns the authentication type.
serviceClient: ObjectReturns the serviceClient object.

This class does not have a constructor, so you cannot create it directly.

MethodDescription
getAuthentication()Returns the authentication type.
getServiceClient()Returns the serviceClient object.
setAuthentication(String)Sets the type of authentication.
setServiceClient(Object)Sets the serviceClient object.

call, getConfiguration, getCredentialID, getRequestData, getResponse, getURL, isMock, isThrowOnError, setCredentialID, setMock, setThrowOnError, setURL

assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values

authentication: String

Returns the authentication type.


serviceClient: Object

Returns the serviceClient object.


getAuthentication(): String

Returns the authentication type.

Returns:

  • Authentication type.

getServiceClient(): Object

Returns the serviceClient object.

Returns:

  • serviceClient object.

setAuthentication(authentication: String): SOAPService

Sets the type of authentication. Valid values include "BASIC" and "NONE".

The default value is BASIC.

Parameters:

  • authentication - Type of authentication.

Returns:

  • this SOAP WebService.

setServiceClient(o: Object): SOAPService

Sets the serviceClient object. This must be set in the prepareCall method, prior to execute being called.

Parameters:

  • o - serviceClient object.

Returns:

  • this SOAP WebService.