Re: Where's 4.1.31?

2004-08-21 Thread David Rees
Jeanfrancois Arcand wrote, On 8/20/2004 9:45 AM:
Althrough I agree with peoples that can't move to Tomcat 5, Tomcat 5 has 
been available for more that 1 year. That will be good for Tomcat if 
people migrate from 4.1.x to 5 and find bugs (that way they will not be 
carried into 5.5/6).
Although I would love to upgrade all of my sites to Tomcat 5, 
unfortunately there is one particular showstopper for me in the behavior 
difference between Tomcat 4 and 5.  Specifically, it is the fact that 
TC5 no longer pauses request processing during a context reload while 
TC4 does.

While this behavior could be worked around with load-balanced Tomcats, 
until mod_jk (or the Apache proxy module improvements) support dynamic 
reconfiguration, having to make a class change during operations can be 
disruptive.  Currently, if you wish to disable a Tomcat using mod_jk, 
you have to at least have Apache gracefully restart, which is not always 
very graceful.

IMO, if there are enough commiters willing to make/support another 4.1 
release, let them!

-Dave
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 29671] - Context don't start with multiple HTTP 1.1 connectors

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=29671.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29671

Context don't start with multiple HTTP 1.1 connectors





--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 07:54 ---
Could you please elaborate on:
 Please try with the JMX RI 1.2.

I got to here 
http://wwws.sun.com/software/communitysource/jmx/download.html
Downloaded v1.2.1 and located jmxri.jar in the distribution.

I was expecting to find a jar by that name in the Tomcat distribution I would 
just need to overwrite, but I cannot find that or any jar that seems to have 
JMX stuff in it.  

Please could you give me a pointer.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 11561] - JNDI problem with jdk1.4

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=11561.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=11561

JNDI problem with jdk1.4





--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 10:22 ---
Looking in more detail at the build scripts, the LE distribution doesn't 
appear to include commons-dbcp.jar or commons-pool.jar both of which are 
required for datasource lookup to work.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30241] - Enhance build script to use branch argument when checking out files

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30241.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30241

Enhance build script to use branch argument when checking out files

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 12:20 ---
Already done, cool ;)  See cvstag property in build.xml.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30241] - Enhance build script to use branch argument when checking out files

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30241.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30241

Enhance build script to use branch argument when checking out files

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 05:26:56

  Modified:catalina/src/share/org/apache/naming NamingService.java
   webapps/docs changelog.xml
  Log:
  Bugzilla 30561, fixed NamingService.
  
  Revision  ChangesPath
  1.3   +2 -2  
