Re: Tomcat 4.x auth issue

2002-07-03 Thread Remy Maucherat
Bill Barker wrote: > I'm hardly a 4.x expert, but this looks like it will solve the major > problem. > > This fix will still send an Auth to /myapp if you first request > /myapp/protected, but that shouldn't be too much of a problem. > > In 5.0, I think that the spec is going to eventually requi

Re: Tomcat 4.x auth issue

2002-07-03 Thread Bill Barker
I'm hardly a 4.x expert, but this looks like it will solve the major problem. This fix will still send an Auth to /myapp if you first request /myapp/protected, but that shouldn't be too much of a problem. In 5.0, I think that the spec is going to eventually require that we move the logic to the

DO NOT REPLY [Bug 9111] - URL encoding fails for relative paths in contexts containing "unsafe" characters

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-tomcat/src/facade22/org/apache/tomcat/facade HttpServletResponseFacade.java

2002-07-03 Thread billbarker
billbarker2002/07/03 21:09:30 Modified:src/facade22/org/apache/tomcat/facade HttpServletResponseFacade.java Log: Fix problem when the Context path contains a non-safe character. As an added benefit, we get rid of the deprecated HttpUtils dependency. At

RE: Tomcat 4.x auth issue

2002-07-03 Thread Keith Wannamaker
The bugfix turned out to be a one-liner: Index: SecurityConstraint.java === RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/de ploy/SecurityConstraint.java,v retrieving revision 1.5 diff -u -r1.5 Securit

JTC docs path --- root readme

2002-07-03 Thread Simon Stewart
If I get this wrong, then I fully expect people to point out my mistakes. Not sure whether you guys prefer multiple tiny email or ones like this In any case, attached are a number of diffs that I've made against the latest CVS version of jakarta-tomcat-connectors in a bid to try and improve th

Tomcat 4.x auth issue

2002-07-03 Thread Keith Wannamaker
Tomcat 4.x has a problem -- it challenges for auth prior to any redirects. This is wrong because it causes most browsers to cache auth info for the entire domain when hitting top-level directories. For example: WRONG way: GET /foo -> 401 GET /foo with auth

DO NOT REPLY [Bug 10458] - Editing User causes JavaScript Error

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10458] - Editing User causes JavaScript Error

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10458] New: - Editing User causes JavaScript Error

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

Re: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Bill Barker
> > [X] +1 I support the proposal, and will help implement it > [ ] +0 I support the proposal > [ ] -0 I do not support the proposal > [ ] -1 I am against the proposal being implemented, because: > > > -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Bojan Smojver
On Wed, 2002-07-03 at 09:57, Remy Maucherat wrote: > > [ ] +1 I support the proposal, and will help implement it > [X] +0 I support the proposal > [ ] -0 I do not support the proposal > [ ] -1 I am against the proposal being implemented, because: > Which might actually turn out to be +0.01 ;-)

DO NOT REPLY [Bug 10457] - Patch submission for DefaultServlet/WebdavServlet to be more flexible

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10457] - Patch submission for DefaultServlet/WebdavServlet to be more flexible

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10457] New: - Patch submission for DefaultServlet/WebdavServlet to be more flexible

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Henner Zeller
Hi, > OK, but why should the requested session id from the URL be considered any > more likely to be valid than a session id from the cookie? They both got > created at the same time (when this page was generated), and will have the > same value if you did the normal thing of using response.enco

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Craig R. McClanahan
On Wed, 3 Jul 2002, Henner Zeller wrote: > Date: Wed, 3 Jul 2002 21:10:14 +0200 (CEST) > From: Henner Zeller <[EMAIL PROTECTED]> > Reply-To: Tomcat Developers List <[EMAIL PROTECTED]> > To: Tomcat Developers List <[EMAIL PROTECTED]> > Subject: Re: [Bug 10419] - Session-ID grabbing from Request

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Henner Zeller
Hi, > If you want the *current* session for this request, you should always call > request.getSession() instead. Yes. This is correctly working in tomcat 3.x: the getRequestedSessionId() returns one of the IDs with preference to the cookie; the getSession() returns the current session. perfect

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Craig R. McClanahan
On Wed, 3 Jul 2002, Henner Zeller wrote: > Date: Wed, 3 Jul 2002 20:33:11 +0200 (CEST) > From: Henner Zeller <[EMAIL PROTECTED]> > Reply-To: Tomcat Developers List <[EMAIL PROTECTED]> > To: Tomcat Developers List <[EMAIL PROTECTED]> > Subject: Re: [Bug 10419] - Session-ID grabbing from Request

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Henner Zeller
Hi, > > We always have the problem, that we might get multiple session ids (from > > the URL, from _multple_ cookies). > > You should not be getting multiple session id cookies for different > webapps unless (a) the context paths overlap, or (b) your client is not > following the rules of the sp

DO NOT REPLY [Bug 10452] New: - WAR fails to expand fully when 2+ Tomcat instances start concurrently

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteRequest.java

