Re: [VOTE] Proposed Tomcat 4.0-Beta-2 Code Freeze Date

2001-03-19 Thread Amy Roh
- Clip and Return This Portion - +1 [X] I support the proposed release, and will work to support it +0 [ ] I support the proposed release, but cannot work on it at this time -0 [ ] I do not support the proposed release, but do not have an a

Re: FYI: Tomcat 4.0 Release Planning Futures

2001-03-19 Thread Kief Morris
Craig R. McClanahan typed the following on 08:52 PM 3/19/2001 -0800 >So where does that leave us in the mean time? I propose that we continue >to innovate new features in succeeding beta releases of Tomcat 4.0 >(treating them essentially the way that "milestone" releases get treated >in many deve

Re: [VOTE] Proposed Tomcat 4.0-Beta-2 Code Freeze Date

2001-03-19 Thread Kief Morris
Craig R. McClanahan typed the following on 08:32 PM 3/19/2001 -0800 >- Clip and Return This Portion - > >+1 [ ] I support the proposed release, and will work to support it >+0 [ ] I support the proposed release, but cannot work on it > at this time >-0 [ ]

Re: [VOTE] Proposed Tomcat 4.0-Beta-2 Code Freeze Date

2001-03-19 Thread Remy Maucherat
> - Clip and Return This Portion - > > +1 [X] I support the proposed release, and will work to support it > +0 [ ] I support the proposed release, but cannot work on it > at this time > -0 [ ] I do not support the proposed release, but do not have an >

FYI: Tomcat 4.0 Release Planning Futures

2001-03-19 Thread Craig R. McClanahan
Many TOMCAT-DEV readers might be unaware that the Apache Software Foundation (the group that sponsors the Jakarta project, along with many others) is an Executive Member of the Java Community Process program, which is the group which accepts or rejects the Java Specification Requests (JSRs) that c

[VOTE] Proposed Tomcat 4.0-Beta-2 Code Freeze Date

2001-03-19 Thread Craig R. McClanahan
There have been a large number of feature additions and bug fixes to the Tomcat 4.0 code base since Tomcat 4.0-beta-1 was published in January. This includes implementation of some changes to the servlet API that have been approved by the JSR-053 expert group, and a fix for a cross site JavaScrip

cvs commit: jakarta-tomcat-4.0 RELEASE-NOTES-4.0-B2.txt

2001-03-19 Thread craigmcc
craigmcc01/03/19 20:14:48 Added: .RELEASE-NOTES-4.0-B2.txt Log: Add release notes describing the changes of a prospective Beta 2 release of Tomcat 4.0. Revision ChangesPath 1.1 jakarta-tomcat-4.0/RELEASE-NOTES-4.0-B2.txt Index: RELEASE-N

TOMCAT 4.x SSI Status

2001-03-19 Thread Amy Roh
Bip, What's the status on the SSI feature that you were working on. I would like to help you finish all the features and commit the code if you'd like. Status? Amy

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread Remy Maucherat
> Thanks, I look forward to the final patch. > > I placed jnp-client.jar in jdk1.3/jdk/lib/ext and removed a hand build jar > (containing only jnpURLContextFactory) in jakarta-tomcat-4.0/common/lib. > Finally, setting > "java.naming.factory.url.pkgs = org.apache.naming:org.jnp.interfaces". > Tim

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/naming/factory EjbFactory.java

2001-03-19 Thread remm
remm01/03/19 17:21:07 Modified:catalina/src/share/org/apache/naming/factory EjbFactory.java Log: - Use the specified ejb-link to resolve the EJB reference. - Will do a JNDI lookup using the URL specified. - Will also check the type of the bean returned, and check if it imple

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread tttye
Thanks, I look forward to the final patch. I placed jnp-client.jar in jdk1.3/jdk/lib/ext and removed a hand build jar (containing only jnpURLContextFactory) in jakarta-tomcat-4.0/common/lib. Finally, setting "java.naming.factory.url.pkgs = org.apache.naming:org.jnp.interfaces". Tim Remy Mauche

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread Remy Maucherat
Quoting [EMAIL PROTECTED]: > I've got some of the lookup working now, but still fails: > WORKS--> lc = (Context)ctx.lookup("jnp://ttt1.ca.com:1099"); > WORKS--> ho = > (EJBHome)ctx.lookup("jnp://ttt1.ca.com:1099/S_STRESS_31Kps"); > FAILS--- ho = (EJBHome)ctx.lookup("java:/comp/ejb/S_STRESS_31

cvs commit: jakarta-tomcat/src/doc/appdev web.xml.txt

2001-03-19 Thread marcsaeg
marcsaeg01/03/19 15:51:44 Modified:src/doc/appdev Tag: tomcat_32 web.xml.txt Log: Fixed a couple simple typos. was in a couple places. PR: 1012 Submitted by: [EMAIL PROTECTED] (Kaaskopjes) Revision ChangesPath No revision No

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread tttye
I've got some of the lookup working now, but still fails: WORKS--> lc = (Context)ctx.lookup("jnp://ttt1.ca.com:1099"); WORKS--> ho = (EJBHome)ctx.lookup("jnp://ttt1.ca.com:1099/S_STRESS_31Kps"); FAILS--- ho = (EJBHome)ctx.lookup("java:/comp/ejb/S_STRESS_31K"); Web.xml entry: Sam

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread GOMEZ Henri
>From tomcat.sh => Where is NEW_LOADER mode => if [ "$NEW_LOADER" = "1" ]; then MAIN=org.apache.tomcat.startup.Main export MAIN CLASSPATH=${TOMCAT_HOME}/lib/tomcat.jar ===> CLASSPATH = ${TOMCAT_HOME}/lib/tomcat.jar else MAIN=org.apache.tomcat.startup.Tomcat ## Temp - o

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread GOMEZ Henri
>On Mon, 19 Mar 2001, GOMEZ Henri wrote: > >> It's a WANTED feature. >> With TC 3.3 there is a new classe loader system. Take >> a look at change3.3 file included in distro. >> A quick fix for your problem is to copy jaxp / crimson jars >> in TOMCAT_HOME/lib/common. >> > >Tomcat 4.0 follows the s

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread tttye
Remy Maucherat writes: > > Remy Maucherat writes: > > > > > Quoting [EMAIL PROTECTED]: > > > > > > > I am trying to make the use jnp://ttt1:1099/EJBresource > work. > > > > > > So it doesn't work either the other way around ? > > No: ... > > When I call 'lc = (Context)ctx.lookup("jnp://ttt1.ca.

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/http HttpMessages.java

2001-03-19 Thread larryi
larryi 01/03/19 13:09:09 Modified:src/share/org/apache/tomcat/modules/generators ErrorHandler.java src/share/org/apache/tomcat/util/http HttpMessages.java Log: Port tomcat_32 security fix by Craig McClanahan For Tomcat 3.2, fix the securi

JSPC on Windows (RE: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler ParserController.java)

2001-03-19 Thread Marc Saegesser
Justyna, Would this update also fix Bugzilla 412? Marc Saegesser > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 14, 2001 6:32 PM > To: [EMAIL PROTECTED] > Subject: cvs commit: > jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/com

Re: first cut at tag pooling implementation

2001-03-19 Thread Casey Lucas
Janco, True. This has been fixed already. Thanks for the look. I put that in there to make sure someone was actually looking at the code. (hehe. just kidding) -casey Janco Tanis wrote: > > I've a doubt with the code in TagHandlerPoolImpl.getHandler(): > > // When the stack is empty, cre

Re: Tag names, Attribute Names and NMTOKEN values

2001-03-19 Thread Mel Martinez
--- "Craig R. McClanahan" <[EMAIL PROTECTED]> wrote: > > > On Mon, 19 Mar 2001, Marc Saegesser wrote: > > > > > This question comes a bug (387) against Tomcat-3. > The JSP specification > > defines tag names attribute names as containing > NMTOKEN values. The > > specification does not defi

RE: Tag names, Attribute Names and NMTOKEN values

2001-03-19 Thread Craig R. McClanahan
On Mon, 19 Mar 2001, Marc Saegesser wrote: > Works for me. :-) > Somehow, I thought it might :-). Also, sorry for barging in and doing the security patch over the weekend. I figured this is something that you would want to have addressed ASAP. There's a couple of comments about what I cha

