session timeout

2007-05-28 Thread Pierre Goupil
Hello all ! I'm using a Tomcat-based authentication. How do you do to set the session timeout time ? I mean, the time of inactivity after which one the user must re-login. I'm using Tomcat 5.5. Regards, Pierre -- Mon horizon était désormais les pétales courbés, Ma nouvelle demeure

Unconnected sockets not implemented

2007-05-28 Thread Nencho Lupanov
Hi all, I have tomcat ssl configured ant tried to access it with a jsse client but i get the following error: [java] Exception in thread main org.apache.axis2.AxisFault: Unconnected s ockets not implemented; nested exception is: [java] java.net.SocketException: Unconnected sockets

Re: session timeout

2007-05-28 Thread Olivier Bouchereau
Hello Pierre, Try setting this in your tomcat /conf/web.xml. It should work for all the contexts. session-config session-timeout60/session-timout /session-config (the time is specified in mins) Or you can set this in a specific webapp web.xml so that it would be the only one with a 60

Re: session timeout

2007-05-28 Thread Olivier Bouchereau
There is a spelling mistake in what i wrote : session-config session-timeout60/session-timeout /session-config This should work better i guess ;) 2007/5/28, Olivier Bouchereau [EMAIL PROTECTED]: Hello Pierre, Try setting this in your tomcat /conf/web.xml. It should work for all the

Is there opportunity to replicate configuration files for nodes of cluster?

2007-05-28 Thread Corobitsyn Roman
Hello list Is there opportunity to replicate configuration files for nodes of cluster? Thx - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: session timeout

2007-05-28 Thread albrecht andrzejewski
Quoting Pierre Goupil [EMAIL PROTECTED]: Hello all ! I'm using a Tomcat-based authentication. How do you do to set the session timeout time ? I mean, the time of inactivity after which one the user must re-login. You can set the http session-time into the Web.xml file of you webapp:

Tomcat Native Library Breaks SSL

2007-05-28 Thread Mike Grandmaison
I am working with Windows XP Tomcat 5.5.23 http://tomcat.heanet.ie/native/1.1.10/binaries/win32/ I followed the openssl instructions at http://www.galatea.com/flashguides/tomcat-ssl-5-unix to setup my ssl. When I start tomcat and try to connect to localhost:8443 the browser sits there

Re: Is there opportunity to replicate configuration files for nodes of cluster?

2007-05-28 Thread Filip Hanik - Dev Lists
nope, not at this time Filip Corobitsyn Roman wrote: Hello list Is there opportunity to replicate configuration files for nodes of cluster? Thx - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,

RE: Tomcat Native Library Breaks SSL