2002-07-03 Thread remm
remm2002/07/03 10:43:24 Modified:coyote/src/java/org/apache/coyote/tomcat4 CoyoteRequest.java Log: - Fix bug 10123. Revision ChangesPath 1.24 +5 -5 jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteRequest.java Index: CoyoteReq

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Craig R. McClanahan
On Wed, 3 Jul 2002, Henner Zeller wrote: > > We always have the problem, that we might get multiple session ids (from > the URL, from _multple_ cookies). You should not be getting multiple session id cookies for different webapps unless (a) the context paths overlap, or (b) your client is not

cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs jndi-datasource-examples-howto.xml project.xml

2002-07-03 Thread remm
remm2002/07/03 10:42:54 Modified:webapps/tomcat-docs project.xml Added: webapps/tomcat-docs jndi-datasource-examples-howto.xml Log: - Add some example configurations for the datasources. Much sought after information :) - Thanks to Leslie Hughes and David Hara

DO NOT REPLY [Bug 10419] - Session-ID grabbing from Request accepts invalid session cookies in presense of valid URL sessions

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

RE: ant/style for xdocs fail randomly

2002-07-03 Thread Andrew Conrad
Hey Henri, Xalan 2.3.1 has a specific bug that transformer reuse http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6156 I solved my problem using 2.4.D1 -Andrew -Original Message- From: GOMEZ Henri [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 3:30 AM To: Tomcat Develop

Re: ant/style for xdocs fail randomly

2002-07-03 Thread John Keyes
Henri, Not sure if this will resolve your problem but I found some bugs in Xalan 2.3.1 (which were already reported in bugzilla) so I tried out 2.4.D1 instead. This worked a treat. Can you upgrade(?) your xalan to 2.4.D1 and see if that works? -John K On Wednesday, July 3, 2002, at 07:30 , GO

Problem displaying Japanese in JSP with Tomcat

2002-07-03 Thread kayamboosuresh
Hi Alec While I was searching the net to solve my problem I saw your discussions with Apache I do have the same problem Actually I am using the JSP model 2 architecture with a control servlet and view jsps. I am doing validation using beans My problem is my Jsp page contains japanese stuff and I

Re: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Ben Galbraith
+1 on proposal. I have a lot of interested in coding and/or writing documentation for Tomcat 5.0. I'll look for opportunities to jump in, but if someone has any Tomcat 4.x or Tomcat 5 projects awaiting a coder or a tech. writer, please do let me know. On Tuesday, July 2, 2002, at 05:57 PM,

A couple of potential race bugs in 4.0.4 final

2002-07-03 Thread Robert W O'callahan
I've been working on a tool for finding potential data races and I tried it out on Tomcat. I found a couple of things that look like problems; you might be interested in fixing them, and I would like to know if my results are correct or not. The first one is minor: org.apache.catalina.connector.h

RE: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Ignacio J. Ortega
+1 Saludos , Ignacio J. Ortega > -Mensaje original- > De: Remy Maucherat [mailto:[EMAIL PROTECTED]] > Enviado el: 3 de julio de 2002 1:57 > Para: Tomcat Developers List > Asunto: [VOTE] Apache Tomcat 5.0 Proposal > > > After trying to address the concerns raised by the proposal draft,

Re: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Ben Galbraith
[X] +1 I support the proposal, and will help implement it [ ] +0 I support the proposal [ ] -0 I do not support the proposal [ ] -1 I am against the proposal being implemented, because: Long time user, first time voter. Looking forward to coding and writing documentation for Tomcat 4.x and

DO NOT REPLY [Bug 10444] New: - Lack of i18n in compression filter

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10312] - JNDI Resource Params are not being set

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

RE: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Shailendra Singh Negi
[x] +1 I support the proposal, and will help implement it [ ] +0 I support the proposal [ ] -0 I do not support the proposal [ ] -1 I am against the proposal being implemented, because: -Shailendra -- To unsubscribe, e-mail: For additional commands, e-mail:

DO NOT REPLY [Bug 10123] - getRemoteHost() returns IP address

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

R: How I can redirect requests in Tomcat 4?

2002-07-03 Thread Luca Ventura
Ok, sorry for the cross-posting...:-) Anyway I need to know how to implemenent the second solution you said, that is to say I want that Tomcat intercepts the requests for a resource and automatically redirects them without executing a page/servlet. If someone knows how to configure Tomcat to do

RE: [4.1.6] New milestone release soon

2002-07-03 Thread David Oxley
Costin, As CVS seems to be down. I cannot get the new jakarta-tomcat-connectors. Did you only change jakarta-tomcat-connectors/jk/java/org/apache/jk/common/MsgAjp.java to fix this bug. Because I just tried a new tomcat-jk2.jar with the new MsgAjp.java and it still fails. It does get further. Here

Re: How I can redirect requests in Tomcat 4?

2002-07-03 Thread Michael Locasto
Luca, This question should not be cross-posted to the dev list. You can accomplish this with a simple javascript command embedded in the requested page location.href="http://www.newlocation.com/address2/";; -or- check out the se

