Re: Servlet jsp is currently unavailable

2003-10-01 Thread Tim Funk
4.1.27 needs a hotfix. As in this bugreport: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22096 -Tim Jonathan Simms wrote: I'm running a clean install of tomcat 4.1.27, and have been able to run the struts-examples, the admin webapp (to my great surprise), and even some of the examples from

Re: Servlet jsp is currently unavailable

2003-10-01 Thread Jonathan Simms
Jeez! So I'm not nuts? Thanks for the quick reply. 4.1.27 needs a hotfix. As in this bugreport: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22096 -Tim Jonathan Simms wrote: I'm running a clean install of tomcat 4.1.27, and have been able to run the struts-examples, the admin

Re: Servlet/JSP Lifecycle and Performance

2003-09-07 Thread Lukas Bradley
AFAIK, no such benchmarks have been made. Once tomcat loads a servlet, it is loaded. Tomcat currently does not unload servlets due to lack of use. Is this the case with Tomcat 5? Lukas - To unsubscribe, e-mail: [EMAIL

Re: Servlet/JSP Lifecycle and Performance

2003-09-07 Thread Bill Barker
Lukas Bradley [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] AFAIK, no such benchmarks have been made. Once tomcat loads a servlet, it is loaded. Tomcat currently does not unload servlets due to lack of use. Is this the case with Tomcat 5? Currently, yes. Lukas

Re: Servlet/JSP Lifecycle and Performance

2003-09-06 Thread Tim Funk
AFAIK, no such benchmarks have been made. Once tomcat loads a servlet, it is loaded. Tomcat currently does not unload servlets due to lack of use. -Tim Lukas Bradley wrote: All, Where can I get a description of how Tomcat handles a Servlet lifecycle from init() to removal from memory? I'm

Re: servlet/jsp/j2ee/pattern/ mailing list

2003-02-21 Thread Andoni
Have you tried the newsgroups? http://groups.google.com is a good place to look for groups but if you want to post regularly you are better getting Outlook Express (or some other client) and an address of a proper news server. Then you have news://comp.lang.java to post to. Also, although you

RE: Servlet jsp is currently unavailable

2002-08-20 Thread Andrew Conrad
It seems that you are erroring on your webdav directory included with Tomcat. Try removing that directory and see if your program loads a little further. - Andrew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 12:17 PM To:

RE: Servlet jsp is currently unavailable

2002-08-20 Thread James_Webb
I am using Tomcat 4.0.4. I had it downloaded prior to installing Forte, and it did add to Forte very easy. I was having this problem prior to installing Forte...thought I had a bug in my code...so I thought maybe I should get some help debugging. I have not tried to uninstall / reinstall

RE: Servlet/Jsp

2002-05-22 Thread Greg Trasuk
Looks like you're asking the JSP to look for the bean in the session rather than the request. Try changing jsp:useBean id=bean class=MyBean scope=session/ to: jsp:useBean id=bean class=MyBean scope=request/ Cheers, Greg Trasuk, President StratusCom Manufacturing Systems Inc.

Re: servlet/jsp executing twice at the same moment

2002-01-04 Thread Robin Lee
- From: Robin Lee [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 03, 2002 9:37 AM Subject: Re: servlet/jsp executing twice at the same moment Is it just JSP's or Servlets too? My problem is just servlets (although i have yet to see any jsp's run twice)... I'm

Re: servlet/jsp executing twice at the same moment

2002-01-04 Thread David Cassidy
- From: Robin Lee [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 03, 2002 9:37 AM Subject: Re: servlet/jsp executing twice at the same moment Is it just JSP's or Servlets too? My problem is just servlets (although i have yet to see any jsp's run twice

Re: servlet/jsp executing twice at the same moment

2002-01-04 Thread kalven . beaver
] @uls.comcc: Subject: Re: servlet/jsp executing twice at the same moment 01/04/02

RE: servlet/jsp executing twice at the same moment

2002-01-03 Thread kalven . beaver
It is not that my code continues to run, but that the ENTIRE jsp runs twice. Spent 3 hours last night on this and still could not find a resolve. I'm not sure if it is a bug or some configuration problem. Some jsp's run once and some run twice. Fortunately for debugging purposes, the same

Re: servlet/jsp executing twice at the same moment

2002-01-03 Thread Robin Lee
: servlet/jsp executing twice at the same moment It is not that my code continues to run, but that the ENTIRE jsp runs twice. Spent 3 hours last night on this and still could not find a resolve. I'm not sure if it is a bug or some configuration problem. Some jsp's run once and some run

Re: Servlet/JSP - content-type

2001-09-07 Thread Craig R. McClanahan
Calling RequestDispatcher.forward() erases any headers that have been set by the servlet, so your technique is not going to work. You will have to set the content type in the JSP page. Craig On Fri, 7 Sep 2001, Ratnakar Palle wrote: Date: Fri, 7 Sep 2001 09:35:36 -0700 From: Ratnakar

RE: Servlet/JSP - content-type

2001-09-07 Thread Ratnakar Palle
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Craig R. McClanahan Sent: Friday, September 07, 2001 9:45 AM To: [EMAIL PROTECTED] Subject: Re: Servlet/JSP - content-type Calling RequestDispatcher.forward() erases any headers that have been set by the servlet, so your technique

RE: Servlet/JSP - content-type

2001-09-07 Thread Craig R. McClanahan
On Fri, 7 Sep 2001, Ratnakar Palle wrote: Date: Fri, 7 Sep 2001 12:07:07 -0700 From: Ratnakar Palle [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Servlet/JSP - content-type Hi Craig, Thanks for your quick response... I understand

RE: Servlet/JSP - content-type

2001-09-07 Thread Ratnakar Palle
. McClanahan Sent: Friday, September 07, 2001 12:18 PM To: [EMAIL PROTECTED] Subject: RE: Servlet/JSP - content-type On Fri, 7 Sep 2001, Ratnakar Palle wrote: Date: Fri, 7 Sep 2001 12:07:07 -0700 From: Ratnakar Palle [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE

RE: Servlet/JSP - content-type

2001-09-07 Thread Craig R. McClanahan
On Fri, 7 Sep 2001, Ratnakar Palle wrote: Date: Fri, 7 Sep 2001 12:41:38 -0700 From: Ratnakar Palle [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Servlet/JSP - content-type Thanks Craig for clarification... I've another question on that line

RE: Servlet/JSP - content-type

2001-09-07 Thread Ratnakar Palle
Thanks Craig, I'll check with TAGLIBS-USER list -Ratnakar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Craig R. McClanahan Sent: Friday, September 07, 2001 1:02 PM To: [EMAIL PROTECTED] Subject: RE: Servlet/JSP - content-type On Fri, 7 Sep 2001