I am trying to implement an application that does the following. Assume we have a client :
startSomething(XMLFLAG) call.invoke(EndpointReference_1) call.invoke(EndpointReference_2) call.invoke(EndpointReference_3) An Handler has to intercept the different calls and put the XMLFLAG in the SOAPHeader of all the calls. On the Provider side an Handler has to intercept the call, get the XMLFLAG from the SOAPHeader and pass it to the provider service. In simple words there is a way to directly pass information between Client-Services and Client-Handlers and between Provider-Handlers and Provider-Services ??? Thanks in advance.
