Search in sources :

Example 1 with WSSimpleImpl

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();
}
Also used : WSSimpleImpl(org.apache.cxf.systest.simple.impl.WSSimpleImpl) ServerFactoryBean(org.apache.cxf.frontend.ServerFactoryBean) BeforeClass(org.junit.BeforeClass)

Aggregations

ServerFactoryBean (org.apache.cxf.frontend.ServerFactoryBean)1 WSSimpleImpl (org.apache.cxf.systest.simple.impl.WSSimpleImpl)1 BeforeClass (org.junit.BeforeClass)1