Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread Felipe F. Palma Dias
. Palma Dias" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 2:03 PM Subject: Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException > Yes, try that. > > Felipe F. Palma Dias wrote: > > > Ok, I will go to try, but what must

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread danch
L PROTECTED] > http://www.palmadias.hpg.com.br > ICQ: 133921121 > - Original Message - > From: "danch" <[EMAIL PROTECTED]> > To: "Felipe F. Palma Dias" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Thursday, November 29, 2001 1

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread Felipe F. Palma Dias
. Palma Dias" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 1:50 PM Subject: Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException > > > Felipe F. Palma Dias wrote: > > >>Does your bean have a date field that you'

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread danch
Felipe F. Palma Dias wrote: >>Does your bean have a date field that you're not setting? >> > Has a date field and it is recorded, therefore of first when I create > bean I obtain to execute the program correctly. Sees mine below two codes. > > >>Is it declared as java.sql.Date? >> > No, I

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread Felipe F. Palma Dias
lt;[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 12:59 PM Subject: Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException > Does your bean have a date field that you're not setting? Is it declared > as java.sql.Date? This seams like a problem that we've been seein

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread danch
Does your bean have a date field that you're not setting? Is it declared as java.sql.Date? This seams like a problem that we've been seeing with the newer version of Hypersonic. -danch Felipe F. Palma Dias wrote: > Hello, I'm a new user. I'm brazilian, that's why my english is not good, >

[JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-29 Thread Felipe F. Palma Dias
Hello, I'm a new user. I'm brazilian, that's why my english is not good, sorry. I'm using Jboss 2.4.3, Tomcat 3.2.3, data base Hypersonic and Entity CMP. I'm doing any tests to create and to read CMP beans, I have a JSP file that have the following code: 1- InitialContext jndiCo

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-28 Thread Dmitri Colebatch
an undeclared throwable is thrown when the metho throws an exception not declared in its signature. in this case, the most likely explanation is that you have ommitted the throw clause (or part thereof) from your method signature in the interface. to learn more about the undeclared throwable,

[JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-11-28 Thread Hunter Hillegas
Part of my J2EE application constructs an XML document, sends it to UPS, and gets the response... This originates in a servlet, which calls the EJB container to do the actual communication with UPS... Anyway, when I call the method in the servlet that starts the sequence of events off, I get thi

[JBoss-user] java.lang.reflect.UndeclaredThrowableException: javax.transaction.RollbackException

2001-05-03 Thread Gino . Blyau
I have a client app which is receiving the following exception java.lang.reflect.UndeclaredThrowableException: javax.transaction.RollbackException: Unable to commit, tx=XidImpl [FormatId=257, GlobalId=sni5332061//12, BranchQual=] status=STATUS_ROLLEDBACK at sun.rmi.transport.StreamRemote

[JBoss-user] java.lang.reflect.UndeclaredThrowableException: javax.transaction.RollbackException

2001-05-03 Thread Gino . Blyau
I have a client app which is receiving the following exception java.lang.reflect.UndeclaredThrowableException: javax.transaction.RollbackException: Unable to commit, tx=XidImpl [FormatId=257, GlobalId=sni5332061//12, BranchQual=] status=STATUS_ROLLEDBACK at sun.rmi.transport.StreamRemote

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-23 Thread Brian Elliott
[EMAIL PROTECTED] wrote: > > Hmm.. I'm a bit of a newbie and I haven't read all the thread but.. > > ..but i had this error once with JBoss. I tracked it down to forgetting to > serialize a data holder I was trying to pass using RMI. Tim, I just added "implements Serializable" and the import f

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-22 Thread Jim Archer
Dan, what version of jBoss are you using? Seveal weeks ago there was a bug in jBoss that caused exceptions to not be martialed correctly, and I believe the current PRE 2.1 binary release has this bug as well... Jim --On Thursday, March 22, 2001 10:42 AM -0600 Dan Christopherson <[EMAIL PROTEC

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-22 Thread Tim_Clarke
jboss-user | || | |+---> >| || | To: [EMAIL PROTECTED] | | cc: (bcc: Tim Clarke/Globebyte Limited UK) | | Subject:

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-22 Thread Dan Christopherson
It should have been in d:\jboss\log\server.log. Hmmm. Exceptions are logged at a fairly high level, so you would have had to go out of the way to turn them off. What's the rest of the client-side trace? Maybe something is wacky with your RMI stuff at the client. On Wed, 21 Mar 2001, Brian Elliott

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-22 Thread Alvin Yap
I experience this problem before i went nuts with this. This usually happens when your treating an object as a specific type but that object is not the type you expected. Try checking the type first before casting it or invoking the method to that object. Alvin Brian Elliott wrote: > I can't f

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-22 Thread Brian Elliott
I can't find the trace. I looked in the jboss log: D:\jBoss\log\server.log and trace.log and log.pro and the tomcat logs: D:\tomcat\logs\jasper.log and servlet.log . Am I missing something? Thanks, Brian -- Brian Elliott Unplugged Systems [EMAIL PROTECTED] http://www.unpluggedsystems.com danch

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-21 Thread danch
Take a look in the server-side log. This will give you the server side trace. Have you recently changed the throws clause of 'setDevice', but forgotten to change the interface? That's one possibility. Another possibility is that that something on the server side is throwing a strange exception

[JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-21 Thread Brian Elliott
I am getting an UndeclaredThrowableException when trying to execute a method within my Bean and not sure how to track it down. It looks like I am able to create the bean ok. Here is the code: InitialContext jndiContext = new InitialContext(); Object devRef = jndiContext.lookup("mls/DeviceIde