jakarta-tomcat-catalina/catalina/src/share/org/apache/naming/NamingService.java
  
  Index: NamingService.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/naming/NamingService.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NamingService.java27 Feb 2004 14:58:53 -  1.2
  +++ NamingService.java21 Aug 2004 12:26:56 -  1.3
  @@ -147,7 +147,7 @@
   System.setProperty(Context.URL_PKG_PREFIXES, value);
   
   oldValue = System.getProperty(Context.INITIAL_CONTEXT_FACTORY);
  -if (oldValue != null) {
  +if ((oldValue != null)  (oldValue.length()  0)) {
   oldIcValue = oldValue;
   } else {
   System.setProperty(Context.INITIAL_CONTEXT_FACTORY,
  
  
  
  1.90  +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- changelog.xml 11 Aug 2004 16:33:56 -  1.89
  +++ changelog.xml 21 Aug 2004 12:26:56 -  1.90
  @@ -70,6 +70,9 @@
 fix
   bug30587/bug: Typo in ExtendedAccessLogValve. (yoavs)
 /fix
  +  fix
  +bug30561/bug: Broken restart of NamingService. (yoavs)
  +  /fix
   /changelog
 /subsection
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30561] - NamingService doesn't correctly start/stop

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30561.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30561

NamingService doesn't correctly start/stop

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
Summary|NamingService doesn't   |NamingService doesn't
   |correctly start/stop|correctly start/stop



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 12:28 ---
Done as suggested.  Thanks ;)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 05:29:20

  Modified:catalina/src/share/org/apache/naming Tag: TOMCAT_5_0
NamingService.java
   webapps/docs Tag: TOMCAT_5_0 changelog.xml
  Log:
  Fixed 30561 on this branch.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.2.2.1   +2 -2  
jakarta-tomcat-catalina/catalina/src/share/org/apache/naming/NamingService.java
  
  Index: NamingService.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/naming/NamingService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- NamingService.java27 Feb 2004 14:58:53 -  1.2
  +++ NamingService.java21 Aug 2004 12:29:20 -  1.2.2.1
  @@ -147,7 +147,7 @@
   System.setProperty(Context.URL_PKG_PREFIXES, value);
   
   oldValue = System.getProperty(Context.INITIAL_CONTEXT_FACTORY);
  -if (oldValue != null) {
  +if ((oldValue != null)  (oldValue.length()  0)) {
   oldIcValue = oldValue;
   } else {
   System.setProperty(Context.INITIAL_CONTEXT_FACTORY,
  
  
  
  No   revision
  No   revision
  1.70.2.5  +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.70.2.4
  retrieving revision 1.70.2.5
  diff -u -r1.70.2.4 -r1.70.2.5
  --- changelog.xml 21 Aug 2004 04:44:37 -  1.70.2.4
  +++ changelog.xml 21 Aug 2004 12:29:20 -  1.70.2.5
  @@ -25,6 +25,9 @@
 fix
   bug30602/bug: Subject is not available during the first call to the 
servlet which use the basic authentication (jfarcand)
 /fix
  +  fix
  +bug30561/bug: Broken restart of NamingService. (yoavs)
  +  /fix
   /changelog
 /subsection
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs realm-howto.xml

2004-08-21 Thread markt
markt   2004/08/21 05:37:56

  Modified:webapps/tomcat-docs realm-howto.xml
  Log:
  Fix bug 12516. Clarify that the cached Principal is not retained across session 
serialisation.
  
  Revision  ChangesPath
  1.14  +14 -10jakarta-tomcat-4.0/webapps/tomcat-docs/realm-howto.xml
  
  Index: realm-howto.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/realm-howto.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- realm-howto.xml   4 Sep 2003 19:59:47 -   1.13
  +++ realm-howto.xml   21 Aug 2004 12:37:56 -  1.14
  @@ -326,9 +326,10 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser).  Any changes to the database information for an
  -already authenticated user will strongnot/strong be reflected until
  -the next time that user logs on again./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations. Any changes to the database
  +information for an already authenticated user will strongnot/strong be
  +reflected until the next time that user logs on again./li
   liAdministering the information in the emusers/em and emuser roles/em
   table is the responsibility of your own applications.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  @@ -499,9 +500,10 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser).  Any changes to the database information for an
  -already authenticated user will strongnot/strong be reflected until
  -the next time that user logs on again./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations. Any changes to the database
  +information for an already authenticated user will strongnot/strong be
  +reflected until the next time that user logs on again./li
   liAdministering the information in the emusers/em and emuser roles/em
   table is the responsibility of your own applications.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  @@ -1088,9 +1090,10 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser).  Any changes to the directory information for an
  -already authenticated user will strongnot/strong be reflected until
  -the next time that user logs on again./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations. Any changes to the directory
  +information for an already authenticated user will strongnot/strong be
  +reflected until the next time that user logs on again./li
   liAdministering the information in the directory server
   is the responsibility of your own applications.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  @@ -1198,7 +1201,8 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser)./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations./li
   liAdministering the information in the users file is the responsibility
   of your application.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-catalina/webapps/docs realm-howto.xml

2004-08-21 Thread markt
markt   2004/08/21 05:39:08

  Modified:webapps/docs realm-howto.xml
  Log:
  Fix bug 12516. Clarify that the cached Principal is not retained across session 
serialisation.
   - Ported from TC4
  
  Revision  ChangesPath
  1.15  +14 -10jakarta-tomcat-catalina/webapps/docs/realm-howto.xml
  
  Index: realm-howto.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/realm-howto.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- realm-howto.xml   24 Feb 2004 12:17:22 -  1.14
  +++ realm-howto.xml   21 Aug 2004 12:39:08 -  1.15
  @@ -328,9 +328,10 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser).  Any changes to the database information for an
  -already authenticated user will strongnot/strong be reflected until
  -the next time that user logs on again./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations. Any changes to the database
  +information for an already authenticated user will strongnot/strong be
  +reflected until the next time that user logs on again./li
   liAdministering the information in the emusers/em and emuser roles/em
   table is the responsibility of your own applications.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  @@ -511,9 +512,10 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser).  Any changes to the database information for an
  -already authenticated user will strongnot/strong be reflected until
  -the next time that user logs on again./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations. Any changes to the database
  +information for an already authenticated user will strongnot/strong be
  +reflected until the next time that user logs on again./li
   liAdministering the information in the emusers/em and emuser roles/em
   table is the responsibility of your own applications.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  @@ -1058,9 +1060,10 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser).  Any changes to the directory information for an
  -already authenticated user will strongnot/strong be reflected until
  -the next time that user logs on again./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations. Any changes to the directory
  +information for an already authenticated user will strongnot/strong be
  +reflected until the next time that user logs on again./li
   liAdministering the information in the directory server
   is the responsibility of your own applications.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  @@ -1168,7 +1171,8 @@
   roles) are cached within Tomcat for the duration of the user's login.
   (For FORM-based authentication, that means until the session times out or
   is invalidated; for BASIC authentication, that means until the user
  -closes their browser)./li
  +closes their browser).  The cached user is strongnot/strong saved and
  +restored across sessions serialisations./li
   liAdministering the information in the users file is the responsibility
   of your application.  Tomcat does not
   provide any built-in capabilities to maintain users and roles./li
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 12516] - form based auth / documentation

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=12516.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=12516

