war files and context entries

2002-12-10 Thread Dave Patton
entry is: [timestamp] StandardContext[/cda]: Sending application start events [timestamp] StandardContext[/cda]: Starting filters Am I missing something here? Obviously I am cause it doesnt work. I know my war file is correctly configured because it works fine without the Context entry. Dave Patton

RE: Java Logger problem with Tomcat4 web apps on Unix platforms...

2002-10-24 Thread Dave Patton
You need to provide some more information. What is the code that sets up the logging file look like? Where are you telling it to put the log file? -Original Message- From: Vijay KN [mailto:KNVIJAY;novell.com] Sent: Thursday, October 24, 2002 00:46 To: [EMAIL PROTECTED] Subject: Java

Re: SSL Servlet Client

2002-10-21 Thread Dave Patton
Have you generated all your certificates for an ssl connection? If not that will be the problem. If you have, make sure that Tomcat can find the certificates in question. The Tomcat docs have a good piece on hooking up SSL I followed it without a hitch. Dave Patton On Mon, 2002-10-21 at 10:34

Re: Session Time out - Tomcat

2002-10-21 Thread Dave Patton
Yes. Using the HttpSession object, or I believe in the new J2ee API there is a HttpSessionListener object, you can test if the session is valid. If it is not then redirect to wherever you want. Probably the simplest way is to test via if(request.getSession() == null) then go somewhere else On

Re: SSL Servlet Client

2002-10-21 Thread Dave Patton
-Djavax.net.ssl.trustStore=storename -Djavax.net.ssl.trustStorePassword=password Hope that helps. Please let me know if it does. Dave Patton On Mon, 2002-10-21 at 11:30, [EMAIL PROTECTED] wrote: I generated a .keystore file for tomcat using keytool -genkey -alias tomcat -keyalg RSA this file

Re: SSL Servlet Client

2002-10-21 Thread Dave Patton
=true useURIValidationHack=false Factory className=org.apache.coyote.tomcat4.CoyoteServerSocketFactory clientAuth=false protocol=TLS keystorePass=[your keystore pass]/ /Connector If this doesnt work, then I am out of suggestions. ANYONE ELSE?!?! Dave Patton

Re: serverName_access_log too cryptic

2002-10-21 Thread Dave Patton
Use log4j. It is highly configuarble and very easy to use and you can control exactly how verbose the logging is. Its available at http://jakarta.apache.org Dave Patton On Sun, 2002-10-20 at 23:15, [EMAIL PROTECTED] wrote: Hi all. I am trying to debug some of my JAVA programs

Re: logging

2002-10-16 Thread Dave Patton
Remove all Loggers from the server.xml file On Wed, 2002-10-16 at 09:41, Pearsall, Kyle wrote: I would like to be able to turn off all logging as possible on Tomcat. What is the best way to do this? Thanks, Kyle -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: How can I change default 8080 port to 80

2002-10-15 Thread Dave Patton
They should not both be listening on port 80. If you really need them both, the best bet is to have Apache on port 80 and have it forward requests to Tomcat through the Warp connector. I am very surprised that you got them both to listen simultaneously on port 80. Dave Patton On Mon, 2002-10

RE: Tomcat and Webalizer

2002-10-15 Thread Dave Patton
server.xml file for your web app such as: Context path=/begjsp-ch01 docBase=begjsp-ch01 debug=0 privileged=true/ Check out the docs for Tomcat under the Context entry. It explains all the parameters in details. I hope this helps. Dave Patton On Mon, 2002-10-14 at 18:00, rdevine wrote: Dave

webalizer/tomcat -- How to do it

2002-10-15 Thread Dave Patton
in the webalizer.conf file with the entry: IgnoreURL /usage* Thats all there is to it. I did this yesterday in about 30 minutes, including trying to figure it out as I went. It should only take you 15 minutes to do this. I hope this helps you. Cheers Dave Patton -- To unsubscribe

Re: Help please - Session timeout problem

2002-10-15 Thread Dave Patton
check int HttpSession.getMaxInactiveInterval() On Tue, 2002-10-15 at 13:44, Bill Leath wrote: Hello, I am having a problem with sessions timing out using Tomcat 4.1 on linux 7.2. I have set the following line in the server.xml file: connectionTimeout=12 I then stopped and restarted

Re: Help please - Session timeout problem

2002-10-15 Thread Dave Patton
in Tomcat, from which you can get the Session and call the method getMaxInactiveInterval. That's all I can think of -- Anyone else? Dave Patton On Tue, 2002-10-15 at 16:07, Bill Leath wrote: Thanks Dave, Do you know of any way to check outside an application? Like on the linux command line

Re: Installation cook-book or HOW-TO

2002-10-14 Thread Dave Patton
What specifically is not working? I will be more than happy to walk you through the process if you can tell me what happens when you try to start Tomcat? Dave Patton On Mon, 2002-10-14 at 12:53, Greg Bullough wrote: I've sent messages asking for the list FAQ, but 'none available yet' comes

Tomcat and Webalizer

2002-10-14 Thread Dave Patton
this but if you are please let me know and I will gladly share. Cheers Dave Patton -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]