public void pingMe() throws PingMeFault {
// here we need to put the FaultDetail into the FaultDetailDocument
FaultDetailDocument faultDocument =
org.apache.helloWorldSoapHttp.xmlbeans.types.FaultDetailDocument.Factory.newInstance();
FaultDetail faultDetail = faultDocument.addNewFaultDetail();
faultDetail.setMajor((short)2);
faultDetail.setMinor((short)1);
LOG.info("Executing operation pingMe, throwing PingMeFault exception");
throw new PingMeFault("PingMeFault raised by server", faultDocument);
}