SCAClientFactory clientFactory = SCAClientFactory.newInstance(URI.create("myFooDomain"));
HelloworldService service = clientFactory.getService(HelloworldService.class, "HelloworldComponent/HelloworldService");
assertEquals("Hello petra", service.sayHello("petra"));
RemoteHelloworldService remoteService = clientFactory.getService(RemoteHelloworldService.class, "HelloworldComponent/RemoteHelloworldService");
assertEquals("Hello petra", remoteService.sayHelloRemote("petra"));
assertEquals("Hello petra", service.sayHello("petra"));
}