+ "<ns2:HelloResponse xmlns:ns2='uri:HelloWorld'><text>helloffang</text></ns2:HelloResponse></jbi:part></jbi:message>");
jbi.activateComponent(echo, "echo");
URL wsdl = getClass().getResource("/HelloWorld-DOC.wsdl");
assertNotNull(wsdl);
HelloService helloService = new HelloService(wsdl, serviceName);
HelloPortType port = helloService.getHelloPort();
Client client = ClientProxy.getClient(port);
client.getInInterceptors().add(new LoggingInInterceptor());
HelloRequest req = new HelloRequest();
req.setText("hello");
HelloHeader header = new HelloHeader();