use of org.apache.cxf.systest.jms.HelloImpl in project cxf by apache.
the class JavaFirstNoWsdlTest method startServer.
@BeforeClass
public static void startServer() {
startBusAndJMS(JavaFirstNoWsdlTest.class);
JaxWsServerFactoryBean svrFactory = new JaxWsServerFactoryBean();
svrFactory.setBus(bus);
svrFactory.getFeatures().add(cff);
svrFactory.setServiceClass(Hello.class);
svrFactory.setAddress(SERVICE_ADDRESS);
svrFactory.setTransportId(JMSSpecConstants.SOAP_JMS_SPECIFICATION_TRANSPORTID);
svrFactory.setServiceBean(new HelloImpl());
svrFactory.create();
}
Aggregations