public void testUnqualified() {
Greeter proxy = getProxy("testUnqualified");
String request = "hello world";
String response = proxy.testUnqualified(request);
assertTrue("hello world".equals(response));
// Try the call again
response = proxy.testUnqualified(request);
assertTrue("hello world".equals(response));