use of org.apache.header_test.rpc.TestRPCHeaderImpl in project cxf by apache.
the class HeaderClientServerTest method setUp.
@Before
public void setUp() throws Exception {
BusFactory.setDefaultBus(getBus());
Object implementor = new TestHeaderImpl();
String address = "http://localhost:9104/SoapHeaderContext/SoapHeaderPort";
endpoint = (EndpointImpl) Endpoint.publish(address, implementor);
implementor = new TestRPCHeaderImpl();
address = "http://localhost:9104/SoapHeaderRPCContext/SoapHeaderRPCPort";
rpcEndpoint = (EndpointImpl) Endpoint.publish(address, implementor);
}
Aggregations