invoke();
msg = msgContext.getResponseMessage();
if (msg == null) {
if (FAULT_ON_NO_RESPONSE) {
throw new AxisFault(JavaUtils.getMessage("nullResponse00"));
} else {
return null;
}
}
env = msg.getSOAPEnvelope();
return( env.getBodyElements() );
}
if ( operationName == null )
throw new AxisFault( JavaUtils.getMessage("noOperation00") );
try {
Object res=this.invoke(operationName.getNamespaceURI(),
operationName.getLocalPart(), params);
if( tlog.isDebugEnabled() ) {
t1=System.currentTimeMillis();
tlog.debug("axis.Call.invoke: " + (t1-t0) + " " + operationName);
}
return res;
}
catch( AxisFault af) {
throw af;
}
catch( Exception exp ) {
//if ( exp instanceof AxisFault ) throw (AxisFault) exp ;
entLog.info(JavaUtils.getMessage("toAxisFault00"), exp);
throw new AxisFault( JavaUtils.getMessage("errorInvoking00", "\n" + exp) );
}
}