The <addressing> pipeline configuration element

Specifies the support for Web Services Addressing in Java-based SOAP processing.

Used in:

  • Service provider
  • Service requester

Contained by:

Contains:

  • A <namespace> element. In a service provider, this element is optional. The element contains one of the two WS-Addressing schemas that are supported by CICS®. For inbound messages, Axis2 supports both specifications. For outbound messages, the namespace specified in this element is used. If you do not specify this element or you have two elements, CICS uses the same specification on the outbound message as the inbound message. In a service requester, this element is required and you can specify only one namespace for the outbound message.

Example

This example shows the configuration for a service provider pipeline, where both WS-Addressing specifications are supported. CICS uses the same specification on the outbound message as the inbound message. You can get the same results by specifying an empty <addressing> element.

<addressing>
       <namespace>http://www.w3.org/2005/08/addressing</namespace>
       <namespace>http://schemas.xmlsoap.org/ws/2004/08/addressing</namespace>
</addressing>