Re: Tomcat and SOAP

2008-07-10 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 y

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 scr

Re: Classloader Concept

2007-04-24 Thread Luis Rivera
connection 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 libr

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 Delbecq

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 t

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 shared

Re: Keeping the server side object alive !!!

2007-01-15 Thread Luis Rivera
ontext (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 coul

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 cr

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 docum

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. I

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
covery updates ??? >> >> Thanks! >> Martin -- >> This email message and any files transmitted with it contain confidential >> information intended only for the person(s) to whom this email message is >> addressed. If you have received this email message in error, p

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

2006-07-24 Thread Luis Rivera
e person(s) to whom this email message is addressed. If you have received this email 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]

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

2006-07-23 Thread Luis Rivera
ely by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: "Luis Rivera" <[EMAIL PROTECTED]> To: 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-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 s

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 s

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 user

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

2006-07-20 Thread Luis Rivera
R. --David 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 c

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

2006-07-19 Thread Luis Rivera
y to debug our application in the server, we could get better light on what is happening and solve problems a lot quicker :|. It's like driving blind right now :|. Anybody knows how to debug remotely axis/tomcat apps? --Luis R. On 7/18/06, Shankar Unni <[EMAIL PROTECTED]> wrote: &g

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

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

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

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

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

2006-07-17 Thread Luis Rivera
-Original 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

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 ha