fault.addFaultString("Unknow fault raised, the fault is null");
}
DataReader<XMLFault> reader = callback.createReader(XMLFault.class);
if (reader == null) {
throw new WebServiceException("Could not unmarshal fault");
}
Object faultObj = reader.read(null, 0, fault);
objContext.setException((Throwable)faultObj);
} catch (Exception se) {