public void testPing() throws IOException {
new Socket("127.0.0.1", 8085);
}
public void testServiceInvocation() throws Exception {
HelloPortType bpelService = node.getService(HelloPortType.class, "BPELHelloWorldServiceComponent");
String response = bpelService.hello("Hello");
Assert.assertEquals("Hello World", response);
}