Service Chains Configuration File: handlers.xml
The configuration file
<servicecontextname>_handlers.xml is generated as part of the server side components. It chains together the handlers for this service and contains initialization parameters. For more information on handlers, see
Chapter 14, SOAP Message Handlers. Following is an excerpt from dayofweek_handlers.xml:
<configuration>
<service name='DayOfWeekPortService'> 1
<request-handlers> 2
<handler name='http://localhost:8090/dayofweek/DayOfWeekSkeleton'/>
</request-handlers>
<transport-handlers/>
<service-endpoint name='http://localhost:8090/dayofweek/DayOfWeek'/> 3
<response-handlers/>
<fault-handlers/>
</service>
</configuration>
NOTE: The element transport-handlers should not be confused with the transport itself. An optional transport handler might add message encryption, compression, or special encoding. A transport handler manipulates the request before passing it to the request handlers, the response after any response handlers, and just before it is sent by the transport.