Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-20 Thread Luis Rivera
ception with a try {} catch () {} pair. > > > > public void getCompany(CompanyInfoHolder company, StringHolder result) > > { > > company.value = new soap.xsd.CompanyInfo(); > > } > > I would appreciate any kind of hint, > > Thanks in advance, > > --Luis

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-20 Thread Luis Rivera
; >> >> none of the logs mention it? >> I realize Tomcat does seem a bit bereft of info in the logs sometime. >> Would it have been a case where it printed to the system console >> instead? >> Mine does that sometimes, instead of (or in addition to) the log(s) &g

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-20 Thread David Smith
ere it printed to the system console instead? Mine does that sometimes, instead of (or in addition to) the log(s) and I troubleshoot it that way. -Original Message- From: Luis Rivera [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 18, 2006 5:00 PM To:

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-19 Thread Luis Rivera
it that way. -Original Message- From: Luis Rivera [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 18, 2006 5:00 PM To: Tomcat Users List Subject: Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException Hi Shankar, Thanks a lot. I found my problem. It turned out not to be a Cl

RE: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-18 Thread Propes, Barry L
- From: Luis Rivera [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 18, 2006 5:00 PM To: Tomcat Users List Subject: Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException Hi Shankar, Thanks a lot. I found my problem. It turned out not to be a Classloader problem, but a

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-18 Thread Luis Rivera
Hi Shankar, Thanks a lot. I found my problem. It turned out not to be a Classloader problem, but a NullPointer (THANKS TO TIM FOR THE HINT :) ) problem in the server, which I had not found because I don't know how to debug my application in Tomcat and there is no single log in the Tomcat direc

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-18 Thread Shankar Unni
Luis Rivera wrote: I have a web service which will JNI to access the application, which according to the documentation should be placed in the shared/classes directory. I did so and I got a dreaded java.lang.reflect.InvocationTargetException, which I believe is a class loader problem. You nee

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-18 Thread Luis Rivera
Hi Tim, I have not solved the problem, but managed to understand that the problem is not where I drop the classes that will make the JNI calls. Dropping them inthe share directory results in the java.lang.reflect.InvocationTargetException at the Client side. 1) To be clear, the call to th e JNI

RE: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-18 Thread Tim Lucia
July 17, 2006 10:03 PM > To: Tomcat Users List > Cc: Tim Lucia > Subject: Re: Tomcat 5.5/Axis 1.4 > java.lang.reflect.InvocationTargetException > >Thanks for the reply Tim, > > Here is the stack trace, it does not look to me like it gives enough > information. Of

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-17 Thread Luis Rivera
Thanks for the reply Tim, Here is the stack trace, it does not look to me like it gives enough information. Of course I am just starting with Tomcat and have some blanks in my brain. I know is the classes are being found, either under commons or shared classes directory, because if I just delet

RE: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-17 Thread Tim Lucia
Please post a full stack trace. TargetInvocationException should have an underlying cause associated with it, like NullPointerException or ClassNotFoundException. Tim > -Original Message- > From: Luis Rivera [mailto:[EMAIL PROTECTED] > Sent: Monday, July 17, 2006 8:57 PM > To: users@tom