Re: svn commit: r331062 - in /tomcat/sandbox/java/org/apache/coyote: ./ adapters/ standalone/

2005-11-06 Thread Bill Barker
Actually (having spent way too much time in Gump-land recently :), Tomcat 
depends on rhino in Gump.


What I'm looking for is a clear statement from the Tomcat PMC about MPL 
compatibility.  Sorry about hijacking your commit for my agenda ;-).  It 
looks like Christina can't contribute her code for BZ #36133.  However, it 
looks like a fun project if I can do it myself.


- Original Message - 
From: "Costin Manolache" <[EMAIL PROTECTED]>

To: "Tomcat Developers List" 
Sent: Saturday, November 05, 2005 10:33 PM
Subject: Re: svn commit: r331062 - in 
/tomcat/sandbox/java/org/apache/coyote: ./ adapters/ standalone/



I think cocoon is also using rhino, and few other projects - ant is
using it via BSF.

In any case - it is just an example, not required in any way - it's
easier to do some tests and experiments in a scripting language. The
build.xml file will just detect if js.jar is available and skip this
file otherwise ( nothing depends on the JsAdapter ).

Costin

On 11/5/05, Bill Barker <[EMAIL PROTECTED]> wrote:


- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, November 05, 2005 7:13 PM
Subject: svn commit: r331062 - in /tomcat/sandbox/java/org/apache/coyote: 
./

adapters/ standalone/


> Author: costin
> Date: Sat Nov  5 19:13:06 2005
> New Revision: 331062
>
> URL: http://svn.apache.org/viewcvs?rev=331062&view=rev
> Log:
> Code for testing ( and using ) coyote standalone.

> +import org.mozilla.javascript.Context;
> +import org.mozilla.javascript.EvaluatorException;
> +import org.mozilla.javascript.Function;
> +import org.mozilla.javascript.JavaScriptException;
> +import org.mozilla.javascript.Scriptable;
> +import org.mozilla.javascript.ScriptableObject;
> +import org.mozilla.javascript.WrappedException;

I take it that MPL is compatible with ASF?  For those that don't want to
search the archives, my vote is +1 on this issue.  I just wanted to make
certain that everyone is aware of this, since it is buried in a long 
commit

message.



This message is intended only for the use of the person(s) listed above as 
the intended recipient(s), and may contain information that is PRIVILEGED 
and CONFIDENTIAL.  If you are not an intended recipient, you may not read, 
copy, or distribute this message or any attachment. If you received this 
communication in error, please notify us immediately by e-mail and then 
delete all copies of this message and any attachments.


In addition you should be aware that ordinary (unencrypted) e-mail sent 
through the Internet is not secure. Do not send confidential or sensitive 
information, such as social security numbers, account numbers, personal 
identification numbers and passwords, to us via ordinary (unencrypted) 
e-mail.



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




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





This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



Re: tomcat source / eclipse project

2005-11-06 Thread Peter Rossbach

Hey Mark,

I think we must correct the absolut Lib Paths  inside all .classpath.  
Set a Eclipse Variable

to the base.path repository and use this jars instead.
>>>

+   
+   



I am not sure that all jar versions are correspond to the 
build/build.properties.defaults. Example I use Ant 1.6.5.


Thanks
Peter

Mark Thomas schrieb:


Done.

Mark

Ian Darwin wrote:


Mark Thomas wrote:

I have something like this for TC5 & TC4. I do keep the files up to 
date because I use them every time I look at Tomcat code.


I need to migrate my development areas from the old CVS structure to 
the SVN set-up. Once I have updated my eclipse files, I'll add them 
to the repo.


Anyone object to them being added directly under 
tomcat/container/tc5.5.x, tomcat/jasper/tc5.5.x etc?




They pretty well have to be there to work, right? So, please put them 
there.
I presume there's just a .project and a .classpath for each of a few 
top-level
projects, right? These will be harmless to non-Eclipse users, and 
invisible
on platforms that support *NIX filename semantics, so I'd say +1 for 
them.


Thanks
Ian





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









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



svn commit: r331098 - /tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java

2005-11-06 Thread pero
Author: pero
Date: Sun Nov  6 01:39:26 2005
New Revision: 331098

URL: http://svn.apache.org/viewcvs?rev=331098&view=rev
Log:
Fix NPE when simple use only "GET  HTTP/1.0\r\n\r\n"

Why endpoint.getAddress() don't give back local address?
Tested at Windows XP with tomcat 5.5.12.

Modified:
tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java