RE: Tag names, Attribute Names and NMTOKEN values

2001-03-19 Thread Marc Saegesser
Works for me. :-) > -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 19, 2001 11:47 AM > To: [EMAIL PROTECTED] > Subject: Re: Tag names, Attribute Names and NMTOKEN values > > > > > On Mon, 19 Mar 2001, Marc Saegesser wrote: > > > I sent thi

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread Remy Maucherat
> Remy Maucherat writes: > > > Quoting [EMAIL PROTECTED]: > > > > > I am trying to make the use jnp://ttt1:1099/EJBresource work. > > > > So it doesn't work either the other way around ? > No: ... > When I call 'lc = (Context)ctx.lookup("jnp://ttt1.ca.com:1099");' in any > form, I get "javax.nami

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread Mel Martinez
--- "Craig R. McClanahan" <[EMAIL PROTECTED]> wrote: > > > On Mon, 19 Mar 2001, GOMEZ Henri wrote: > > > It's a WANTED feature. > > With TC 3.3 there is a new classe loader system. > Take > > a look at change3.3 file included in distro. > > A quick fix for your problem is to copy jaxp / > crims

Re: Tag names, Attribute Names and NMTOKEN values

2001-03-19 Thread Craig R. McClanahan
On Mon, 19 Mar 2001, Marc Saegesser wrote: > I sent this question off into the black hole of > [EMAIL PROTECTED] but I don't really expect an answer so I'll > post the question here for discussion. > > This question comes a bug (387) against Tomcat-3. The JSP specification > defines tag names

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread Craig R. McClanahan
On Mon, 19 Mar 2001, GOMEZ Henri wrote: > It's a WANTED feature. > With TC 3.3 there is a new classe loader system. Take > a look at change3.3 file included in distro. > A quick fix for your problem is to copy jaxp / crimson jars > in TOMCAT_HOME/lib/common. > Tomcat 4.0 follows the same phil

