ServiceClient client = new ServiceClient(ctx, null);
Options options = new Options();
options.setTo(new EndpointReference("http://localhost:"+getTestPort(0)+"/processes/helloWorld"));
client.setOptions(options);
OMElement responseElement = client.sendReceive(getPayload(bundleName));
String response = DOMUtils.domToString(OMUtils.toDOM(responseElement));
System.out.println(response);
System.out.println(response);
assertTrue(response.contains("<helloResponse") && response.contains("Hello " + bundleName + "!"));