Table 6-1 summarizes the datatypes of the SOAP package.
Table 6-1 Summary of Datatypes; SOAP Package
| Datatype | Description |
|---|---|
|
Defines Soap-related exception codes. |
|
|
Defines binding for SOAP connections. |
|
|
Defines roles for SOAP nodes. |
Defines Soap-related exception codes.
typedef enum SoapExceptionCode {
SOAP_UNDEFINED_ERR = 0,
SOAP_OTHER_ERR = 1} SoapExceptionCode;
Defines binding for SOAP connections. HTTP is currently the only choice.
typedef enum SoapBinding {
BIND_NONE = 0, /* none */
BIND_HTTP = 1 /* HTTP */ } SoapBinding;
Defines roles for SOAP nodes.
typedef enum SoapRole {
ROLE_UNSET = 0, /* not specified */
ROLE_NONE = 1, /* "none" */
ROLE_NEXT = 2, /* "next" */
ROLE_ULT = 3 /* "ultimateReceiver" */ } SoapRole;