assertEquals("CXF", greeter.greetMe("cxf"));
// pingMe - policy attached to binding operation fault should have no effect
try {
greeter.pingMe();
fail("Expected PingMeFault not thrown.");
} catch (PingMeFault ex) {
assertEquals(2, (int)ex.getFaultInfo().getMajor());
assertEquals(1, (int)ex.getFaultInfo().getMinor());
}