ByteArrayOutputStream baos = new ByteArrayOutputStream();
try {
msgContext.getCurrentMessage().writeTo(baos);
} catch (Exception e) {
throw new AxisFault("exception", e);
}
String msg = baos.toString();
System.out.println("msg = " + msg);
if (msg.indexOf("xsi:type") >= 0) {
throw new AxisFault("message contains xsi:type");
}