Problem with webservice handlers
Hi,
We have some jax-ws webservice clients . We configured them in web.xml using
<service-ref>
<description>PMService</description>
<service-ref-name>service/PMService</service-ref-name>
<service-interface>test.PManagementService</service-interface>
<wsdl-file>WEB-INF/wsdl/PMservice.wsdl</wsdl-file>
<handler-chains>
<handler-chain>
<handler>
<handler-name>nume</handler-name>
<handler-class>chain.handler</handler-class>
</handler>
</handler-chain>
</handler-chains>
</service-ref>
Then we load the class using a custom factory :
initialCtx = new InitialContext();
Service service=null;
service = (Service) initialCtx.lookup(getJndiContext());
It works, but the handler is not applied .
Any ideas?
Thanks