public void testExplicit() throws Exception {
node = NodeFactory.getInstance().createNode(URI.create("myFooDomain"), new String[] {"target/classes"});
node.start();
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"));
}