It's in the code of the ServletServerInvoker which I uploaded:
| try
| {
| // call transport on the subclass, get the result to handback
| invocationResponse = invoke(invocationRequest);
| }
| catch(Throwable ex)
| {
| log.debug("Error thrown calling invoke on server invoker.", ex);
| invocationResponse = ex;
|
| String sessionId=null;
| if (invocationRequest instanceof InvocationRequest)
| sessionId=((InvocationRequest)invocationRequest).getSessionId();
| invocationResponse=new InvocationResponse(sessionId,ex,true,null);
| //isError = true;
| }
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004164#4004164
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004164
Hi Clebert,
I'm a little confused:
"clebert" wrote :
| at least throw a meaninful Exception
|
"clebert" wrote :
| can you guys remove those throw java.lang.Exception from the code?
|
If I understand, you want something like ClientDisconnectedException instead of a plain Exception? You're not saying we shouldn't throw an exception at all, right?
"clebert" wrote :
| Ron... this is just personal preference...
|
| but do you have a better name than quickRemove... quickWhatever?
|
disconnectALaGrandeVitesse()? :-)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004094#4004094
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004094
I apologize if I've missed the answer to this question elsewhere, but does JBoss-5.0.0-Beta1 support the JEE 5 /lib directory in the root of ear file?
I have a JEE 5 application that I've been using on glassfish, with shared library jars in the /lib folder of the ear file, but I am unable to deploy this application on JBoss 5... I get a NoClassDefFound exception for each class in the shared library jars (during deployment of EJBs).
I'd just like to know if I still have to do the ear's manifest Class-Path thing...
... And I'd much rather be using JBoss...
Thanks in advance!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004091#4004091
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004091