public void pingMe() throws PingMeFault {
System.out.println("received calling PingMeFault!");
FaultDetail faultDetail = new FaultDetail();
faultDetail.setMajor((short)2);
faultDetail.setMinor((short)1);
throw new PingMeFault("PingMeFault raised by server", faultDetail);
}