SOAP/Web Services (pdk.net.soap)
Contains structures that provide support for SOAP calls
Fault
An element in the SOAPBody that contains error and/or status information. This information may relate to errors in the SOAPMessage or to problems that are not related to the content in the message itself. Problems not related to the message itself are generally errors in processing, such as the inability to communicate with an upstream server.
Properties:
actor :: pdk.core.String
code :: pdk.core.String
detail :: pdk.core.String
string :: pdk.core.String
Superstructures: Object <- Any
Header
A representation of the SOAP header element. A SOAP header element consists of XML data that affects the way the application-specific content is processed by the message provider. For example, transaction semantics, authentication information, and so on, can be specified as the content of a SOAP Header structure.
Properties:
name :: pdk.core.String
values :: pdk.core.Array<pdk.core.String>
Superstructures: Object <- Any
Request
Represents one SOAP request which can be sent to a server.
Properties:
httpCookie :: pdk.core.Array<pdk.net.Cookie>
data :: T
httpHeader :: pdk.core.Array<pdk.net.http.Header>
soapHeader :: pdk.core.Array<pdk.net.soap.Header>
Superstructures: Object <- Any
Response
Represents a response to a SoapRequest
Properties:
httpCookie :: pdk.core.Array<pdk.net.Cookie>
data :: T
fault :: pdk.net.soap.Fault
httpHeader :: pdk.core.Array<pdk.net.http.Header>
soapHeader :: pdk.core.Array<pdk.net.soap.Header>
httpStatusCode :: pdk.core.Integer
Superstructures: Object <- Any
Last updated