String reply = greeter.sayHi();
Assert.assertNotNull("no response received from service", reply);
Assert.assertEquals(response2, reply);
try {
greeter.pingMe();
Assert.fail("Should have thrown FaultException");
} catch (PingMeFault ex) {
Assert.assertNotNull(ex.getFaultInfo());
}