public void testReference() throws MalformedURLException, IOException {
HelloWorldService client = node.getService(HelloWorldService.class, "HelloWorldClient/HelloWorldService/sca");
Assert.assertEquals("Hello beate", client.sayHello("beate"));
Assert.assertEquals("Hello beate arnold", client.sayHello2("beate", "arnold"));
Assert.assertEquals(0, client.sayHello4(true));
}
@Test
public void testComplexParams() throws MalformedURLException, IOException {