System.out.println(hwC.sayHello("name"));
Helloworld hwS = node.getService(Helloworld.class, "HelloworldClientC");
System.out.println(hwS.sayHello("name"));
try {
Helloworld hw = node.getService(Helloworld.class, "HelloworldC");
hw.throwException("name");
} catch (Exception ex) {
// do nothing
StatusImpl.appendStatus("Exception caught on throwException()", "LifecycleTestCase.testAppExceptionShutdown");
}