form based auth / documentation

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 12:41 ---
Fixed in CVS for TC4 and TC5

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [VOTE] 4.1.31 maintenance release

2004-08-21 Thread Kurt Miller
 ballot
 The 4.1.31 maintenance release should happen:
 [X ] Yes
 [ ] No
 /ballot

I'd like to see the fix for bug 20148 get released on the 4.x branch.

-Kurt

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30786] New: - windows service.bat install script omits tools.jar from classpath - server cannot compile JSPs

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30786.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30786

windows service.bat install script omits tools.jar from classpath - server cannot 
compile JSPs

   Summary: windows service.bat install script omits tools.jar from
classpath - server cannot compile JSPs
   Product: Tomcat 5
   Version: 5.0.27
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Native:Integration
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Summary
===
When running Tomcat as a service, JSPs cannot be compiled on the fly because 
the JDK's tools.jar is not found in the classpath.  However, when running the 
same server from startup.bat, there is no problem.  The cause of the problem 
appears to be that service.bat does not include a reference to tools.jar (or 
any path under JAVA_HOME) when installing the service. The result is that 
Tomcat seems to search the JRE directory for tools.jar, which is therefore not 
found.  Perhaps service.bat should call setclasspath.bat rather than setting it 
to %CATALINA_HOME%\bin\bootstrap.jar as at present?

I did a google search and found that a few people have had this problem but are 
working around it by copying tools.jar from their JDK bin directory to the JRE 
bin directory, which seems to be a bit of a fudge to me.

Details
===
Today I downloaded and installed JDK 1.4.2_05 and tomcat 5.0.27.  I checked my 
env variables and they are OK:
JAVA_HOME=C:\j2sdk1.4.2
CATALINA_HOME=c:\jakarta-tomcat-5.0.27

I first ran the server from the startup.bat script and all was OK.

I want to run Tomcat as a service, so I stopped the server and ran service 
install at the dos command line in C:\jakarta-tomcat-5.0.27\bin, then started 
the service.  All works OK until I access a JSP that needs to be compiled.  
This causes an error Unable to find a javac compiler;
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK

After some investigation I found that when starting from startup.bat, the 
CLASSPATH variable is as follows:
C:\j2sdk1.4.2\lib\tools.jar;c:\jakarta-tomcat-5.0.27\bin\bootstrap.jar

In other words, the JDK's tools.jar is referenced on the classpath when running 
from startup.bat.

However when running as a service, the CLASSPATH does not refer to tools.jar. 
The service.bat script sets it as follows:
set PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar

To fix it, I uninstalled the service using service remove, then modified the 
service.bat script to add %JAVA_HOME%\lib\tools.jar to the classpath, restarted 
the service, and the problem was solved.

Perhaps service.bat should call setclasspath.bat rather than setting it to %
CATALINA_HOME%\bin\bootstrap.jar ?

An extract of my stdout.log file is included below, this shows the error plus 
the classpath.  If you would like copies of my config files I have saved them 
and can email them to you, please just email me to ask.  Hope this helps.  
Thanks.


21-Aug-2004 15:38:04 org.apache.jasper.compiler.Compiler generateClass
SEVERE: Javac exception 
Unable to find a javac compiler;
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK
at 
org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler
(CompilerAdapterFactory.java:106)
at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:935)
at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:764)
at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:382)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
at org.apache.jasper.JspCompilationContext.compile
(JspCompilationContext.java:511)
at org.apache.jasper.servlet.JspServletWrapper.service
(JspServletWrapper.java:295)
at org.apache.jasper.servlet.JspServlet.serviceJspFile
(JspServlet.java:292)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
(ApplicationFilterChain.java:237)
at org.apache.catalina.core.ApplicationFilterChain.doFilter
(ApplicationFilterChain.java:157)
at org.apache.catalina.core.StandardWrapperValve.invoke
(StandardWrapperValve.java:214)
at org.apache.catalina.core.StandardValveContext.invokeNext

DO NOT REPLY [Bug 30786] - windows service.bat install script omits tools.jar from classpath - server cannot compile JSPs

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30786.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30786

