public void testHello() throws Exception {
IGenericService proxy = getProxy("sayHello");
String me = "Scheu";
String response = proxy.sayHello(me);
assertTrue("Hello Scheu".equals(response));
// Try the call again
response = proxy.sayHello(me);
assertTrue("Hello Scheu".equals(response));