Re: Tomcat and SOAP

2008-07-11 Thread Luis Rivera
I use Apache Axis with Tomcat and works just fine. The configuration is done very easily if you use the deployment ant tasks for axis administration. --Luis R. On Thu, Jul 10, 2008 at 11:40 PM, Vinay Chilakamarri [EMAIL PROTECTED] wrote: Hi, SOAP is just a protocol. I am assuming that you

Re: Debugging tomcat with eclipse

2008-02-13 Thread Luis Rivera
And don't forget to set JPDA_ADDRESS=8000 JPDA_TRANSPORT=dt_socket as you did before :) --Luis R. On Feb 13, 2008 9:19 AM, Adam Gordon [EMAIL PROTECTED] wrote: It's actually MUCH easier than that... :-) If you use Tomcat's start and stop scripts, pass the jpda parameter to the script,

Re: Classloader Concept

2007-04-24 Thread Luis Rivera
Hi, Just as a comment. I use the shared classloader by using the shared folder to avoid loading multiple times my shared libraries (for jni use). I am not sure what is the difference with the common/lib classloader, but it did not work when I used that one. --Luis R. On 4/24/07, David

Re: Classloader Concept

2007-04-24 Thread Luis Rivera
pooling. Shared/lib is only visible to the webapps -- tomcat internals can't see or access it. --David Luis Rivera wrote: Hi, Just as a comment. I use the shared classloader by using the shared folder to avoid loading multiple times my shared libraries (for jni use). I am not sure what

Re: Tomcat JNI and native libraries

2007-02-28 Thread Luis Rivera
Hi, As far as I understand, libraries can be placed anywhere as long as that directory is in the path (environment variable, not classpath), while the jni java side has to be placed either in the shared or common directories. I have it working in the shared directory, so that Tomcat does not

Re: Classloading scenario

2007-02-20 Thread Luis Rivera
Hi, In my experience, since I have to use the JNI, I am forced to use the shared space for some classes. The only way I made it work is to place everything that is referenced by the classes in the shared space, in the shared space. The classes in WEB-INF/.. have no problems accessing the

Keeping the server side object alive !!!

2007-01-15 Thread Luis Rivera
Hi, I would like to know how could I jump start my web service in tomcat before any call from the client is made. My first version only needed to be stateless and that worked fine, since I noticed that each call from the client creates a new object in the server. However, now I would like to

Re: Keeping the server side object alive !!!

2007-01-15 Thread Luis Rivera
(webapp) starts and can perform initialization, and when the context is destroyed you can perform de-initialization (stop your threads, cleanup ressources and such). regards Leon On 1/15/07, Luis Rivera [EMAIL PROTECTED] wrote: Hi, I would like to know how could I jump start my web service

Re: SSL Certificate

2007-01-11 Thread Luis Rivera
I am not sure of this. But I believe you can install your self signed certificate on your browser, that way it will trust it next time. --Luis R. On 1/11/07, Jim Reynolds [EMAIL PROTECTED] wrote: I have configured SSL a while back and created a temporary certificate following the

Re: JNI native libraries and Tomcat reloading web-apps

2006-10-12 Thread Luis Rivera
Hi Eric, I have a JNI application also and I followed the advise from the Tomcat documentation, where they suggest that the class that loads the dll's or so's libraries are placed either in the shared/classes directory or the common/classes directory. I do it in the shared/classes directory.

Re: Classloader hierarchy viewer?

2006-10-03 Thread Luis Rivera
If you find something like that, please let me know :). Something like that would prevent a lot of headaches, since Tomact has given me quite some headaches and I have had to find some unwanted work arounds. --Luis R. On 10/2/06, Timothy Collett [EMAIL PROTECTED] wrote: Greetings. Does

Re: revision 227023 commons-discovery

2006-08-29 Thread Luis Rivera
message in error, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: Luis Rivera [EMAIL PROTECTED] To: Martin Gainty [EMAIL PROTECTED] Cc: Tomcat Users List users@tomcat.apache.org

Re: java.lang.LinkageError: Class soap/xsd/CompanyInfo violates loader constraints

2006-07-24 Thread Luis Rivera
, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - *From:* Luis Rivera [EMAIL PROTECTED] *To:* Raju Balugu [EMAIL PROTECTED] *Cc:* Tomcat Users List users@tomcat.apache.org *Sent:* Monday

java.lang.LinkageError: Class soap/xsd/CompanyInfo violates loader constraints

2006-07-23 Thread Luis Rivera
HELP PLEASE, PLEASE PLEASE, Any tomcat Guru knows what can cause this exception? I need to have some classes either in shared or common, outside of the webapps directory. This is causing my a great headache, and only by activating the loggin in the webapps directory I saw the trace you will

Re: java.lang.LinkageError: Class soap/xsd/CompanyInfo violates loader constraints

2006-07-23 Thread Luis Rivera
by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: Luis Rivera [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Sunday, July 23, 2006 8:03 AM Subject: java.lang.LinkageError: Class soap/xsd/CompanyInfo violates loader

java.lang.LinkageError: Class soap/xsd/CompanyInfo violates loader constraints

2006-07-22 Thread Luis Rivera
HELP PLEASE, PLEASE PLEASE, Any tomcat Guru knows what can cause this exception? I need to have some classes either in shared or common, outside of the webapps directory. This is causing my a great headache, and only by activating the loggin in the webapps directory I saw the trace you will

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

2006-07-20 Thread Luis Rivera
Luis Rivera wrote: Hi Barry and Tomcat/users/devs, I am hoping an axis/tomcat/dev/user will have a good advise. I am sure more than one user has needed to use axis/tomcat and a JNI interface, so I am sure this has been done. I need classes in the shared context and classes in the webapps

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

2006-07-20 Thread Luis Rivera
for what each classloader is allowed to use. Does anybody have a working example or has any idea of what could be added or modified in the policy file to make this work. Thanks in advance, --Luis R. On 7/20/06, Luis Rivera [EMAIL PROTECTED] wrote: Hi David and tomcat users/devs, First

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

2006-07-19 Thread Luis Rivera
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) and I troubleshoot it that way. -Original Message- From: Luis Rivera

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

2006-07-18 Thread Luis Rivera
: 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

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

2006-07-18 Thread Luis Rivera
R. On 7/18/06, Shankar Unni [EMAIL PROTECTED] wrote: 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

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

2006-07-17 Thread Luis Rivera
Hi Tomcat users, 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. However, I

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

2006-07-17 Thread Luis Rivera
Message- From: Luis Rivera [mailto:[EMAIL PROTECTED] Sent: Monday, July 17, 2006 8:57 PM To: users@tomcat.apache.org Subject: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException Hi Tomcat users, I have a web service which will JNI to access the application, which according