RE: setclasspath scripts

2005-07-11 Thread Ben Souther
-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ben Souther F.W. Davison Co. CONFIDENTIALITY NOTICE: This e-mail message, and any accompanying

[OT] Change Log app

2005-03-31 Thread Ben Souther
Can anyone tell me what app this project uses for maintaining the changlog? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Change Log app

2005-03-31 Thread Ben Souther
Thanks On Thu, 2005-03-31 at 10:03, Yoav Shapira wrote: Hi, No app. Committers individually and manually update the changelog when they make changes. Yoav -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 9:44 AM To: Tomcat

RE: DO NOT REPLY [Bug 33339] - Shutdown script down not work

2005-02-03 Thread Ben Souther
the only attempt to re-produce it I was made aware of was made on a completely different platform and that it initially appeared that the -dev list did not have developers that were willing to investigate the problem. Regards, Al. -Original Message- From: Ben Souther [mailto

Re: RE: DO NOT REPLY [Bug 33339] - Shutdown script down not work

2005-02-03 Thread Ben Souther
I have since made a post with what I beleive to be potential fixes to resolve the problem. I saw that post. All other bantering aside, it's good you found the problem. I hope you will add your findings to the bug report so someone else with a similar problem doesn't have to retrace all of

RE: DO NOT REPLY [Bug 33339] - Shutdown script down not work

2005-02-02 Thread Ben Souther
On Wed, 2005-02-02 at 16:54, Al Sutton wrote: In answer to your points; on 3) I'm not asking for it tested on all distros, just those where issues have arisen. If no-one has FC2 installed then thats something the group should know about and should be able to say Sorry, no-one has FC2, rather

Re: Case insensitive URLs: Issue #32806

2004-12-22 Thread Ben Souther
This is a continuation of the discussion here: http://issues.apache.org/bugzilla/show_bug.cgi?id=32806 Ben, I understand the example you posted as comment #8 but I feel this is best handled in release notes. You should dedicate a section to migration notes and discuss this and many

[OT] Re: Case insensitive URLs: Issue #32806

2004-12-22 Thread Ben Souther
Just like code-formatters fix bad style they should handle case sensitivity all over the place to make sure people use the same casing everywhere. Bad style is not a compiler error :) In a language intended to be cross platform case-sensitivity is not a matter of style. For better or worse,

Re: How to add variables into WEB-INF/web.xml or META-INF/*.* ?

2004-12-09 Thread Ben Souther
I should want to add variables like ODBC name into %Tomcat-webapps%/WEB_INF/web.xml. How can you do it? How do you use it in java code (jsp, servlet, basic class). You will want to read up on context initialization parameters and servlet initialization parameters. For a context init param

Re: How to add variables into WEB-INF/web.xml or META-INF/*.* ?

2004-12-09 Thread Ben Souther
One more thing... This question belongs in the Tomcat User's List. The dev list is for people who are building Tomcat. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[doc] First App - Example App

2004-11-23 Thread Ben Souther
Hello, The Example App link at the end of the First App tutorial http://jakarta.apache.org/tomcat/tomcat-5.5-doc/appdev/sample is a bit misleading when viewed off the Apache site from the web. When you click on it, it displays an Apache directory listing. From there, you can drill into the src

RE: 5.5.4 ?

2004-10-26 Thread Ben Souther
, Shapira, Yoav wrote: Hi, Looks like a RESOLVED-WONTFIX ;) Yoav Shapira http://www.yoavshapira.com -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 5:06 PM To: Tomcat Developers List Subject: Re: 5.5.4 ? Yes, I had tested it a little

Re: 5.5.4 ?

2004-10-25 Thread Ben Souther
On Mon, 2004-10-25 at 11:48, Remy Maucherat wrote: Shapira, Yoav wrote: Hi, What are the plans for 5.5.4 ? I want to resolve (either fix or invalid, whatever) Bugzilla 31090 I should have fixed that one, but I'm not sure, so someone needs to test it. Just tested

Re: 5.5.4 ?

2004-10-25 Thread Ben Souther
Yes, I had tested it a little earlier, and it doesn't work. The path would apparently have to be encoded in the same way as the URL. OK, let me know if I can help. Quite frankly, I'm not sure we're going to do this, since the encoding on the client side is quite unpredictable. Other than

Re: AW: DefaultServlet and getOutputStream() / getWriter()

2004-10-12 Thread Ben Souther
Steffen, Compile, run, and view the output from this program. I think you'll see the difference :o) public class Loop{ public static void main(String[] args){ System.out.println(Try-Catch inside loop:); for(int i = 0; i 10; i++){ try{

Re: AW: AW: DefaultServlet and getOutputStream() / getWriter()

2004-10-12 Thread Ben Souther
This is the code that I saw (from the beginning of this discussion on the user's list). begin quote-- PS: Since I am already sending another mail, let me append a pending question: I often see code like this in the servlet: while (...) {

Re: AW: AW: DefaultServlet and getOutputStream() / getWriter()

2004-10-12 Thread Ben Souther
the while condition goes false.. In the second case the try/catch allows the exception to propagate up to the caller as soon as the exception is caught Personally I would use the 2nd approach.. Good Catch!!! Martin- - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat

Re: Javabeans.

2003-12-24 Thread Ben Souther
to place all my JSP files.? -- Ben Souther F.W. Davison Company, Inc. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Urgent !! Help needed regarding Tomcat web server !!

2003-12-11 Thread Ben Souther
how can i set Path CLASSPATH variable? Go here: http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html Once you learn how to set up your classpath, make sure you add servlet.jar to it. Servlet.jar can be found in the TOMCAT_HOME/common/lib directory. Good luck On Thursday

Re: PB when build TC5 from cvs

2003-12-10 Thread Ben Souther
FYI: I found this message while googling for the same problem with the build breaking just after 12/06/2003 on my linux box. Upgrading ANT from vs 1.5.1 to the latest (1.6beata3) fixed it. I traced the problem back a little bit and found that the generated_web.xml file in the examples app

[patch] jsp:getProperty tag prints null to page when object is null.

2003-12-04 Thread Ben Souther
apps to version 5. The attached patch applies to org.apache.jasper.runtime.JspRuntimeLibrary.java Thank you, Ben Souther --- JspRuntimeLibrary.java Thu Dec 4 20:51:54 2003 +++ JspRuntimeLibrary.java.fixed Thu Dec 4 20:19:01 2003 @@ -426,6 +426,7