Re: [PATCH] Fun with tag pools

2001-03-19 Thread Craig R. McClanahan
On Sun, 18 Mar 2001, Casey Lucas wrote: > [snip] > I was thinking of something like: > > If an exception is thrown (from any code, not necessarily the tag) during > the scope of a tag handler's use (between doStartTag and doEndTag), then > that tag should be removed from the pool because its s

Tag names, Attribute Names and NMTOKEN values

2001-03-19 Thread Marc Saegesser
I sent this question off into the black hole of [EMAIL PROTECTED] but I don't really expect an answer so I'll post the question here for discussion. This question comes a bug (387) against Tomcat-3. The JSP specification defines tag names attribute names as containing NMTOKEN values. The specif

Re: [TC3.2.2] Codebase frozen (was RE: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/request StaticInterceptor.java)

2001-03-19 Thread Arieh Markel
> Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm > list-help: > list-unsubscribe: > list-post: > Delivered-To: mailing list [EMAIL PROTECTED] > From: "Marc Saegesser" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTE

[TC3.2.2] Codebase frozen (was RE: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/request StaticInterceptor.java)

2001-03-19 Thread Marc Saegesser
You are correct, this should not have gone into the tomcat_32 branch. The only things that should be commited to tomcat_32 are bug fixes for existing functionality. Anything else should only be committed with the approval of the Release Manager (i.e. Me). I'm going to review these changes to se

Re: first cut at tag pooling implementation

2001-03-19 Thread Janco Tanis
I've a doubt with the code in TagHandlerPoolImpl.getHandler(): // When the stack is empty, create a new tag and return it if (myHandlers.empty()) { returnValue = (Tag) myHandlerClass.newInstance(); // Pushing it on the stack will cause the next getHandler to re

cvs commit: jakarta-tomcat/src/share/org/apache/jasper/servlet JasperLoader.java

2001-03-19 Thread melaquias
melaquias01/03/19 07:49:29 Modified:src/share/org/apache/jasper/servlet JasperLoader.java Log: fixed bug where, in some cases (such as when Jasper is used as standalone servlet) calling JasperLoader.toString() caused NullPointerException. Should ALWAYS be able to invoke toStrin

Re: Strange problem with URL_PKG_PREFIXES

2001-03-19 Thread tttye
Remy Maucherat writes: > Quoting [EMAIL PROTECTED]: > > > I am trying to make the use jnp://ttt1:1099/EJBresource work. > > So it doesn't work either the other way around ? No: ... When I call 'lc = (Context)ctx.lookup("jnp://ttt1.ca.com:1099");' in any form, I get "javax.naming.NameNotFoundE

RE: problem with national language in html form input

2001-03-19 Thread Szegedi, Attila
I have also done this once in my private copy of Tomcat, but have abandoned it. The problem is standards compliance, and standards (both the HTML standard and the Servlet spec) are somewhat internationalization-ignorant on this point. Tomcat follows the HTML standard, which explicitly declares th

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread Steve Downey
Sorry, I wasn't clear. tomcat.sh takes the classpath from the launching environment and prepends lib/tomcat.jar to it. My original patch added this functionality to tomcat.bat. However, if it's a desireable feature to start with an empty classpath, and I agree that it is, the tomcat.sh should be f

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread GOMEZ Henri
>Ah, then you'll be wanting the contrawise patch to tomcat.sh > I'm not sure to understand perfectly what you say but with the new schema loader you start with an empty CLASSPATH. Depending where are located the .jar, you make them available to container (tomcat), webapps or both. Usefull to fix

RE: [PATCH] TC3.3 tomcat.bat doesn't pick up external CLASSPATH

2001-03-19 Thread Steve Downey
Ah, then you'll be wanting the contrawise patch to tomcat.sh Index: tomcat.sh === RCS file: /home/cvspublic/jakarta-tomcat/src/shell/tomcat.sh,v retrieving revision 1.21 diff -u -r1.21 tomcat.sh --- tomcat.sh 2001/03/15 07:33:19

Problem with href

2001-03-19 Thread Andrea Bertucci
Hi, I've a trouble with jsp pages. In every page I've some links (href); when I click a link and, before the corresponding page was loaded, I click another link tomcat raise the following exception: "java.lang.IllegalStateException: Cannot forward as OutputStream or Writer has al ready been obtain