client.getInInterceptors().add(new LoggingInInterceptor());
HelloRequest req = new HelloRequest();
req.setText("hello");
HelloHeader header = new HelloHeader();
header.setId("ffang");
HelloResponse rep = port.hello(req, header);
Thread.sleep(1000);
assertEquals(rep.getText(), "helloffang");
}
public void testEndpointDOCWithExternalConsumerAndCxfSe() throws Exception {