2007-05-28 Thread Caldarale, Charles R
From: Mike Grandmaison [mailto:[EMAIL PROTECTED] Subject: Tomcat Native Library Breaks SSL Windows XP Tomcat 5.5.23 http://tomcat.heanet.ie/native/1.1.10/binaries/win32/ I followed the openssl instructions at http://www.galatea.com/flashguides/tomcat-ssl-5-unix to setup my ssl.

Admin config

2007-05-28 Thread Albert Shih
Hi all I've a very very newbie on tomcat (first day I try to configure tomcat)... I've install from ports (FreeBSD) the tomcat 5.5 (need by my web-applications). The applications I need to run is configured by admin tomcat. Well for this I've install admin module and it seem everything working

Reload keystore

2007-05-28 Thread Samuel Scheidegger
If I add a new client-certificate to the keystore, how can I force Tomcat to reload the keystore without restarting tomcat? Can I set a timer to say tomcat has to reload the keystore every xx-seconds? Or is there any way to program this? Thank you for your help Sam

RE: Tomcat Native Library Breaks SSL

2007-05-28 Thread Lakshmi Venkataraman
Also, use tcnative-1.1.9. I also encountered problems with 1.1.10. --Lakshmi -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Monday, May 28, 2007 7:38 AM To: Tomcat Users List Subject: RE: Tomcat Native Library Breaks SSL From: Mike Grandmaison

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Rashmi Rubdi
On 5/28/07, Dejan Krsmanovic [EMAIL PROTECTED] wrote: We have two applications running on the same Tomcat instance. These two applications are used by completely different people and one of them has much higher traffic than another one. Recently we have upgraded to Tomcat 6.10 and start

RE: Configuring Tomcat 5.5 and IIS 6

2007-05-28 Thread rcgeorge23
Hi Chuck, Thanks for that. I've now downloaded and attempted to set up the jk connector - I think I've got a little further but I'm still not seeing the page that should be served up by Tomcat. I've set up a simple set of config files (essentially just grabbing them from the jakarta how-to and

Re: Excluding JSP compiler from Tomcat

2007-05-28 Thread Rashmi Rubdi
On 5/28/07, lightbulb432 [EMAIL PROTECTED] wrote: Thanks for your response. For the first of the two options you presented, what exactly happens during the web.xml autogeneration? Will it simply change only the servlet elements but leave everything else as is in my current web.xml, including

Tomcat 6.0.13 issue with web.xml generated by Eclipse

2007-05-28 Thread Michael Hoffman
I allow Eclipse to generate and update my web.xml file for me as part of a dynamic web project. When it generates the web.xml, it uses project facets to add namespaces to my web.xml file as below: web:web-app xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: Tomcat Native Library Breaks SSL

2007-05-28 Thread Mike Grandmaison
You might try following the real documentation: http://tomcat.apache.org/tomcat-5.5-doc/apr.html#HTTPS - Chuck Thank you, actually I found an old message from you when I searched the archive and that is how I thought to remove the native library in order to get my install to work again. I

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Dejan Krsmanovic
Rashmi Rubdi wrote: It is hard to tell what could be the problem without knowing full details of how the 2 projects Host, Context etc are configured. Are they at the ROOT context, or other Context? No, they are on different contexts (not ROOT). Are they on a virtual host or all of them on

Re: Excluding JSP compiler from Tomcat

2007-05-28 Thread Len Popp
Well, you didn't say what version of Tomcat you're using. Those files do indeed exist, in Tomcat 5.5. For Tomcat 6, in the lib directory you'll see 3 Jasper jars. Try removing those. I don't know if it'll cause any problems, but you'll only save a couple of MB of disk space, and no runtime memory

Re: Web application receives request parameters sent to another application on Tomcat 6

2007-05-28 Thread Len Popp
It is possible that Tomcat resuses request objects. I'm not sure it does, but it might. For that reason, you're only allowed to use the request object in your servlet's doGet or doPost method, you can't stash it somewhere (e.g. in the HttpSession) and access it later. (This is mentioned in the

Installing ISAPI redirect for IIS

2007-05-28 Thread Al Sparks
I've got a Windows 2000 server running IIS (IIS 5.x) and I've installed Apache Tomcat 6.0. I want to install the ISAPI redirector. I've accessed the following instructions: http://tomcat.apache.org/connectors-doc-archive/jk2/jk2/installhowto.html but according to one post I've read on this

Using servlet and mysql

2007-05-28 Thread Teh Noranis Mohd Aris
Hi, I would like to access mysql database from a servlet but I'm not sure what to initialize for the String connectionURL marked as jdbc:mysql://localhost:/xxx in the program below. I got this program from the internet which I would like to run in my computer. Can anyone please

Re: Using servlet and mysql

2007-05-28 Thread Foo Shyn
Hi, would be ur database port, xxx will be ur database name HTH FooShyn Teh Noranis Mohd Aris wrote: Hi, I would like to access mysql database from a servlet but I'm not sure what to initialize for the String connectionURL marked as jdbc:mysql://localhost:/xxx in the program

Re: Using servlet and mysql

2007-05-28 Thread Teh Noranis Mohd Aris
Thank you so much for the reply. I've put jdbc:mysql://localhost:8080/teh but I got the error java.lang.ClassNotFoundException: com.mysql.jdbc.Driver. I'm very new to using mysql database and servlet. Can you please explain to me how to create the database name and its fields? Should I install