Hi all,
 
I create factory for my webservice manually this way:
 
            JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
            factory.setBus(bus);
            factory.setServiceClass(CalculatorServiceImpl.class);
            factory.setAddress("/calcService");
            factory.create();
 
Now I need to create factory for multiple webservices. Could anyone say
how to do that? Should I create new JaxWsServerFactoryBean for every
service or there is some factory hat supports multiple services?
 
Best regards, Alex
 
--
Alex Sviridov

Reply via email to