use of org.apache.cxf.systest.simple.impl.WSSimpleImpl in project cxf by apache.
the class SimpleFrontendTest method createServers.
@BeforeClass
public static void createServers() throws Exception {
bus = BusFactory.getDefaultBus();
ServerFactoryBean sf = new ServerFactoryBean();
sf.setServiceBean(new WSSimpleImpl());
sf.setAddress(add11);
sf.setBus(bus);
sf.create();
}
Aggregations