-
Bug
-
Resolution: Done
-
Major
-
None
-
None
It looks like an issue in EndpointPublisherImpl.java
public List<Endpoint> publish(ServiceTarget target, WSEndpointDeploymentUnit unit) throws Exception { ... // [JBWS-3441] hack - fallback JAXWS invocation handler for dynamically generated deployments for (Endpoint ep : dep.getService().getEndpoints()) { synchronized(ep) { ep.setState(EndpointState.STOPPED); ep.setInvocationHandler(new InvocationHandlerJAXWS()); ep.setState(EndpointState.STARTED); } } ... }