Re: Servlet as Welcome File doesn't work

2003-12-01 Thread bsouther
That feature has been added in version 5x. Prior to that you have to map to a static file or a JSP. On Monday 01 December 2003 06:58 pm, you wrote: > Hello. > > I'm using tomcat 4.1.29 on debian and I have the following problem: > I need to get "/" handled by my Servlet "myPackage.Root", but I do

Re: tomcat & session invalidate

2003-11-30 Thread bsouther
The memory won't be released until the Garbage Collector (GC) is run. The JVM determines when to run GC based on the available memory. On Friday 28 November 2003 05:38 am, you wrote: > Hi, > I've notice that Tomcat (v.4.1.29) does not release memory on session > invalidate event... > I try to c

Re: Multiple requests to the same servlet is problem

2003-10-29 Thread bsouther
Can you post the servlet code? Are you using global variables in you logic? If so, you probably have a threading issue. On Wednesday 29 October 2003 08:07 am, you wrote: > Hello folks, i have one page with iframes, each iframe has a GET > request, to a servlet that must bring description f

Re: How to cache the user's input in a jsp page?

2003-09-04 Thread bsouther
Is this what you're looking for? <% String name = ""; String age= ""; if(request.getParameter("name") != null){ name = request.getParameter("name"); age = request.getParameter("age"); } %> Name: Age: Select One >1 >2 >3