windows service.bat install script omits tools.jar from classpath - server cannot 
compile JSPs

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 15:21 ---
Already fixed in the CVS.
Please wait for the next TC release.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 29494] - No way to set PATH when running as a service on Windows

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=29494.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29494

No way to set PATH when running as a service on Windows

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||LATER



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 15:27 ---
You can always set the PATH using control panel.
The procrun has a option for setting any environment
variable, but not using GUI (at least for now).
I'll add that feature when the time permits me to.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-5 tomcat.nsi

2004-08-21 Thread mturk
mturk   2004/08/21 08:31:53

  Modified:.tomcat.nsi
  Log:
  Fix bug #30359 setting tmpdir to INSTDIR\temp
  
  Revision  ChangesPath
  1.47  +2 -2  jakarta-tomcat-5/tomcat.nsi
  
  Index: tomcat.nsi
  ===
  RCS file: /home/cvs/jakarta-tomcat-5/tomcat.nsi,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- tomcat.nsi16 Aug 2004 23:52:11 -  1.46
  +++ tomcat.nsi21 Aug 2004 15:31:53 -  1.47
  @@ -248,7 +248,7 @@
   
   Section -post
 nsExec::ExecToLog '$INSTDIR\bin\tomcat5.exe //US//Tomcat5 --Classpath 
$INSTDIR\bin\bootstrap.jar --StartClass org.apache.catalina.startup.Bootstrap 
--StopClass org.apache.catalina.startup.Bootstrap --StartParams start --StopParams 
stop  --StartMode jvm --StopMode jvm'
  -  nsExec::ExecToLog '$INSTDIR\bin\tomcat5.exe //US//Tomcat5 --JvmOptions 
-Dcatalina.home=$INSTDIR#-Djava.endorsed.dirs=$INSTDIR\common\endorsed#-Djava.io.tmpdir=$INSTDIR
 --StdOutput $INSTDIR\logs\stdout.log --StdError $INSTDIR\logs\stderr.log'
  +  nsExec::ExecToLog '$INSTDIR\bin\tomcat5.exe //US//Tomcat5 --JvmOptions 
-Dcatalina.home=$INSTDIR#-Djava.endorsed.dirs=$INSTDIR\common\endorsed#-Djava.io.tmpdir=$INSTDIR\temp
 --StdOutput $INSTDIR\logs\stdout.log --StdError $INSTDIR\logs\stderr.log'
   
 WriteUninstaller $INSTDIR\Uninstall.exe
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30359] - If installed as service by Installer tempdir property is invalid

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30359.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30359

If installed as service by Installer tempdir property is invalid

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 15:35 ---
Fixed in the CVS.
Thx. for spotting that

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30346] - service.bat did not work properly; Unable to find a javac compiler

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30346.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30346

service.bat did not work properly; Unable to find a javac compiler

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 15:47 ---
Just closing the bug report :)
Already fixed in the CVS.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-5 build.properties.default

2004-08-21 Thread yoavs
yoavs   2004/08/21 08:49:21

  Modified:.Tag: TOMCAT_5_0 build.properties.default
  Log:
  Back-ported CVS HEAD patches to TOMCAT_5_0 for 5.0.28 release.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.129.2.1 +6 -6  jakarta-tomcat-5/build.properties.default
  
  Index: build.properties.default
  ===
  RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v
  retrieving revision 1.129
  retrieving revision 1.129.2.1
  diff -u -r1.129 -r1.129.2.1
  --- build.properties.default  16 Jun 2004 18:04:47 -  1.129
  +++ build.properties.default  21 Aug 2004 15:49:21 -  1.129.2.1
  @@ -54,17 +54,17 @@
   
   
   # - Commons Beanutils, version 1.4 or later -
  -commons-beanutils.home=${base.path}/commons-beanutils-1.6.1
  +commons-beanutils.home=${base.path}/commons-beanutils-1.7.0
   commons-beanutils.lib=${commons-beanutils.home}
   commons-beanutils.jar=${commons-beanutils.lib}/commons-beanutils.jar
  
-commons-beanutils.loc=${base-jakarta.loc}/commons/beanutils/binaries/commons-beanutils-1.6.1.tar.gz
  
+commons-beanutils.loc=${base-jakarta.loc}/commons/beanutils/binaries/commons-beanutils-1.7.0.tar.gz
   
   
   # - Commons Collections, version 2.0 or later -
  -commons-collections.home=${base.path}/commons-collections-2.1.1
  +commons-collections.home=${base.path}/commons-collections-3.1
   commons-collections.lib=${commons-collections.home}
  -commons-collections.jar=${commons-collections.lib}/commons-collections-2.1.1.jar
  
