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" Sent: Monday, July 31, 2006 12:10 AM Subject: JSP Code to ca

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 anyone

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'" Sent: Wednesday, July 19, 2006 8:39 AM Subject: RE: out of memory error > i dont see a memory tab when i right click.. > > -O

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: starting with windows service

2006-07-11 Thread Shinya Koizumi
Any word on this problem. SK. - Original Message - From: "Shinya Koizumi" <[EMAIL PROTECTED]> To: 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 I

Re: Getting the date/time from the client

2006-07-11 Thread Shinya Koizumi
nt date. PrintWriter out = response.getWriter(); out.println("Server time " + new Date()); out.println("Client time (long) " + time); out.println("Client time " + new Date(time)); } Is there any way to do this (get the client time from the re

Re: Getting the date/time from the client

2006-07-11 Thread Shinya Koizumi
t" Sent: Tuesday, July 11, 2006 1:24 AM Subject: Re: Getting the date/time from the client Thanks SK, I tried the second solution , but request.getDateHeader("Date") returns -1 . Also I didn't understand the first solution ( embed a javascript), Can u pls elaborate tha

Re: Getting the date/time from the client

2006-07-11 Thread Shinya Koizumi
One is to embed javascript in the output out.println("JavaScriptExample"); out.println(""); out.println("function back() {"); out.println("history.back(-1);"); out.println("}"); out.println(""); out.println(""); The other solution is to get it fro

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" Sent: Monday, July 10, 2006 4:33 PM Subject: Re: problem accessing the webpages using specific hostname > On 7/10/06, [EMAIL PROTECTED] <[EMAIL PROTECT

Re: problem accessing the webpages using specific hostname

2006-07-10 Thread Shinya Koizumi
Can you ping "xyz.ab.edu" from your pc? I am thinking the name resolutoin( ip -> pc name) is not working properly. SK - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Monday, July 10, 2006 3:49 PM Subject: problem accessing the webpages using specific hostname > Hi, > > I i

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