RE: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Larry Isaacs
> -Original Message- > From: Remy Maucherat [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 02, 2002 7:57 PM > To: Tomcat Developers List > Subject: [VOTE] Apache Tomcat 5.0 Proposal > > > After trying to address the concerns raised by the proposal draft, I > would like to call for

DO NOT REPLY [Bug 10439] - session object missing using Frameset

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10127] - tomcat 4.0.4 locks jsp files

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10127] - tomcat 4.0.4 locks jsp files

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10249] - Tomcat hangs with Interclient JDBC driver

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10439] New: - session object missing using Frameset

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

How I can redirect requests in Tomcat 4?

2002-07-03 Thread Luca Ventura
Hello everybody! I have Tomcat 4 installed as Web Server on a Win 2000 machine. I would like to know how I can redirect requests from an URL to another one. For example I would like to redirect all the requests for this url: http://www.mydomain.com/address1.html to this new url: http://www.n

Re: [Bug 10419] - Session-ID grabbing from Request accepts invalidsession cookies in presense of valid URL sessions

2002-07-03 Thread Henner Zeller
Hi, [- this disucsses Bug 10419 and 10418. See details in http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10419 and http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10418 with a bug-demonstration servlet http://www.freiheit.com/users/hzeller/SessionBugDemonstration.java this works

RE: [DOCS] Tyrex-Tomcat HOWTO

2002-07-03 Thread Les Hughes
No worries - I just scanned you doc and made up a not-too-accurate title :) Since this doc still hasn't made it into CVS (hint hint) why dont you modify the XML and mail it back to me directly and I'll check that it parses OK (unless you can style it yourself) then we can post yet another ver

RE: ant/style for xdocs fail randomly

2002-07-03 Thread GOMEZ Henri
Thanks for that quick reply. I'll test the 2.4D1 - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 >-Original Message- >From: Steph

RE: ant/style for xdocs fail randomly

2002-07-03 Thread Stephane Bailliez
> -Original Message- > From: GOMEZ Henri [mailto:[EMAIL PROTECTED]] > > Didn't have such problem when using xalan 2.2 / xerces 2.0.1 > D:/eclipse/workspace/jkdocs/xdocs/style.xsl:486:51: Fatal > Error! Unknown error in XPath Cause: java.lang.NullPointerException > [style] : Fatal Err

RE: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread Mladen Turk
[X] +1 I support the proposal, and will help implement it [ ] +0 I support the proposal [ ] -0 I do not support the proposal [ ] -1 I am against the proposal being implemented, because: MT. -- To unsubscribe, e-mail: For additional commands, e-mail:

DO NOT REPLY [Bug 10418] - logic whether URL needs to be encoded in HttpServletResponse.encodeURL() broken

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10419] - Session-ID grabbing from Request accepts invalid session cookies in presense of valid URL sessions

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10419] - Session-ID grabbing from Request accepts invalid session cookies in presense of valid URL sessions

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10291] - JASPER fails to cause a fatal translaton error with incorrect taglib imports in the XML view of a JSP page

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10304] - java.lang.IncompatibleClassChangeError exception

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10373] - Wrong response status code for custom error page

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10035] - not allowed as a sub-elemnt for jsp:plugin

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10389] - doesn't accept parameters

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10356] - task from catalina-ant fails

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10419] - Session-ID grabbing from Request accepts invalid session cookies in presense of valid URL sessions

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10418] - logic whether URL needs to be encoded in HttpServletResponse.encodeURL() broken

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

RE: 4.1.7 / mod_jk 1.2.0 / mod_jk 2.0.0

2002-07-03 Thread GOMEZ Henri
>Henri: what about tagging the workspace for mod_jk1 with 1.2.0, >and use the same naming convention as in 4.1.x. How did I take jk/native (only) as mod_jk_1_2_0 ? cvs tag -r mod_jk_1_2_0 jk/native ? >Nacho, Mladen: same thing for mod_jk2 - we should use the 'milestone' >style, and mod_jk2.0.0

DO NOT REPLY [Bug 10425] - Null Pointer Exception on all requests to tomcat after start

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10330] - Unable to compile JSPs in XML syntax on Linux 7.2

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10356] - task from catalina-ant fails

2002-07-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

RE: [VOTE] Apache Tomcat 5.0 Proposal

2002-07-03 Thread GOMEZ Henri
> >[X] +1 I support the proposal, and will help implement it >[ ] +0 I support the proposal >[ ] -0 I do not support the proposal >[ ] -1 I am against the proposal being implemented, because: > -- To unsubscribe, e-mail: For additional commands, e-mail:

ant/style for xdocs fail randomly

2002-07-03 Thread GOMEZ Henri
Hi, I've got many problems to build jakarta-tomcat-connectors/jk xdocs with ant 1.4.1 or 1.5b3 and xalan 2.3.1/xerces 2.0.1 under W2K (not tested yet under Unix), with Sun JDK 1.3.1_03 : I tried to downgrade to xerces 2.0.0, but the problem is still here. Didn't have such problem when using x

RE: mod_jk2 shuts down

2002-07-03 Thread GOMEZ Henri
+1 I'm still busy (and have limited times) with mod_jk 1.2.0. I'd like to polish the documentation before release. - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F3