-commons-collections.loc=${base-jakarta.loc}/commons/collections/binaries/commons-collections-2.1.1.tar.gz
  +commons-collections.jar=${commons-collections.lib}/commons-collections-3.1.jar
  
+commons-collections.loc=${base-jakarta.loc}/commons/collections/binaries/commons-collections-3.1.tar.gz
   
   
   # - Commons Launcher, version 0.9 or later -
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-catalina/webapps/docs/config ajp.xml globalresources.xml http.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 08:50:12

  Modified:catalina/src/bin Tag: TOMCAT_5_0 catalina.bat catalina.sh
setclasspath.bat setclasspath.sh
   catalina/src/share/org/apache/catalina/realm Tag: TOMCAT_5_0
JAASRealm.java
   catalina/src/share/org/apache/catalina/ssi Tag: TOMCAT_5_0
SSIServlet.java
   catalina/src/share/org/apache/catalina/valves Tag:
TOMCAT_5_0 ErrorReportValve.java
ExtendedAccessLogValve.java
   catalina/src/share/org/apache/naming/factory Tag: TOMCAT_5_0
BeanFactory.java
   webapps/admin/WEB-INF/classes/org/apache/webapp/admin/filters
Tag: TOMCAT_5_0 SetCharacterEncodingFilter.java
   webapps/docs Tag: TOMCAT_5_0 changelog.xml index.xml
jndi-datasource-examples-howto.xml
jndi-resources-howto.xml manager-howto.xml
project.xml realm-howto.xml status.xml
   webapps/docs/config Tag: TOMCAT_5_0 ajp.xml
globalresources.xml http.xml
  Log:
  Back-ported CVS HEAD patches to TOMCAT_5_0 for 5.0.28 release.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.9.2.1   +8 -1  jakarta-tomcat-catalina/catalina/src/bin/catalina.bat
  
  Index: catalina.bat
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/bin/catalina.bat,v
  retrieving revision 1.9
  retrieving revision 1.9.2.1
  diff -u -r1.9 -r1.9.2.1
  --- catalina.bat  26 May 2004 20:04:01 -  1.9
  +++ catalina.bat  21 Aug 2004 15:49:47 -  1.9.2.1
  @@ -106,6 +106,7 @@
   if %1 == run goto doRun
   if %1 == start goto doStart
   if %1 == stop goto doStop
  +if %1 == version goto doVersion
   
   echo Usage:  catalina ( commands ... )
   echo commands:
  @@ -117,6 +118,7 @@
   echo   start Start Catalina in a separate window
   echo   start -security   Start in a separate window with security manager
   echo   stop  Stop Catalina
  +echo   version   What version of tomcat are you running?
   goto end
   
   :doDebug
  @@ -155,6 +157,11 @@
   shift
   set ACTION=stop
   goto execCmd
  +
  +:doVersion
  +%_EXECJAVA% -classpath %CATALINA_HOME%\server\lib\catalina.jar 
