Re: JSP Code to capture HTTP headers

2006-07-31 Thread Shinya Koizumi
use these methods %= request.getParameter() % %= request.getParameterNames() % or you look up javax.serlvet.HttpServletRequest - Original Message - From: Kaushal Shriyan [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Monday, July 31, 2006 12:10 AM Subject:

ThreadPool logFull

2006-07-25 Thread Shinya Koizumi
I was stress-testing for our web application we always meet this TreadPool logFull. I have been doing some research and found our I can change the maximum number of thread in the server.xml. However, surfing the net i found some said that is not the real solution. I am not sure why and if

Re: Restart web app

2006-07-24 Thread Shinya Koizumi
Where can I find code to perform a restart (or stop and then start) of a web application? Thank in advance, Asaf You mean from the batch file? if so can you just call stop and start scripts they will do the trick, no? SK

Re: out of memory error

2006-07-20 Thread Shinya Koizumi
One of solution for out of memory problem is to upgrade to Java 1.5 SK - Original Message - From: MW Janssen [EMAIL PROTECTED] To: 'Tomcat Users List' users@tomcat.apache.org Sent: Wednesday, July 19, 2006 8:39 AM Subject: RE: out of memory error i dont see a memory tab when i right

Re: Tomcat on a server

2006-07-16 Thread Shinya Koizumi
allow multiple clients to execute their programs What kinda program you are talking about? ( some application runs on the command line? ) without affecting other clients execution Yes, you can do this using session. session is managed by web container so you don't have to configure Tomcat to

Re: Getting the date/time from the client

2006-07-11 Thread Shinya Koizumi
One is to embed javascript in the output out.println(HTMLHEADtitleJavaScriptExample/title); out.println(SCRIPT LANGUAGE=JavaScript); out.println(function back() {); out.println(history.back(-1);); out.println(}); out.println(/SCRIPT);

Re: Getting the date/time from the client

2006-07-11 Thread Shinya Koizumi
elaborate that. Thanks and regards Vinu Shinya Koizumi wrote: One is to embed javascript in the output out.println(HTMLHEADtitleJavaScriptExample/title); out.println(SCRIPT LANGUAGE=JavaScript); out.println(function back() {); out.println(history.back(-1);); out.println

Re: Getting the date/time from the client

2006-07-11 Thread Shinya Koizumi
)); } Is there any way to do this (get the client time from the request) ? Or Am I trying to do a dumb thing ? ;) Thanks Regards Vinu Shinya Koizumi wrote: Vinu Yeah, you are right about it, I can't get getDateHeader working. For the solution one, I have setup like this for jsp and worked. %@ page session

Re: starting with windows service

2006-07-11 Thread Shinya Koizumi
Any word on this problem. SK. - Original Message - From: Shinya Koizumi [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Monday, July 10, 2006 3:22 PM Subject: starting with windows service Recently i take over project developed by servlet. Currently whenever start the web server

starting with windows service

2006-07-10 Thread Shinya Koizumi
Recently i take over project developed by servlet. Currently whenever start the web server I have to click on the mycompany.bat file in CATALINA_HOME/bin folder mycompany.bat=== @echo off rem set CATALINA_OPTS=-Djava.security.debug=all cd %CATALINA_HOME%\bin\ catalina

Re: problem accessing the webpages using specific hostname

2006-07-10 Thread Shinya Koizumi
If the firewall is on, won't be able to pin. SK - Original Message - From: Brian Munroe [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Monday, July 10, 2006 4:33 PM Subject: Re: problem accessing the webpages using specific hostname On 7/10/06, [EMAIL