I am creating a web server with endpoint like this...
JaxWsServerFactoryBean svrFactory = new JaxWsServerFactoryBean();
svrFactory.setServiceClass(MyServiceInterface.class);
svrFactory.setAddress("http://192.168.0.50:9000/DashboardService");
svrFactory.setServiceBean(implementor);
// svrFactory.getInInterceptors().add(new LoggingInInterceptor());
// svrFactory.getOutInterceptors().add(new LoggingOutInterceptor());
svrFactory.create();
This works fine but appears to be blocking the threads which called it.
Is there a getThreadedServerInstance() or similar call for this?