org.apache.catalina.util.ServerInfo
  +goto end
  +
   
   :execCmd
   rem Get remaining unshifted command line arguments and save them in the
  
  
  
  1.13.2.1  +18 -8 jakarta-tomcat-catalina/catalina/src/bin/catalina.sh
  
  Index: catalina.sh
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/bin/catalina.sh,v
  retrieving revision 1.13
  retrieving revision 1.13.2.1
  diff -u -r1.13 -r1.13.2.1
  --- catalina.sh   26 May 2004 19:45:33 -  1.13
  +++ catalina.sh   21 Aug 2004 15:49:49 -  1.13.2.1
  @@ -61,7 +61,10 @@
   
   # Get standard environment variables
   PRGDIR=`dirname $PRG`
  -CATALINA_HOME=`cd $PRGDIR/.. ; pwd`
  +
  +# Only set CATALINA_HOME if not already set
  +[ -z $CATALINA_HOME ]  CATALINA_HOME=`cd $PRGDIR/.. ; pwd`
  +
   if [ -r $CATALINA_HOME/bin/setenv.sh ]; then
 . $CATALINA_HOME/bin/setenv.sh
   fi
  @@ -72,7 +75,7 @@
 [ -n $CATALINA_HOME ]  CATALINA_HOME=`cygpath --unix $CATALINA_HOME`
 [ -n $CATALINA_BASE ]  CATALINA_BASE=`cygpath --unix $CATALINA_BASE`
 [ -n $CLASSPATH ]  CLASSPATH=`cygpath --path --unix $CLASSPATH`
  -  [ -n $JSSE_HOME ]  JSSE_HOME=`cygpath --path --unix $JSSE_HOME`
  +  [ -n $JSSE_HOME ]  JSSE_HOME=`cygpath --absolute --unix $JSSE_HOME`
   fi
   
   # For OS400
  @@ -114,12 +117,12 @@
   
   # For Cygwin, switch paths to Windows format before running java
   if $cygwin; then
  -  JAVA_HOME=`cygpath --path --windows $JAVA_HOME`
  -  CATALINA_HOME=`cygpath --path --windows $CATALINA_HOME`
  -  CATALINA_BASE=`cygpath --path --windows $CATALINA_BASE`
  -  CATALINA_TMPDIR=`cygpath --path --windows $CATALINA_TMPDIR`
  +  JAVA_HOME=`cygpath --absolute --windows $JAVA_HOME`
  +  CATALINA_HOME=`cygpath --absolute --windows $CATALINA_HOME`
  +  CATALINA_BASE=`cygpath --absolute --windows $CATALINA_BASE`
  +  CATALINA_TMPDIR=`cygpath --absolute --windows $CATALINA_TMPDIR`
 CLASSPATH=`cygpath --path --windows $CLASSPATH`
  -  JSSE_HOME=`cygpath --path --windows $JSSE_HOME`
  +  [ -n $JSSE_HOME ]  JSSE_HOME=`cygpath --absolute --windows $JSSE_HOME`
 JAVA_ENDORSED_DIRS=`cygpath --path --windows $JAVA_ENDORSED_DIRS`
   fi
   
  @@ -254,6 +257,12 @@
   fi
 fi
   
  +elif [ $1 = version ] ; then
  +
  +$_RUNJAVA   \
  +  -classpath $CATALINA_HOME/server/lib/catalina.jar \
  +  org.apache.catalina.util.ServerInfo
  +
   else
   
 echo Usage: catalina.sh ( commands ... )
  @@ -272,6 

cvs commit: jakarta-tomcat-catalina/webapps/webdav build.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 12:14:30

  Modified:catalina/src/share/org/apache/catalina/startup Tag:
TOMCAT_5_0 HostConfig.java
   tester   Tag: TOMCAT_5_0 build.xml
   webapps  Tag: TOMCAT_5_0 build.xml
   webapps/ROOT Tag: TOMCAT_5_0 build.xml
   webapps/admin Tag: TOMCAT_5_0 build.xml
   webapps/balancer Tag: TOMCAT_5_0 build.xml
   webapps/docs Tag: TOMCAT_5_0 build.xml changelog.xml
   webapps/manager Tag: TOMCAT_5_0 build.xml
   webapps/webdav Tag: TOMCAT_5_0 build.xml
  Log:
  Fixed Bugzilla 29688 on TOMCAT_5_0 branch, removed classic compiler directives 
from build.xml files.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.31.2.1  +24 -9 
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/HostConfig.java
  
  Index: HostConfig.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/HostConfig.java,v
  retrieving revision 1.31
  retrieving revision 1.31.2.1
  diff -u -r1.31 -r1.31.2.1
  --- HostConfig.java   27 May 2004 23:01:01 -  1.31
  +++ HostConfig.java   21 Aug 2004 19:14:28 -  1.31.2.1
  @@ -439,8 +439,9 @@
