Re: ssl startup problem

2003-12-17 Thread Jason Jesso
Do mean upgrade Tomcat? If so, to what? Bill Barker wrote: 4.1.24 only supports Sun's JSSE. You'll need to upgrade to be able to use IBM's Providers. Jason Jesso [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am using AIX5.2, Tomcat 4.1.24, Java 1.4. When I start Tomcat

ssl startup problem

2003-12-16 Thread Jason Jesso
I am using AIX5.2, Tomcat 4.1.24, Java 1.4. When I start Tomcat using SSL I get errors in the catalina.out. The security providers in the java.security file are listed as follows: security.provider.1=com.ibm.jsse.IBMJSSEProvider security.provider.2=com.ibm.crypto.provider.IBMJCE

reloading web.xml

2003-09-05 Thread Jason Jesso
I have noticed that Tomcat will see any changes in web.xml for a particular webapp without restarting the server. But I have seen a few times where it doesn't reload the update to web.xml for my webapp. Is this normal? Or is there a way to get Tomcat to reload web.xml on every change to it?

servlet execution when updating web.xml

2003-09-05 Thread Jason Jesso
Hi: I have a servlet which adds servlet config to web.xml. It seems that I get a servlet exception. If I reload it the servlet then it works. I think Tomcat stops execution of servlets while it is reloading web.xml.Is this the case? If so, is there anyway around this? Thanks again,

adding a servlet to my webapp

2003-09-03 Thread Jason Jesso
When I go to my servlet I get HTTP Status 404 - /jasonTest/servlet/foo/HelloWorld The url is: http://neptune/jasonTest/servlet/foo/HelloWorld My config is as follows: (What is wrong here??) I have a webapp defined in server.xml as === Context path=/jasonTest

Re: adding a servlet to my webapp

2003-09-03 Thread Jason Jesso
But, I don't want to use the invoker. I want to be able to specify the servlet itself in web.xml. The invoker is evil according to the link you gave me. John Turner wrote: You have to map your servlet in web.xml. FAQ: http://jakarta.apache.org/tomcat/faq/misc.html#invoker John Jason

Re: adding a servlet to my webapp

2003-09-03 Thread Jason Jesso
. I want to be able to specify the servlet itself in web.xml. The invoker is evil according to the link you gave me. John Turner wrote: You have to map your servlet in web.xml. FAQ: http://jakarta.apache.org/tomcat/faq/misc.html#invoker John Jason Jesso wrote: When I go to my servlet I get

Re: adding a servlet to my webapp

2003-09-03 Thread Jason Jesso
/WEB-INF/classes http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/deployment.html HTH, Jon Jason Jesso wrote: My guess is that this is right then: ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http

running a servlet

2003-08-01 Thread Jason Jesso
Hi: I am having trouble executing a servlet under jakarta-tomcat-4.1.18. The examples web app that comes with Tomcat works fine. I created a webapp in conf/server.xml as Context path=/jasonTest docBase=jasonTest debug=0 reloadable=true Logger