return null;
}
public Object getSOAPMessage(ComponentInvocation inv) {
if (inv instanceof EJBInvocation) {
EJBInvocation eInv = (EJBInvocation) inv;
if (eInv.isAWebService()) {
//TODO:V3 does this violate JACC spec?, we may have to convert to SOAPMessage on demand
//return eInv.getSOAPMessage();
return eInv.getMessage();
}
}
return null;
}