The <service_handler_list> element

Specifies a list of message handlers that are invoked for every request.

Used in:

Contained by:

Contains:

One or more of the following elements: However, you should not define <cics_soap_1.1_handler> and <cics_soap_1.2_handler> elements in the same pipeline. If you expect your pipeline to process both SOAP 1.1 and SOAP 1.2 messages, you should use the CICS-supplied SOAP 1.2 message handler.
Remember: In a service provider, you can specify all of these handlers in the <terminal_handler> element, except for the <wsse_handler> handler element.

Example

In a service requester pipeline configuration file, you might specify:Start of change
<service_handler_list>
  <handler>
    ...
  </handler>
  <cics_soap_1.1_handler>
    ...
  </cics_soap_1.1_handler>
  <wsse_handler>
    ...
  </wsse_handler>
</service_handler_list>
End of change