assertNotNull("No response received from service", greeting);
exResponse = response1 + "[Bad guy]";
assertEquals("Get unexcpeted result", exResponse, greeting);
try {
greeter.pingMe();
fail("Should have thrown FaultException");
} catch (PingMeFault ex) {
assertNotNull(ex.getFaultInfo());
}
} catch (UndeclaredThrowableException ex) {