Re: [JBoss-user] UndeclaredThrowableException

2001-05-22 Thread danch (Dan Christopherson)
Look at the server's log file. There should be a couple of stack traces there as well. The first of these should point to what's really happening. -danch Hermann RANGAMANA wrote: > Hi all gurus, > > I'm developping a simple apli using jBoss. i successfuly deployed an simple > BMP. But when i

[JBoss-user] UndeclaredThrowableException

2001-05-22 Thread Hermann RANGAMANA
Hi all gurus, I'm developping a simple apli using jBoss. i successfuly deployed an simple BMP. But when i try to call a method on this Bean from the client, the following message is thrown (in the client side) Can anybody help me to understand what this message means and ... the solution? java.l

Re: [JBoss-user] UndeclaredThrowableException problems

2001-03-22 Thread Dan Christopherson
On Thu, 22 Mar 2001, natxo wrote: > > Thank you very much, > > Your advice resolve my problem, but I don't figure out why it doesn't work > in the other way. The root of the confution is that in EJBs the bean implementation doesn't directly implement the remote interface. If this were so, you

Re: [JBoss-user] UndeclaredThrowableException problems

2001-03-22 Thread natxo
Thank you very much, Your advice resolve my problem, but I don't figure out why it doesn't work in the other way. At 12:25 22/03/2001 -0600, you wrote: >Try Tim Clarke's advice, catch the UndeclaredThrowableException, call >getUndeclaredThrowable and print it. This might be more enlightening

Re: [JBoss-user] UndeclaredThrowableException problems

2001-03-22 Thread Dan Christopherson
Try Tim Clarke's advice, catch the UndeclaredThrowableException, call getUndeclaredThrowable and print it. This might be more enlightening. Is 'MessageException' an exception of yours? If so, is it declared as being thrown from your 'getMessage' method in both your bean and the bean's remote inte

Re: [JBoss-user] UndeclaredThrowableException problems

2001-03-22 Thread natxo
The stacktrace is below: java.lang.reflect.UndeclaredThrowableException java.lang.reflect.UndeclaredThrowableException: MessageException: Hola soc una excepcio at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:245) at sun.rmi.transport.StreamRemoteCall

Re: [JBoss-user] UndeclaredThrowableException problems

2001-03-22 Thread Dan Christopherson
What's the stack trace you see from your servlet? On Thu, 22 Mar 2001, ncabre wrote: > Hi, > I''ve read a lot of e-mails with that subject, but I haven't found its > solution. I use Tomcat 3.2.1 standalone and JBoss 2.1. with JDK1.3 in > windows 2000. My problem is when i launch an exception f

[JBoss-user] UndeclaredThrowableException problems

2001-03-22 Thread ncabre
Hi, I''ve read a lot of e-mails with that subject, but I haven't found its solution. I use Tomcat 3.2.1 standalone and JBoss 2.1. with JDK1.3 in windows 2000. My problem is when i launch an exception from EJB, which isn't caught in my client (servlet). I tried a lot of combinations around CLAS