Problem with webservice handlers
Hi,
We have some jax-ws webservice clients . We configured them in web.xml using
PMService service/PMService test.PManagementService WEB-INF/wsdl/PMservice.wsdl nume chain.handler
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
Responses