assertNotNull("no response received from service", reply);
assertEquals(response1 + username, reply);
SayHi request = new SayHi();
SayHiResponse response = greeter.sayHi1(request);
assertNotNull("no response received from service", response);
assertEquals(response2, response.getResponseType());
greeter.greetMeOneWay(System.getProperty("user.name"));
} catch (UndeclaredThrowableException ex) {
throw (Exception) ex.getCause();