-
Bug
-
Resolution: Done
-
Major
-
JBossAS-3.2.6 Final, JBossAS-3.2.7 Final, JBossAS-4.0.1 Final, JBossAS-4.0.1 SP1, JBossAS-4.0.2RC1, JBossAS-4.0.2 Final
-
None
-
None
When MarshalledInvocation tries to unmarshall the arguments, it just ignores any errors:
public Object[] getArguments()
{
if (this.args == null)
{
try
catch (Exception e)
{ e.printStackTrace(); } }
return args;
}
The error should be rethrown as a RuntimeException NOT ignored and dumped to STDERR