There are two ways how you can deploy a JAX-RPC handler.
1) use <handlerInfoChain> in the service definition 2) wrap it using JAXRPCHandler
What's the difference?
It seems that all handlers that were deployed using handlerInfoChain are called between the global chain and the SOAPService (on the server side), or between the global chain and the Transport Sender (on the client side), respectively. On the other hand, JAXRPCHandler can be deployed in any chain, like a transport specific chain or the global chain. Is this correct?
If yes: why is there <handlerInfoChain> if I can deploy JAX-RPC handlers anywhere I like using JAXRPCHAndler?
Thanks, Thilo
