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