*/
   protected void deployDescriptors(File configBase, String[] files) {
   
  -if (!deployXML)
  +if (!deployXML || (files == null)) {
  return;
  +}
   
   for (int i = 0; i  files.length; i++) {
   
  @@ -496,6 +497,9 @@
* Deploy WAR files.
*/
   protected void deployWARs(File appBase, String[] files) {
  +if (files == null) {
  +  return;
  +}
   
   for (int i = 0; i  files.length; i++) {
   
  @@ -506,6 +510,7 @@
   if (deployed.contains(files[i]))
   continue;
   File dir = new File(appBase, files[i]);
  +
   if (files[i].toLowerCase().endsWith(.war)) {
   
   deployed.add(files[i]);
  @@ -528,16 +533,19 @@
   File xml = new File
   (configBase, files[i].substring
(0, files[i].lastIndexOf(.)) + .xml);
  +
   if (!xml.exists()) {
  +
   try {
  +// Added for Bugzilla 29038
  +if (!configBase.exists()) {
  +  configBase.mkdirs();
  +}
  +
   jar = new JarFile(dir);
   entry = jar.getJarEntry(META-INF/context.xml);
   if (entry != null) {
   istream = jar.getInputStream(entry);
  - 
  -// Added for Bugzilla 29038
  -xml.mkdirs();
  -
   ostream =
   new BufferedOutputStream
   (new FileOutputStream(xml), 1024);
  @@ -646,8 +654,14 @@
   
   /**
* Deploy directories.
  + *
  + * @param appBase The Host appBase
  + * @param files[] The files to deploy
*/
   protected void deployDirectories(File appBase, String[] files) {
  +if (files == null) {
  +  return;
  +}
   
   for (int i = 0; i  files.length; i++) {
   
  @@ -798,7 +812,8 @@
   return;
   String files[] = appBase.list();
   
  -for (int i = 0; i  files.length; i++) {
  +if (files != null) {
  +  for (int i = 0; i  files.length; i++) {
   if (files[i].endsWith(.war)) {
   File dir = new File(appBase, files[i]);
   Long lastModified = (Long) warLastModified.get(files[i]);
  @@ -843,8 +858,8 @@
   }
   }
   }
  -}
  -
  + }
  +  }
   }
   
   
  
  
  
  No   revision
  No   revision
  1.5.2.1   +0 -1  jakarta-tomcat-catalina/tester/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/tester/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- build.xml 16 Jun 2004 18:04:38 -  1.5
  +++ build.xml 21 Aug 2004 19:14:28 -  1.5.2.1
  @@ -7,7 +7,6 @@
 property file=../build.properties/
 property file=${user.home}/build.properties/
   
  -  property name=build.compiler  value=classic/
 property name=api.home value=../../jakarta-servletapi-5/dist/
 property name=tester.buildvalue=${basedir}/build/
 property name=tester.deploy   value=${basedir}/../build/
  
  
  
  No   revision
  No   

DO NOT REPLY [Bug 29688] - HostConfig NullPointerException

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=29688.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29688

HostConfig NullPointerException

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 19:20 ---
Patch applied in TOMCAT_5_0 branch as suggested here.  Modified portions 
applied on CVS HEAD as HostConfig on HEAD has already been significantly 
modified for Tomcat 5.5.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 29671] - Context don't start with multiple HTTP 1.1 connectors

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=29671.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29671

Context don't start with multiple HTTP 1.1 connectors





--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 19:25 ---
You copy the jxmri.jar to $CATALINA_HOME/bin/jmx.jar (leaving the name 
as 'jmx.jar' to avoid having to edit classpaths).

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 12:31:56

  Modified:catalina/src/share/org/apache/catalina/startup Tag:
TOMCAT_5_0 Bootstrap.java
   webapps/docs Tag: TOMCAT_5_0 changelog.xml
  Log:
  Addressed Bugzilla 30179, updated release plan.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.18.2.1  +11 -8 
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Bootstrap.java
  
  Index: Bootstrap.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Bootstrap.java,v
  retrieving revision 1.18
  retrieving revision 1.18.2.1
  diff -u -r1.18 -r1.18.2.1
  --- Bootstrap.java12 Mar 2004 14:32:47 -  1.18
  +++ Bootstrap.java21 Aug 2004 19:31:56 -  1.18.2.1
  @@ -125,13 +125,7 @@
   StringTokenizer tokenizer = new StringTokenizer(value, ,);
   while (tokenizer.hasMoreElements()) {
   String repository = tokenizer.nextToken();
  -// Check for a JAR URL repository
  -try {
  -urlList.add(new URL(repository));
  -continue;
  -} catch (MalformedURLException e) {
  -// Ignore
  -}
  +
   // Local repository
   boolean packed = false;
   if (repository.startsWith(CATALINA_HOME_TOKEN)) {
  @@ -141,6 +135,15 @@
   repository = getCatalinaBase() 
   + repository.substring(CATALINA_BASE_TOKEN.length());
   }
  +
  +// Check for a JAR URL repository
  +try {
  +urlList.add(new URL(repository));
  +continue;
  +} catch (MalformedURLException e) {
  +// Ignore
  +}
  +
   if (repository.endsWith(*.jar)) {
   packed = true;
   repository = repository.substring
  
  
  
  No   revision
  No   revision
  1.70.2.8  +6 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.70.2.7
  retrieving revision 1.70.2.8
  diff -u -r1.70.2.7 -r1.70.2.8
  --- changelog.xml 21 Aug 2004 19:14:29 -  1.70.2.7
  +++ changelog.xml 21 Aug 2004 19:31:56 -  1.70.2.8
  @@ -41,6 +41,9 @@
 update
   Removed classic compiler directives from Ant build, as we use modern 
anyways. (yoavs)
 /update
  +  update
  +Modified RELEASE-PLAN-5.0.html to indicate status given start of work on 
Tomcat 5.next. (yoavs)
  + /update
   /changelog
 /subsection
   
  @@ -82,6 +85,9 @@
 fix
   bug29668/bug: NPE in HostConfig, directory created for deployed WAR 
instead of xml file. (yoavs)
 /fix
  +  fix
  +bug30179/bug: Improved Bootstrap catalina.properties handling. (yoavs)
  + /fix
   /changelog
 /subsection
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 12:34:59

  Modified:catalina/src/share/org/apache/catalina/startup
Bootstrap.java
   webapps/docs changelog.xml
  Log:
  Addressed Bugzilla 30179.
  
  Revision  ChangesPath
  1.21  +11 -8 
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Bootstrap.java
  
  Index: Bootstrap.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Bootstrap.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- Bootstrap.java16 Aug 2004 23:48:59 -  1.20
  +++ Bootstrap.java21 Aug 2004 19:34:59 -  1.21
  @@ -118,13 +118,7 @@
   StringTokenizer tokenizer = new StringTokenizer(value, ,);
   while (tokenizer.hasMoreElements()) {
   String repository = tokenizer.nextToken();
  -// Check for a JAR URL repository
  -try {
  -urlList.add(new URL(repository));
  -continue;
  -} catch (MalformedURLException e) {
  -// Ignore
  -}
  +
   // Local repository
   boolean packed = false;
   if (repository.startsWith(CATALINA_HOME_TOKEN)) {
  @@ -134,6 +128,15 @@
   repository = getCatalinaBase() 
   + repository.substring(CATALINA_BASE_TOKEN.length());
   }
  +
  +// Check for a JAR URL repository
  +try {
  +urlList.add(new URL(repository));
  +continue;
  +} catch (MalformedURLException e) {
  +// Ignore
  +}
  +
   if (repository.endsWith(*.jar)) {
   packed = true;
   repository = repository.substring
  
  
  
  1.91  +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.90
  retrieving revision 1.91
  diff -u -r1.90 -r1.91
  --- changelog.xml 21 Aug 2004 12:26:56 -  1.90
  +++ changelog.xml 21 Aug 2004 19:34:59 -  1.91
  @@ -73,6 +73,9 @@
 fix
   bug30561/bug: Broken restart of NamingService. (yoavs)
 /fix
  +  fix
  +bug30179/bug: Better Bootstrap handling of catalina.properties. (yoavs)
  +  /fix
   /changelog
 /subsection
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30179] - Not all entries in catalina.properties are correctly used by the classloaders

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30179.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30179

Not all entries in catalina.properties are correctly used by the classloaders

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 19:36 ---
Patch applied in TOMCAT_5_0 branch.  Patch applied in CVS_HEAD.  Thanks!

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30532] - When I send a form for to pass of http to https with IE 5.x.

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30532.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30532

When I send a form for to pass of http to https with IE 5.x.

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 19:39 ---
Please post your issue on the mailing list ([EMAIL PROTECTED]) so 
that you can get help debugging it.  I'm far from convinced it's a bug.  For 
starts, use the latest mod_jk, or try other parsers.

We encourage people to open Bugzilla issues only when they have a clear bug 
and complete details to allow us to reproduce it.  Bugzilla is not an 
effective discussion forum.

If after discussion on the mailing list it is concluded that this is indeed a 
bug, feel free to reopen this item.  Thanks.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-5 NOTICE

2004-08-21 Thread billbarker
billbarker2004/08/21 13:21:19

  Modified:.NOTICE
  Log:
  Adding Eclipse to the NOTICE
  
  Revision  ChangesPath
  1.3   +6 -1  jakarta-tomcat-5/NOTICE
  
  Index: NOTICE
  ===
  RCS file: /home/cvs/jakarta-tomcat-5/NOTICE,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NOTICE30 Mar 2004 15:20:06 -  1.2
  +++ NOTICE21 Aug 2004 20:21:19 -  1.3
  @@ -10,4 +10,9 @@
   Scriptable Install Sysem (NSIS), which is
   open source software.  The original software and
   related information is available at
  -http://nsis.sourceforge.net.
  \ No newline at end of file
  +http://nsis.sourceforge.net.
  +
  +Java compilation software for JSP pages is provided by Eclipse, 
  +which is open source software.  The orginal software and 
  +related infomation is available at
  +http://www.eclipse.org.
  \ No newline at end of file
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30788] - Patch to documentation

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30788.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30788

Patch to documentation





--- Additional Comments From [EMAIL PROTECTED]  2004-08-21 23:49 ---
Created an attachment (id=12503)
patch to documentation

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 30285] - Jasper fails to compile in a reloaded webapp with static method signature change

2004-08-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=30285.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30285

Jasper fails to compile in a reloaded webapp with static method signature change

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |



--- Additional Comments From [EMAIL PROTECTED]  2004-08-22 03:02 ---
Are you using Tomcat 5 in myeclipse plugin?
It occurs in my setup in Tomcat 4 without myeclipse plugin.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]