public void testPing() throws IOException {
new Socket("127.0.0.1", 8085);
}
public void testServiceCall() throws IOException {
HelloWorldService helloWorldService =
domain.getService(HelloWorldService.class, "HelloWorldServiceComponent/HelloWorldService");
assertNotNull(helloWorldService);
assertEquals("Hello Smith", helloWorldService.getGreetings("Smith"));
}