public void verifyTwoWay(HeaderTester ht) {
getLogger().debug("Client: calling pingMe");
PingMeT in = new PingMeT();
try {
in.setFaultType("ABCD");
PingMeResponseT ret = ht.pingMe(in);
assertNotNull(ret);
} catch (Exception ex) {
fail("Should not throw any exception");
}
}