The <named_transport_entry> pipeline configuration element
Contains a list of handlers that are to be invoked when a named transport resource is being used by a service provider.
- For the IBM® MQ transport, the named resource is the local input queue on which the request is received.
- For the HTTP transport, the resource is the TCPIPSERVICE that defines the port on which the request was received.
Used in:
- Service provider
Contained by:
<transport>element
Attributes
- type
- The transport mechanism with which the named resource is associated:
- wmq
- The named resource is a queue
- http
- The named resource is a TCPIPSERVICE
Contains:
- A
<name>element, containing the name of the resource - An optional
<transport_handler_list>element. Each<transport_handler_list>contains one or more<handler>elements.If you do not code a
<transport_handler_list>element, then the only message handlers that are invoked when the named transport is used are those that are specified in the<service>element.
If any of the configuration elements are used, they must be used in the sequential order that they are listed.
Example
<named_transport_entry type="http">
<name>PORT80</name>
<transport_handler_list>
<handler><program>HANDLER1</program><handler_parameter_list/></handler>
<handler><program>HANDLER2</program><handler_parameter_list/></handler>
</transport_handler_list>
</named_transport_entry>
In this example, the message handlers specified (HANDLER1 and HANDLER2) are invoked for messages received on the TCPIPSERVICE with the name PORT80.