Modified: 
tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java
URL: 
http://svn.apache.org/viewcvs/tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java?rev=331098&r1=331097&r2=331098&view=diff
==
--- tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java 
(original)
+++ tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java 
Sun Nov  6 01:39:26 2005
@@ -830,7 +830,7 @@
  */
 public void parseHost(MessageBytes valueMB) {
 
-if (valueMB == null || valueMB.isNull()) {
+if (valueMB == null || (valueMB != null && valueMB.isNull()) ) {
 // HTTP/1.0
 // Default is what the socket tells us. Overriden if a host is
 // found/parsed
@@ -838,8 +838,14 @@
 InetAddress localAddress = 
endpoint.getAddress()/*socket.getLocalAddress()*/;
 // Setting the socket-related fields. The adapter doesn't know
 // about socket.
-request.setLocalHost(localAddress.getHostName());
-request.serverName().setString(localAddress.getHostName());
+if(localAddress != null) {
+request.setLocalHost(localAddress.getHostName());
+request.serverName().setString(localAddress.getHostName());
+} else {
+   log.error("host address " + endpoint.getPort() + " '" + 
endpoint.getAddress() + "'");
+   request.setLocalHost("localhost");
+   request.serverName().setString("localhost");
+}
 return;
 }
 



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



Re: svn commit: r331098 - /tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java

2005-11-06 Thread Remy Maucherat

[EMAIL PROTECTED] wrote:

Author: pero
Date: Sun Nov  6 01:39:26 2005
New Revision: 331098

URL: http://svn.apache.org/viewcvs?rev=331098&view=rev
Log:
Fix NPE when simple use only "GET  HTTP/1.0\r\n\r\n"

Why endpoint.getAddress() don't give back local address?
Tested at Windows XP with tomcat 5.5.12.


This patch does not make any sense to me, starting with the modified 
condition. I understand it is trying to fix a problem, but this is not a 
good way. -1.


Note: Obviously, the HTTP connector has the same code.

Rémy


Modified: 
tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java
URL: 
http://svn.apache.org/viewcvs/tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java?rev=331098&r1=331097&r2=331098&view=diff
==
--- tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java 
(original)
+++ tomcat/connectors/trunk/jk/java/org/apache/coyote/ajp/AjpAprProcessor.java 
Sun Nov  6 01:39:26 2005
@@ -830,7 +830,7 @@
  */
 public void parseHost(MessageBytes valueMB) {
 
-if (valueMB == null || valueMB.isNull()) {

+if (valueMB == null || (valueMB != null && valueMB.isNull()) ) {
 // HTTP/1.0
 // Default is what the socket tells us. Overriden if a host is
 // found/parsed
@@ -838,8 +838,14 @@
 InetAddress localAddress = 
endpoint.getAddress()/*socket.getLocalAddress()*/;
 // Setting the socket-related fields. The adapter doesn't know
 // about socket.
-request.setLocalHost(localAddress.getHostName());
-request.serverName().setString(localAddress.getHostName());
+if(localAddress != null) {
+request.setLocalHost(localAddress.getHostName());
+request.serverName().setString(localAddress.getHostName());
+} else {
+   log.error("host address " + endpoint.getPort() + " '" + 
endpoint.getAddress() + "'");
+   request.setLocalHost("localhost");
+   request.serverName().setString("localhost");
+}
 return;
 }
 




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






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



svn commit: r331102 - in /tomcat: build/tc5.5.x/build.properties.default container/tc5.5.x/webapps/docs/changelog.xml

2005-11-06 Thread markt
Author: markt
Date: Sun Nov  6 04:08:59 2005
New Revision: 331102

URL: http://svn.apache.org/viewcvs?rev=331102&view=rev
Log:
Update optional dependencies.

Modified:
tomcat/build/tc5.5.x/build.properties.default
tomcat/container/tc5.5.x/webapps/docs/changelog.xml

Modified: tomcat/build/tc5.5.x/build.properties.default
URL: 
http://svn.apache.org/viewcvs/tomcat/build/tc5.5.x/build.properties.default?rev=331102&r1=331101&r2=331102&view=diff
==
--- tomcat/build/tc5.5.x/build.properties.default (original)
+++ tomcat/build/tc5.5.x/build.properties.default Sun Nov  6 04:08:59 2005
@@ -226,7 +226,7 @@
 
 
 # - Java Activation Framework (JAF), version 1.0.1 or later -
-activation.home=${base.path}/jaf-1.0.1
+activation.home=${base.path}/jaf-1.0.2
 activation.lib=${activation.home}
 activation.jar=${activation.lib}/activation.jar
 
@@ -238,12 +238,12 @@
 jsse.jar=${jsse.lib}/jsse.jar
 
 # - Java Transaction API (JTA), version 1.0.1a or later -
-jta.home=${base.path}/jta-1_0_1a
+jta.home=${base.path}/jta-1_0_1b
 jta.lib=${jta.home}
 jta.jar=${jta.lib}/jta.jar
 
 # - Java Mail, version 1.2 or later -
-mail.home=${base.path}/javamail-1.3.2
+mail.home=${base.path}/javamail-1.3.3_01
 mail.lib=${mail.home}
 mail.jar=${mail.lib}/mail.jar
 

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=331102&r1=331101&r2=331102&view=diff
==
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Sun Nov  6 04:08:59 2005
@@ -36,6 +36,9 @@
   
 37035: Add a placeholder file in the temp directory for 
WinZip tar.gz handling. (yoavs)
   
+  
+Update JAF dependency to 1.0.2, JTA to 1.0.1b and JavaMail to 
1.3.3_01. (markt)
+  
 
   
   



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



svn commit: r331103 - in /tomcat: connectors/trunk/.classpath container/tc5.5.x/.classpath jasper/tc5.5.x/.classpath

2005-11-06 Thread markt
Author: markt
Date: Sun Nov  6 04:11:16 2005
New Revision: 331103

URL: http://svn.apache.org/viewcvs?rev=331103&view=rev
Log:
Use relative paths to libraries for Eclipse projects.
Correct some library versions to align with build.properties.default

Modified:
tomcat/connectors/trunk/.classpath
tomcat/container/tc5.5.x/.classpath
tomcat/jasper/tc5.5.x/.classpath

Modified: tomcat/connectors/trunk/.classpath
URL: 
http://svn.apache.org/viewcvs/tomcat/connectors/trunk/.classpath?rev=331103&r1=331102&r2=331103&view=diff
==
--- tomcat/connectors/trunk/.classpath (original)
+++ tomcat/connectors/trunk/.classpath Sun Nov  6 04:11:16 2005
@@ -8,11 +8,11 @@



-   
-   
-   
-   
-   
-   
+   
+   
+   
+   
+   
+   

 

Modified: tomcat/container/tc5.5.x/.classpath
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/.classpath?rev=331103&r1=331102&r2=331103&view=diff
==
--- tomcat/container/tc5.5.x/.classpath (original)
+++ tomcat/container/tc5.5.x/.classpath Sun Nov  6 04:11:16 2005
@@ -11,22 +11,21 @@



-   
-   
+   
+   

-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   

 

Modified: tomcat/jasper/tc5.5.x/.classpath
URL: 
http://svn.apache.org/viewcvs/tomcat/jasper/tc5.5.x/.classpath?rev=331103&r1=331102&r2=331103&view=diff
==
--- tomcat/jasper/tc5.5.x/.classpath (original)
+++ tomcat/jasper/tc5.5.x/.classpath Sun Nov  6 04:11:16 2005
@@ -3,9 +3,9 @@



-   
-   
-   
-   
+   
+   
+   
+   

 



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



Re: tomcat source / eclipse project

2005-11-06 Thread Mark Thomas

Peter Rossbach wrote:

Hey Mark,

I think we must correct the absolut Lib Paths  inside all .classpath.  
Set a Eclipse Variable

to the base.path repository and use this jars instead.


Didn't know you could do this. I have updated the .classpaths accordingly.

I am not sure that all jar versions are correspond to the 
build/build.properties.defaults. Example I use Ant 1.6.5.


There were a number of differences. These should all now align.

Mark



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



svn commit: r331105 - /tomcat/current/tc5.5.x/

2005-11-06 Thread markt
Author: markt
Date: Sun Nov  6 04:38:45 2005
New Revision: 331105

URL: http://svn.apache.org/viewcvs?rev=331105&view=rev
Log:
Align tomcat/current SVN externals configuration with the main build script.

Modified:
tomcat/current/tc5.5.x/   (props changed)

Propchange: tomcat/current/tc5.5.x/
--
--- svn:externals (original)
+++ svn:externals Sun Nov  6 04:38:45 2005
@@ -1,5 +1,5 @@
 build https://svn.apache.org/repos/asf/tomcat/build/tc5.5.x
 container https://svn.apache.org/repos/asf/tomcat/container/tc5.5.x
 connectors https://svn.apache.org/repos/asf/tomcat/connectors/trunk
-jasper https://svn.apache.org/repos/asf/tomcat/jasper/tc5.5.x
+jasper https://svn.apache.org/repos/asf/tomcat/jasper/tc5.5.x/jasper2
 servletapi 
https://svn.apache.org/repos/asf/tomcat/servletapi/servlet2.4-jsp2.0-tc5.x



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



svn commit: r331106 - in /tomcat/jasper/tc5.5.x: .classpath jasper2/.classpath

2005-11-06 Thread markt
Author: markt
Date: Sun Nov  6 04:41:19 2005
New Revision: 331106

URL: http://svn.apache.org/viewcvs?rev=331106&view=rev
Log:
Move eclipse files to align new with tomcat/current/tc5.5.x configuration 

Added:
tomcat/jasper/tc5.5.x/jasper2/.classpath
  - copied unchanged from r331105, tomcat/jasper/tc5.5.x/.classpath
Removed:
tomcat/jasper/tc5.5.x/.classpath


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



svn commit: r331107 - in /tomcat/jasper/tc5.5.x: .project jasper2/.project

2005-11-06 Thread markt
Author: markt
Date: Sun Nov  6 04:41:44 2005
New Revision: 331107

URL: http://svn.apache.org/viewcvs?rev=331107&view=rev
Log:
Move eclipse files to align new with tomcat/current/tc5.5.x configuration

Added:
tomcat/jasper/tc5.5.x/jasper2/.project
  - copied unchanged from r331106, tomcat/jasper/tc5.5.x/.project
Removed:
tomcat/jasper/tc5.5.x/.project


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



svn commit: r331108 - /tomcat/jasper/tc5.5.x/jasper2/.classpath

2005-11-06 Thread markt
Author: markt
Date: Sun Nov  6 04:43:19 2005
New Revision: 331108

URL: http://svn.apache.org/viewcvs?rev=331108&view=rev
Log:
Update eclipse classpath to align new with tomcat/current/tc5.5.x configuration

Modified:
tomcat/jasper/tc5.5.x/jasper2/.classpath

Modified: tomcat/jasper/tc5.5.x/jasper2/.classpath
URL: 
http://svn.apache.org/viewcvs/tomcat/jasper/tc5.5.x/jasper2/.classpath?rev=331108&r1=331107&r2=331108&view=diff
==
--- tomcat/jasper/tc5.5.x/jasper2/.classpath (original)
+++ tomcat/jasper/tc5.5.x/jasper2/.classpath Sun Nov  6 04:43:19 2005
@@ -1,6 +1,6 @@
 
 
-   
+   






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



Re: svn commit: r331062 - in /tomcat/sandbox/java/org/apache/coyote: ./ adapters/ standalone/

2005-11-06 Thread Costin Manolache
My understanding is that tomcat can't _distribute_ code that isn't
apache license compatible,
and  we shouldn't depend on such code to compile or run a functional tomcat.

Talking about agendas :-), I think that any code that is not required
to have a working servlet container should be in a separate add-on
module. SSL modules are excelent examples. Actually, a lot of the
things that are in the normal tomcat distro would be make good add-on
modules. Firefox is a good example.


Costin

On 11/6/05, Bill Barker <[EMAIL PROTECTED]> wrote:
> Actually (having spent way too much time in Gump-land recently :), Tomcat
> depends on rhino in Gump.
>
> What I'm looking for is a clear statement from the Tomcat PMC about MPL
> compatibility.  Sorry about hijacking your commit for my agenda ;-).  It
> looks like Christina can't contribute her code for BZ #36133.  However, it
> looks like a fun project if I can do it myself.
>
> - Original Message -
> From: "Costin Manolache" <[EMAIL PROTECTED]>
> To: "Tomcat Developers List" 
> Sent: Saturday, November 05, 2005 10:33 PM
> Subject: Re: svn commit: r331062 - in
> /tomcat/sandbox/java/org/apache/coyote: ./ adapters/ standalone/
>
>
> I think cocoon is also using rhino, and few other projects - ant is
> using it via BSF.
>
> In any case - it is just an example, not required in any way - it's
> easier to do some tests and experiments in a scripting language. The
> build.xml file will just detect if js.jar is available and skip this
> file otherwise ( nothing depends on the JsAdapter ).
>
> Costin
>
> On 11/5/05, Bill Barker <[EMAIL PROTECTED]> wrote:
> >
> > - Original Message -
> > From: <[EMAIL PROTECTED]>
> > To: 
> > Sent: Saturday, November 05, 2005 7:13 PM
> > Subject: svn commit: r331062 - in /tomcat/sandbox/java/org/apache/coyote:
> > ./
> > adapters/ standalone/
> >
> >
> > > Author: costin
> > > Date: Sat Nov  5 19:13:06 2005
> > > New Revision: 331062
> > >
> > > URL: http://svn.apache.org/viewcvs?rev=331062&view=rev
> > > Log:
> > > Code for testing ( and using ) coyote standalone.
> > 
> > > +import org.mozilla.javascript.Context;
> > > +import org.mozilla.javascript.EvaluatorException;
> > > +import org.mozilla.javascript.Function;
> > > +import org.mozilla.javascript.JavaScriptException;
> > > +import org.mozilla.javascript.Scriptable;
> > > +import org.mozilla.javascript.ScriptableObject;
> > > +import org.mozilla.javascript.WrappedException;
> >
> > I take it that MPL is compatible with ASF?  For those that don't want to
> > search the archives, my vote is +1 on this issue.  I just wanted to make
> > certain that everyone is aware of this, since it is buried in a long
> > commit
> > message.
> >
> >
> >
> > This message is intended only for the use of the person(s) listed above as
> > the intended recipient(s), and may contain information that is PRIVILEGED
> > and CONFIDENTIAL.  If you are not an intended recipient, you may not read,
> > copy, or distribute this message or any attachment. If you received this
> > communication in error, please notify us immediately by e-mail and then
> > delete all copies of this message and any attachments.
> >
> > In addition you should be aware that ordinary (unencrypted) e-mail sent
> > through the Internet is not secure. Do not send confidential or sensitive
> > information, such as social security numbers, account numbers, personal
> > identification numbers and passwords, to us via ordinary (unencrypted)
> > e-mail.
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
> This message is intended only for the use of the person(s) listed above as 
> the intended recipient(s), and may contain information that is PRIVILEGED and 
> CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, 
> or distribute this message or any attachment. If you received this 
> communication in error, please notify us immediately by e-mail and then 
> delete all copies of this message and any attachments.
>
> In addition you should be aware that ordinary (unencrypted) e-mail sent 
> through the Internet is not secure. Do not send confidential or sensitive 
> information, such as social security numbers, account numbers, personal 
> identification numbers and passwords, to us via ordinary (unencrypted) e-mail.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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



Re: svn commit: r331062 - in /tomcat/sandbox/java/org/apache/coyote: ./ adapters/ standalone/

2005-11-06 Thread Mark Thomas

Bill Barker wrote:
What I'm looking for is a clear statement from the Tomcat PMC about MPL 
compatibility.


The short answer is we can distribute unmodified MPL licenced binaries 
with some caveats. See Special Order 6B in this link.

http://www.apache.org/foundation/records/minutes/2005/board_minutes_2005_08_17.txt

For a very unofficial summary of the various licences see 
http://wiki.apache.org/jakarta/LicenceIssues


There is also the legal discuss mailing list where we can ask for 
clarifications if required.

http://mail-archives.apache.org/mod_mbox/www-legal-discuss/

Mark



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



Bug report for Tomcat 3 [2005/11/06]

2005-11-06 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 2350|Ver|Nor|2001-06-27|ServletConfig.getInitParameter() requires url-patt|
| 2478|Opn|Cri|2001-07-06|Passing Session variables between JSP's and Servle|
| 4551|Opn|Nor|2001-10-31|Ctx( /tt01 ): IOException in: R( /tt01 + /com/abc/|
| 4980|New|Min|2001-11-20|Startup message indicates incorrect log file  |
| 4994|New|Nor|2001-11-21|Tomcat needs a mechanism for clean and certain shu|
| 5064|New|Cri|2001-11-25|Socket write error when include files is more than|
| 5108|New|Maj|2001-11-26|Docs for Tomcat 3.2.x appear to be for Tomcat 3.3 |
| 5137|New|Nor|2001-11-27|Null pointer in class loader after attempting to r|
| 5160|Unc|Maj|2001-11-28|'IllegalStateException'   |
| 5331|New|Nor|2001-12-09|getPathInfo vs URL normalization  |
| 5510|New|Blk|2001-12-19|How to call ejb deployed in JBoss from Tomcat serv|
| 5756|New|Nor|2002-01-08|jspc.bat exits with wrong ERRORLEVEL  |
| 5797|New|Nor|2002-01-10|UnCatched ? StringIndexOutOfBoundsException: Strin|
| 6027|New|Maj|2002-01-25|Tomcat  Automatically shuts down as service   |
| 6168|New|Blk|2002-02-01|IllegalStateException |
| 6451|New|Cri|2002-02-14|Stackoverflow |
| 6478|New|Enh|2002-02-14|Default Tomcat Encoding   |
| 6488|Ver|Maj|2002-02-15|Error: 304. Apparent bug in default ErrorHandler c|
| 6648|New|Nor|2002-02-25|jakarta-servletapi build with java 1.4 javadoc err|
| 6702|New|Cri|2002-02-27|win 2k services not working   |
| 6796|New|Cri|2002-03-01|Tomcat dies periodically  |
| 6989|New|Maj|2002-03-08|Unable to read tld file during parallel JSP compil|
| 7013|New|Cri|2002-03-10|Entering a servlet path with non-ISO8859-1 charact|
| 7227|New|Nor|2002-03-19| directive don't work |
| 7626|New|Nor|2002-03-29|classloader not working properly  |
| 7652|New|Cri|2002-04-01|Tomcat stalls periodically|
| 7785|New|Blk|2002-04-06|tomcat bug in context reloading   |
| 7863|New|Maj|2002-04-09|I have a problem when running Tomcat with IIS |
| 8187|New|Cri|2002-04-17|Errors when Tomcat used with MS Access database   |
| 8239|New|Cri|2002-04-18|Resource temporary unavailable|
| 8263|New|Cri|2002-04-18|url-pattern easy to circumvent|
| 9250|New|Maj|2002-05-20|outOfMemoryError  |
| 9367|New|Maj|2002-05-23|HttpSessionBindingEvent not thrown for HttpSession|
| 9390|New|Nor|2002-05-24|jasper compilation error in tomcat|
| 9480|New|Nor|2002-05-29|Data connection pooling   |
| 9607|New|Maj|2002-06-04|precompile JSP|
| 9737|Ver|Nor|2002-06-10|ArrayIndexOutOfBoundsException when sending just p|
|10047|New|Cri|2002-06-20|IllegalStateException |
|10202|New|Maj|2002-06-25|Tomcat is not responding in time  |
|10357|Unc|Blk|2002-06-30|java.lang.IllegalArgumentException: Short Read|
|10406|New|Cri|2002-07-02|IllegalStateException |
|11087|New|Blk|2002-07-23|IllegalStateException |
|11286|New|Maj|2002-07-30|Tomcat threads not respond if increase JVM size   |
|11466|New|Nor|2002-08-05|ContextManager: SocketException reading request   |
|12156|New|Cri|2002-08-29|Apache and Tomcat 3.3.1 Interworking problem  |
|12194|New|Maj|2002-08-30|Tomcat does not send WWW-Authenticate header  |
|12852|New|Nor|2002-09-20|May be error in _jspService() -> out.flushBuffers(|
|14386|New|Maj|2002-11-08|Date headers corrupted using setDateHeader|
|15632|New|Nor|2002-12-23|Problem with the Tomcat Sessions Parameter on URL |
|16363|New|Cri|2003-01-23|Stack Overflow accessing compiled JSP - Tomcat 3.2|
|17081|New|Min|2003-02-14|Some javadoc comment fixes|
|17915|New|Maj|2003

Bug report for Tomcat 4 [2005/11/06]

2005-11-06 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 3839|Opn|Enh|2001-09-26|Problem bookmarking login page|
| 4227|Opn|Enh|2001-10-17|Invalid CGI path  |
| 5329|New|Enh|2001-12-08|NT Service exits startup before Tomcat is finished|
| 5795|New|Enh|2002-01-10|Catalina Shutdown relies on localhost causing prob|
| 5829|New|Enh|2002-01-13|StandardManager needs to cope with sessions throwi|
| 5985|New|Enh|2002-01-23|Tomcat should perform a more restrictive validatio|
| 6600|Opn|Enh|2002-02-20|enodeURL adds 'jsession' when 'isRequestedSessionI|
| 6614|New|Enh|2002-02-21|Have Bootstrap and StandardClassLoader use the sam|
| 6671|New|Enh|2002-02-25|Simple custom tag example uses old declaration sty|
| 7043|New|Enh|2002-03-12|database user and password for JDBC Based Store   |
| 7374|New|Enh|2002-03-22|Apache Tomcat/4.0.1 message on standard output|
| 7676|New|Enh|2002-04-02|Allow name property to use match experssions in  without className in server.xml produces N|
|11069|Opn|Enh|2002-07-23|Tomcat not flag error if tld is outside of /WEB-IN|
|11129|New|Enh|2002-07-24|New valve for putting the sessionIDs in the reques|
|11248|New|Enh|2002-07-29|DefaultServlet doesn't send expires header|
|11754|Opn|Enh|2002-08-15|Synchronous shutdown script - shutdown.sh should w|
|12069|New|Enh|2002-08-27|Creation of more HttpSession objects for one previ|
|12658|New|Enh|2002-09-15|a proxy host and port at the  element level |
|12766|New|Enh|2002-09-18|Tomcat should use tld files in /WEB-INF/ over vers|
|13040|New|Nor|2002-09-26|can't retrieve external context who's uri is a sub|
|13309|Opn|Enh|2002-10-04|Catalina calls System.exit()  |
|13634|New|Enh|2002-10-15|Allowing system properties to be substituted in co|
|13689|Opn|Enh|2002-10-16|Classloader paths for 'Common' classes and librari|
|13731|New|Enh|2002-10-17|Final request, response, session and other variabl|
|13846|New|Nor|2002-10-22|If-Modified-Since results in incorrect headers|
|13941|New|Enh|2002-10-24|reload is VERY slow   |
|13965|New|Enh|2002-10-25|Catalina.sh correction request for Tru64 Unix |
|13983|New|Nor|2002-10-25|RMI call from Web Application throws SocketExcepti|
|14097|New|Enh|2002-10-30|hardcoded registry value for vm lets tomcat servic|
|14416|New|Enh|2002-11-10|blank tag name in TLD cause NullPointerException  |
|14635|New|Enh|2002-11-18|Should be possible not to have -MM-DD in log f|
|14766|New|Enh|2002-11-22|Redirect Vavle|
|14993|New|Enh|2002-12-02|Possible obselete synchronized declaration|
|15115|New|Enh|2002-12-05|correct docs... XML parser *cannot* be overridden |
|15417|Opn|Enh|2002-12-16|Add port for forced compilation of JSP pages  |
|15570|New|Nor|2002-12-20|incorrect role-name mapping for "*" with respect t|
|15688|New|Enh|2002-12-27|full-qualified names instead of imports   |
|15893|New|Enh|2003-01-08|Need a getPort() method on Connector or similar fu|
|15941|New|Enh|2003-01-10|Expose rootCause exceptions at deeper levels  |
|15946|New|Nor|2003-01-10|Documentation change  |
|16185|New|Nor|2003-01-16|UserDatabase is not bound in this context |
|16294|New|Enh|2003-01-21|Configurable URL Decoding.|
|16357|New|Enh|2003-01-23|"connection timeout reached"  |
|16531|New|Enh|2003-01-29|Updating already deployed ".war" files in a single|
|16579|New|Enh|2003-01-30|documentation page layout/style breaks wrapping to|
|16596|New|Enh|2003-01-30|option for disabling log rotation |
|17070|New|Enh|2003-02-14|The Catalina Ant tasks do not allow for 'reusable'|
|17146|New|Enh|2003-02-18|Simplify build.xml using  whose target performs a 'forward' do|
|21669|New|Enh|2003-07-16|JNDIRealm roleBase pattern enahncement|
|21804|New|Enh|2003-07-22|Tomcat ignores "allowLinking" resource on DefaultC|
|22113|New|Enh|2003-08-04|Improvable E

Bug report for Tomcat 5 [2005/11/06]

2005-11-06 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|17310|Ver|Nor|2003-02-22|;jsessionid confuses StandardHostcan't find Co|
|19803|Ver|Maj|2003-05-09|manager reload fails and disables app - Incompatib|
|19958|Ver|Maj|2003-05-15|Problems reading ServletInputStream   |
|21045|Ver|Nor|2003-06-24|Manager app does find resources   |
|21600|Ver|Nor|2003-07-15|'s lost after manager stop/start or rel|
|22679|Ver|Enh|2003-08-24|how to access ssl session ID out of tomcat to prev|
|22986|Ver|Nor|2003-09-08|Web apps with context XML file don't start if CATA|
|24413|Ver|Nor|2003-11-04|bundled JMX implementation not compliant to specif|
|24943|Ver|Nor|2003-11-24|Tomcat 5.0.14 / Windows 2000 Service does not star|
|25078|Ver|Nor|2003-11-29|Catalina Ant Serverinfo task always fails |
|27338|Ver|Maj|2004-03-01|Wrong mappings for JSP Documents (.jspx)  |
|28039|New|Enh|2004-03-30|Cluster Support for SingleSignOn  |
|28633|New|Nor|2004-04-27|Add JMX Support to ClusterManager |
|28634|New|Nor|2004-04-27|Extend StandardManager/StandardSession for DeltaMa|
|28709|Ver|Nor|2004-04-30|javax.servlet.http.HttpServletRequest.isRequestedS|
|28875|Ver|Nor|2004-05-10|Multi-byte characters in default error page aren't|
|29091|Opn|Nor|2004-05-19|Non-ascii characters are not handled correctly... |
|29160|Ver|Enh|2004-05-23|precompile problem: _jspx_meth_* (javax.servlet.js|
|29494|Opn|Enh|2004-06-10|No way to set PATH when running as a service on Wi|
|29497|Unc|Nor|2004-06-10|Connection pool, redeployment |
|29521|Ver|Cri|2004-06-11|No destroy methods called on service shutdown |
|30241|Ver|Enh|2004-07-21|Enhance build script to use branch argument when c|
|30833|Ver|Nor|2004-08-24|request.getServerPort() returns wrong port (WAS: r|
|31125|Opn|Nor|2004-09-08|conf/web.xml not valid|
|31804|Opn|Maj|2004-10-20|setParent() is not called on nested tags in a tag |
|32081|New|   |2004-11-05|Wrapper scripts require a JDK to be present.  |
|32180|New|Nor|2004-11-11|EL functions are executed in privileged context   |
|32280|Ver|Cri|2004-11-17|Problem clustering tomcat when a failed server is |
|32569|Ass|Nor|2004-12-07|ServletContextListener will not die   |
|32593|Inf|Maj|2004-12-09|Server (Apache 2.0.48) reached MaxClients setting |
|32754|Inf|Nor|2004-12-17|Can't modify thread configuration attributes of AJ|
|32832|Ver|Maj|2004-12-23|request.getSession(false) fails to return null.   |
|33180|Ver|Nor|2005-01-20|JSTL automatic type conversion gives unexpected re|
|33262|Inf|Nor|2005-01-27|Service Manager autostart should check for adminis|
|33356|Inf|Maj|2005-02-02|Incorrect parsing of tag attributes   |
|33407|Inf|Nor|2005-02-05|\$ is quoted even with el-ignored=true|
|33453|Opn|Enh|2005-02-08|Jasper should recompile JSP files whose datestamps|
|33494|New|Enh|2005-02-10|jscv configure script fails on x86_64 |
|33650|Inf|Enh|2005-02-19|Jasper performance for multiple files processing  |
|33671|Opn|Enh|2005-02-21|Manual Windows service installation with custom na|
|33831|Ver|Nor|2005-03-03|RequestDispatcher.forward and resource missing|
|34006|Ver|Nor|2005-03-14|Undeploy of webapps with antiResourceLocking in ME|
|34016|Ver|Nor|2005-03-15|antiResourceLocking webapp fails to deploy on Tomc|
|34033|Ver|Nor|2005-03-16|Cannot delete users using Administration Tool weba|
|34076|Inf|Nor|2005-03-18|overriding content.xml docBase with manager webapp|
|34319|New|Nor|2005-04-06|StoreBase.processExpires() is very inefficient|
|34396|Inf|   |2005-04-11|security exception using datasource in|
|35606|New|Maj|2005-07-05|Problem with Session cookies and multiple webapps |
|35635|New|Nor|2005-07-06|Tomcat service does not log startup error messages|
|35710|New|Enh|2005-07-12|Enable Session Replication via Cross Context calls|
|35715|New|Nor|2005-07-13|Buffering in JK needs to be configurable for IIS  |
|35746|Inf

Bug report for Watchdog [2005/11/06]

2005-11-06 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|  278|Unc|Nor|2000-12-04|Bug in GetParameterValuesTestServlet.java file Bug|
|  279|Unc|Nor|2000-12-04|Logical Error in GetParameterValuesTestServlet Bug|
|  469|Unc|Nor|2001-01-17|in example-taglib.tld "urn" should be "uri" BugRat|
|  470|Unc|Nor|2001-01-17|FAIL positiveForward.jsp and positiveInclude.jsp B|
| 9634|New|Enh|2002-06-05|No tests exist for ServletContext.getResourcePaths|
|10703|New|Enh|2002-07-11|Need to test getRequestURI after RequestDispatcher|
|11336|New|Enh|2002-07-31|Test wrapped path methods with RD.foward()|
|11663|New|Maj|2002-08-13|JSP precompile tests rely on Jasper specific behav|
|11664|New|Maj|2002-08-13|A sweep is needed of all Watchdog 4.0 tag librarie|
|11665|New|Maj|2002-08-13|ServletToJSPErrorPageTest and ServletToServletErro|
|11666|New|Maj|2002-08-13|SetBufferSize_1TestServlet is invalid.|
|14004|New|Maj|2002-10-28|Incorrent behaviour of all attribute-related lifec|
|15504|New|Nor|2002-12-18|JSP positiveGetValues test relies on order preserv|
|24649|New|Nor|2003-11-12|getRemoteHost fails when agent has uppercase chara|
|29398|New|Nor|2004-06-04|Update site and note current status   |
+-+---+---+--+--+
| Total   15 bugs   |
+---+

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



DO NOT REPLY [Bug 27371] - java.lang.ThreadDeath caused by log4j when reloading Tomcat app

2005-11-06 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://issues.apache.org/bugzilla/show_bug.cgi?id=27371





--- Additional Comments From [EMAIL PROTECTED]  2005-11-06 23:21 ---
The testcase is fairly straightforward - all you need is a servlet with a
service() method with say a (generous) twenty second sleep in it (during which
you will request a reload of the context), followed by any code that will cause
a class to be loaded.  Hit the servlet with a service request, and reload the
webapp during the sleep.  Tomcat will have invalidated the classloader (and
reloaded the context) by the time the sleep completes, and you should see a
ThreadDeath thrown.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.

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



svn commit: r331176 - /tomcat/build/tc5.5.x/build.xml

2005-11-06 Thread billbarker
Author: billbarker
Date: Sun Nov  6 17:51:43 2005
New Revision: 331176

URL: http://svn.apache.org/viewcvs?rev=331176&view=rev
Log:
Fix default jasper.home to reflect new directory structure

Modified:
tomcat/build/tc5.5.x/build.xml

Modified: tomcat/build/tc5.5.x/build.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/build/tc5.5.x/build.xml?rev=331176&r1=331175&r2=331176&view=diff
==
--- tomcat/build/tc5.5.x/build.xml (original)
+++ tomcat/build/tc5.5.x/build.xml Sun Nov  6 17:51:43 2005
@@ -39,7 +39,7 @@
   
   
+   value="${basedir}/../${jasper.project}"/>
   
   

svn commit: r331177 - /tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java

2005-11-06 Thread billbarker
Author: billbarker
Date: Sun Nov  6 18:08:30 2005
New Revision: 331177

URL: http://svn.apache.org/viewcvs?rev=331177&view=rev
Log:
Allow xerces to know where the web.xml file is so that relative entities can be 
resolved.

Fix for Bug #37261

Modified:

tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java

Modified: 
tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java
URL: 
http://svn.apache.org/viewcvs/tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java?rev=331177&r1=331176&r2=331177&view=diff
==
--- 
tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java
 (original)
+++ 
tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java
 Sun Nov  6 18:08:30 2005
@@ -17,9 +17,9 @@
 package org.apache.jasper.compiler;
 
 import java.io.InputStream;
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
+import java.io.IOException;
 import java.net.JarURLConnection;
+import java.net.MalformedURLException;
 import java.net.URL;
 import java.net.URLClassLoader;
 import java.net.URLConnection;
@@ -31,6 +31,7 @@
 import java.util.StringTokenizer;
 import java.util.jar.JarEntry;
 import java.util.jar.JarFile;
+import org.xml.sax.InputSource;
 
 import javax.servlet.ServletContext;
 
@@ -265,10 +266,11 @@
 // Acquire input stream to web application deployment descriptor
 String altDDName = (String)ctxt.getAttribute(
 Constants.ALT_DD_ATTR);
+URL uri = null;
 if (altDDName != null) {
 try {
-is = new FileInputStream(altDDName);
-} catch (FileNotFoundException e) {
+uri = new URL(FILE_PROTOCOL+altDDName.replace('\\', '/'));
+} catch (MalformedURLException e) {
 if (log.isWarnEnabled()) {
 log.warn(Localizer.getMessage(
 "jsp.error.internal.filenotfound",
@@ -276,25 +278,28 @@
 }
 }
 } else {
-is = ctxt.getResourceAsStream(WEB_XML);
-if (is == null && log.isWarnEnabled()) {
+uri = ctxt.getResource(WEB_XML);
+if (uri == null && log.isWarnEnabled()) {
 log.warn(Localizer.getMessage(
 "jsp.error.internal.filenotfound",
 WEB_XML));
 }
 }
 
-if (is == null) {
+if (uri == null) {
 return;
 }
+   is = uri.openStream();
+InputSource ip = new InputSource(is);
+ip.setSystemId(uri.toExternalForm()); 
 
 // Parse the web application deployment descriptor
 TreeNode webtld = null;
 // altDDName is the absolute path of the DD
 if (altDDName != null) {
-webtld = new ParserUtils().parseXMLDocument(altDDName, is);
+webtld = new ParserUtils().parseXMLDocument(altDDName, ip);
 } else {
-webtld = new ParserUtils().parseXMLDocument(WEB_XML, is);
+webtld = new ParserUtils().parseXMLDocument(WEB_XML, ip);
 }
 
 // Allow taglib to be an element of the root or jsp-config (JSP2.0)



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



DO NOT REPLY [Bug 37261] - Parsing web.xml from TldLocationsCache does not handle external entities

2005-11-06 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://issues.apache.org/bugzilla/show_bug.cgi?id=37261


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-11-07 03:09 ---
This is now fixed in the SVN trunk, and will appear in 5.5.13.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



svn commit: r331179 - /tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java

2005-11-06 Thread billbarker
Author: billbarker
Date: Sun Nov  6 18:29:09 2005
New Revision: 331179

URL: http://svn.apache.org/viewcvs?rev=331179&view=rev
Log:
Oops, fix tabs

Modified:

tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java

Modified: 
tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java
URL: 
http://svn.apache.org/viewcvs/tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java?rev=331179&r1=331178&r2=331179&view=diff
==
--- 
tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java
 (original)
+++ 
tomcat/jasper/tc5.5.x/jasper2/src/share/org/apache/jasper/compiler/TldLocationsCache.java
 Sun Nov  6 18:29:09 2005
@@ -289,7 +289,7 @@
 if (uri == null) {
 return;
 }
-   is = uri.openStream();
+is = uri.openStream();
 InputSource ip = new InputSource(is);
 ip.setSystemId(uri.toExternalForm()); 
 



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



DO NOT REPLY [Bug 37143] - Jasper precompiler didn't handle external entities

2005-11-06 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://issues.apache.org/bugzilla/show_bug.cgi?id=37143


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE




--- Additional Comments From [EMAIL PROTECTED]  2005-11-07 04:17 ---
AFAIK, these are the only two places where web.xml is parsed.

*** This bug has been marked as a duplicate of 37261 ***

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 37261] - Parsing web.xml from TldLocationsCache does not handle external entities

2005-11-06 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://issues.apache.org/bugzilla/show_bug.cgi?id=37261


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Additional Comments From [EMAIL PROTECTED]  2005-11-07 04:17 ---
*** Bug 37143 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 27371] - java.lang.ThreadDeath caused by log4j when reloading Tomcat app

2005-11-06 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://issues.apache.org/bugzilla/show_bug.cgi?id=27371





--- Additional Comments From [EMAIL PROTECTED]  2005-11-07 07:11 ---
Brett,

There seems to be a mismatch between your test-case description and what I've
been experiencing on my end. What I see on my end is request #1 is run to
termination, I request a reload of the webapp, Tomcat's manager fails the reload
operation and indicates a ThreadDeath has occured. I fully expect the request to
get ThreadDeath if it continues running beyond the scope of a context reload but
what I am seeing (and I consider this a bug) is Tomcat dishing out a ThreadDeath
to a completely unrelated request. If I try sending out request #2 after the
reload operation returns ThreadDeath, the request will fail with yet another
exception. From this point onward Tomcat is in some sort of bad state and no
matter how many times I try manager stop/start/reload it'll always fail. I am
forced to fully shutdown Tomcat and restart it. New requests to the webapp now 
work.

You can read more about this here:
http://www.netbeans.org/issues/show_bug.cgi?id=62529

Do you have any idea why this is occuring? I have been unable to narrow this
down to a minimal testcase. I saw it once in my minimal testcase, but too rare
to be of any use. In my original application I see it on the first
manager/reload request. I will continue trying to isolate the problem.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.

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