DO NOT REPLY [Bug 40135] - error-page and exception-type is not working properly

2006-09-10 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=40135





--- Additional Comments From [EMAIL PROTECTED]  2006-09-10 18:23 ---
For my special case it was shale, that was eating the 500s errors.
Sorry for the inconvenience.

For me, this can be closed.

-- 
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 40135] - error-page and exception-type is not working properly

2006-09-10 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=40135


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2006-09-10 18:50 ---
Ive read the jsp api specification and according to it, the container can decide
what to do if an exception is raised and not catched in the jsp file and there
is no errorPage attribute in the page tag in that jsp.

Unfortunately, Tomcat used to do something in 5.5.12 and does something else
nowadays. Therefore this can either be left as Tomcat's decision or roll'd back
and redefined.

-- 
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: r442059 - in /tomcat: container/tc5.5.x/catalina/src/conf/ container/tc5.5.x/webapps/docs/ jasper/tc5.5.x/src/share/org/apache/jasper/compiler/

2006-09-10 Thread markt
Author: markt
Date: Sun Sep 10 18:27:19 2006
New Revision: 442059

URL: http://svn.apache.org/viewvc?view=rev&rev=442059
Log:
Fix bug 33407. \$ in template text was treated as quoted even when 
isELIgnored=true

Modified:
tomcat/container/tc5.5.x/catalina/src/conf/server.xml
tomcat/container/tc5.5.x/catalina/src/conf/tomcat-users.xml
tomcat/container/tc5.5.x/webapps/docs/changelog.xml
tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java
tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Parser.java

Modified: tomcat/container/tc5.5.x/catalina/src/conf/server.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/conf/server.xml?view=diff&rev=442059&r1=442058&r2=442059
==
--- tomcat/container/tc5.5.x/catalina/src/conf/server.xml (original)
+++ tomcat/container/tc5.5.x/catalina/src/conf/server.xml Sun Sep 10 18:27:19 
2006
@@ -90,13 +90,11 @@
-->
 
 
-
+   clientAuth="false" sslProtocol="TLS" 
keystoreFile="./conf/.localhost" />
 
 
 
+  
 
   
-  
 
   
@@ -183,6 +181,17 @@
   connectionURL="jdbc:odbc:CATALINA"
   userTable="users" userNameCol="user_name" userCredCol="user_pass"
   userRoleTable="user_roles" roleNameCol="role_name" />
+  -->
+
+  
 
   
+
 
-  
-  
-  
+  
+  
+  
+  
+  
+  
+  
 

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?view=diff&rev=442059&r1=442058&r2=442059
==
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Sun Sep 10 18:27:19 2006
@@ -35,6 +35,10 @@
 more non-special characters and then a { character caused an
 exception. (markt)
   
+  
+33407: The string \$ in template text was reduced to $
+when the isELIgnored page directive was set to true. (markt)
+  
 
  
 
@@ -68,7 +72,7 @@
   
 
   
-40418APR Endpoint socket evaluation (remm)
+40418: APR Endpoint socket evaluation (remm)
   
   

@@ -81,10 +85,6 @@
   
 

-  
-
-
- 
 
 
 

Modified: 
tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java
URL: 
http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java?view=diff&rev=442059&r1=442058&r2=442059
==
--- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java 
(original)
+++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java 
Sun Sep 10 18:27:19 2006
@@ -1886,6 +1886,16 @@
 return;
 }
 
+// Replace marker for \$ sequence with correct sequence
+if (text.indexOf(Constants.ESC) > 0) {
+if (pageInfo.isELIgnored()) {
+text = text.replaceAll(String.valueOf(Constants.ESC), 
"\\$");
+textSize++;
+} else {
+text = text.replace(Constants.ESC, '$');
+}
+}
+
 if (textSize <= 3) {
// Special case small text strings
n.setBeginJavaLine(out.getJavaLine());

Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Parser.java
URL: 
http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Parser.java?view=diff&rev=442059&r1=442058&r2=442059
==
--- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Parser.java 
(original)
+++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Parser.java Sun 
Sep 10 18:27:19 2006
@@ -1423,13 +1423,16 @@
 ttext.write('\\');
 break;
 }
+// Look for \% or \$
+// Only recognize \$ if isELIgnored is false, but since it can
+// be set in a page directive, it cannot be determined yet.
 char next = (char)reader.peekChar();
-// Looking for \% or \$
-// TODO: only recognize \$ if isELIgnored is false, but since
-// it can be set in a page directive, it cannot be determined
-// here.  Argh!
-if (next == '%' || next == '$') {
+if (next == '%') {
 ch = reader.nextChar();
+} else if(next == '$') {
+// Skip the $ and use a hack to flag this sequence
+reader.nextChar();
+ch = Constants.ESC;
 }
 }
 ttext.write(ch);




svn commit: r442061 - in /tomcat/container/tc5.5.x/catalina/src/conf: server.xml tomcat-users.xml

2006-09-10 Thread markt
Author: markt
Date: Sun Sep 10 18:29:22 2006
New Revision: 442061

URL: http://svn.apache.org/viewvc?view=rev&rev=442061
Log:
Revert accidental commit. Sorry for the noise.

Modified:
tomcat/container/tc5.5.x/catalina/src/conf/server.xml
tomcat/container/tc5.5.x/catalina/src/conf/tomcat-users.xml

Modified: tomcat/container/tc5.5.x/catalina/src/conf/server.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/conf/server.xml?view=diff&rev=442061&r1=442060&r2=442061
==
--- tomcat/container/tc5.5.x/catalina/src/conf/server.xml (original)
+++ tomcat/container/tc5.5.x/catalina/src/conf/server.xml Sun Sep 10 18:29:22 
2006
@@ -90,11 +90,13 @@
-->
 
 
+
 
 
 
-  
 
   
+  
 
   
@@ -181,17 +183,6 @@
   connectionURL="jdbc:odbc:CATALINA"
   userTable="users" userNameCol="user_name" userCredCol="user_pass"
   userRoleTable="user_roles" roleNameCol="role_name" />
-  -->
-
-  
 
   
 
-  
-  
-  
-  
-  
-  
-  
+  
+  
+  
 



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



DO NOT REPLY [Bug 33407] - \$ is quoted even with el-ignored=true

2006-09-10 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=33407


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2006-09-11 01:26 ---
This has been fixed in svn and will be included in 5.5.20 onwards.

-- 
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 34076] - overriding content.xml docBase with manager webapp deploy function fails with java.util.zip.ZipException if context.xml specifies war and manager specifies directory

2006-09-10 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=34076


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2006-09-11 01:41 ---
This is handled cleanly (with a single warning on Tomcat restart) by the latest
5.5.x code.

Given that there has been little development on the 5.0.x branch for some time
and little chance of future development I am closing this as WONTFIX for 5.0.x

-- 
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: r442066 - /tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java

2006-09-10 Thread markt
Author: markt
Date: Sun Sep 10 18:47:27 2006
New Revision: 442066

URL: http://svn.apache.org/viewvc?view=rev&rev=442066
Log:
Tabs to 8 spaces. No other change.

Modified:
tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java

Modified: 
tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java
URL: 
http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java?view=diff&rev=442066&r1=442065&r2=442066
==
--- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java 
(original)
+++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java 
Sun Sep 10 18:47:27 2006
@@ -106,7 +106,7 @@
 // Setup page info area
 pageInfo = new PageInfo(new BeanRepository(ctxt.getClassLoader(),
errDispatcher),
-ctxt.getJspFile());
+   ctxt.getJspFile());
 
 JspConfig jspConfig = options.getJspConfig();
 JspConfig.JspProperty jspProperty =
@@ -125,7 +125,7 @@
 pageInfo.setIncludePrelude(jspProperty.getIncludePrelude());
 }
 if (jspProperty.getIncludeCoda() != null) {
-   pageInfo.setIncludeCoda(jspProperty.getIncludeCoda());
+pageInfo.setIncludeCoda(jspProperty.getIncludeCoda());
 }
 
 String javaFileName = ctxt.getServletJavaFileName();
@@ -150,11 +150,11 @@
 // Reset the temporary variable counter for the generator.
 JspUtil.resetTemporaryVariableName();
 
-   // Parse the file
-   ParserController parserCtl = new ParserController(ctxt, this);
-   pageNodes = parserCtl.parse(ctxt.getJspFile());
+// Parse the file
+ParserController parserCtl = new ParserController(ctxt, this);
+pageNodes = parserCtl.parse(ctxt.getJspFile());
 
-   if (ctxt.isPrototypeMode()) {
+if (ctxt.isPrototypeMode()) {
 // generate prototype .java file for the tag file
 Generator.generate(writer, this, pageNodes);
 writer.close();
@@ -439,7 +439,7 @@
  * Gets the error dispatcher.
  */
 public ErrorDispatcher getErrorDispatcher() {
-   return errDispatcher;
+return errDispatcher;
 }
 
 
@@ -447,12 +447,12 @@
  * Gets the info about the page under compilation
  */
 public PageInfo getPageInfo() {
-   return pageInfo;
+return pageInfo;
 }
 
 
 public JspCompilationContext getCompilationContext() {
-   return ctxt;
+return ctxt;
 }
 
 



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



DO NOT REPLY [Bug 34319] - StoreBase.processExpires() is very inefficient

2006-09-10 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=34319


[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|normal  |enhancement
Version|5.5.16  |5.5.18




--- Additional Comments From [EMAIL PROTECTED]  2006-09-11 02:52 ---
Changing the severity to enhancement and updating the version.

I have only skimmed the patches but the first one looks plausible. The approach
of the second bypasses the listener notification and therefore would not work.

-- 
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 34396] - security exception using datasource in .init()

2006-09-10 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=34396


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2006-09-11 03:03 ---
Based on the last two comments and the fact that, in my view, the default
catalina.policy file alreday contains sufficient guidance regarding additional
permissions individual web applications may require I am closing this as 
WONTFIX. 

-- 
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: r442109 [2/2] - in /tomcat/sandbox/tomcat-lite: ./ bin/ java/org/apache/tomcat/lite/ java/org/apache/tomcat/lite/http/ java/org/apache/tomcat/servlets/file/ java/org/apache/tomcat/servlets

2006-09-10 Thread costin
Modified: 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/loader/ModuleClassLoader.java
URL: 
http://svn.apache.org/viewvc/tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/loader/ModuleClassLoader.java?view=diff&rev=442109&r1=442108&r2=442109
==
--- 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/loader/ModuleClassLoader.java
 (original)
+++ 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/loader/ModuleClassLoader.java
 Sun Sep 10 23:09:56 2006
@@ -24,8 +24,6 @@
 import java.net.URLClassLoader;
 import java.util.Enumeration;
 
-import org.apache.catalina.LifecycleException;
-
 /*
  * Initially, I started with WebappClassLoader attempting to clean up and
  * refactor it. Because of complexity and very weird ( and likely buggy ) 

Modified: 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Endpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Endpoint.java?view=diff&rev=442109&r1=442108&r2=442109
==
--- 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Endpoint.java 
(original)
+++ 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Endpoint.java 
Sun Sep 10 23:09:56 2006
@@ -17,9 +17,7 @@
 package org.apache.tomcat.util.net.http11;
 
 import java.io.IOException;
-import java.net.BindException;
 import java.net.InetAddress;
-import java.net.ServerSocket;
 import java.net.Socket;
 import java.net.SocketException;
 import java.util.ArrayList;
@@ -48,7 +46,7 @@
 
 // Socket properties
 protected static final int BACKLOG = 100;
-protected static final int TIMEOUT = 1000;
+protected static final int TIMEOUT = 5000;
 protected int backlog = BACKLOG;
 protected int serverTimeout = TIMEOUT;
 protected InetAddress inet;

Modified: 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Http11Processor.java
URL: 
http://svn.apache.org/viewvc/tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Http11Processor.java?view=diff&rev=442109&r1=442108&r2=442109
==
--- 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Http11Processor.java
 (original)
+++ 
tomcat/sandbox/tomcat-lite/java/org/apache/tomcat/util/net/http11/Http11Processor.java
 Sun Sep 10 23:09:56 2006
@@ -50,7 +50,6 @@
 import org.apache.tomcat.util.buf.MessageBytes;
 import org.apache.tomcat.util.http.FastHttpDateFormat;
 import org.apache.tomcat.util.http.MimeHeaders;
-import org.apache.tomcat.util.net.SSLSupport;
 import org.apache.tomcat.util.net.simple.SimpleEndpoint;
 import org.apache.tomcat.util.res.StringManager;
 
@@ -190,12 +189,6 @@
 
 
 /**
- * SSL information.
- */
-protected SSLSupport sslSupport;
-
-
-/**
  * Socket associated with the current connection.
  */
 protected Socket socket;
@@ -641,14 +634,6 @@
 
 
 /**
- * Set the SSL information for this HTTP connection.
- */
-public void setSSLSupport(SSLSupport sslSupport) {
-this.sslSupport = sslSupport;
-}
-
-
-/**
  * Set the flag to control upload time-outs.
  */
 public void setDisableUploadTimeout(boolean isDisabled) {
@@ -890,9 +875,6 @@
 // Recycle
 inputBuffer.recycle();
 outputBuffer.recycle();
-
-// Recycle ssl info
-sslSupport = null;
 }
 
 
@@ -985,29 +967,8 @@
 
 } else if (actionCode == ActionCode.ACTION_REQ_SSL_ATTRIBUTE ) {
 
-try {
-if (sslSupport != null) {
-Object sslO = sslSupport.getCipherSuite();
-if (sslO != null)
-request.setAttribute
-(SSLSupport.CIPHER_SUITE_KEY, sslO);
-sslO = sslSupport.getPeerCertificateChain(false);
-if (sslO != null)
-request.setAttribute
-(SSLSupport.CERTIFICATE_KEY, sslO);
-sslO = sslSupport.getKeySize();
-if (sslO != null)
-request.setAttribute
-(SSLSupport.KEY_SIZE_KEY, sslO);
-sslO = sslSupport.getSessionId();
-if (sslO != null)
-request.setAttribute
-(SSLSupport.SESSION_ID_KEY, sslO);
-}
-} catch (Exception e) {
-log.warn(sm.getString("http11processor.socket.ssl"), e);
-}
-
+// nothing - nio implementation later
+
 } else if (actionCode == ActionCode.ACTION_REQ_HOST_ADDR_ATTRIBUTE) {
 
 if ((remoteAddr == null) && (socket != null)) {
@@ -1067,26 +1028,7 @@
 request.setLocalPort(localPort);
 

Bug report for Tomcat 3 [2006/09/10]

2006-09-10 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|
| 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|
|17915|New|Maj|2003-03-12|Jasper ignores manifest classpath |
|19114|New|Nor|2003-04-17|RequestDispatcherImpl does not set root cause exce|
|19143|New|Nor|2003-04-18|if TOMCAT_INSTALL differs from TOMCAT_HOME -sequri|
|20238|New|Maj|2003

Bug report for Tomcat 4 [2006/09/10]

2006-09-10 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|
|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|
|13941|New|Enh|2002-10-24|reload is VERY slow   |
|13965|New|Enh|2002-10-25|Catalina.sh correction request for Tru64 Unix |
|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  |
|15688|New|Enh|2002-12-27|full-qualified names instead of imports   |
|15941|New|Enh|2003-01-10|Expose rootCause exceptions at deeper levels  |
|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 

Bug report for Watchdog [2006/09/10]

2006-09-10 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]



Bug report for Tomcat 5 [2006/09/10]

2006-09-10 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  |
| |   |   |  |  |
|22679|Ver|Enh|2003-08-24|how to access ssl session ID out of tomcat to prev|
|28039|New|Enh|2004-03-30|Cluster Support for SingleSignOn  |
|28634|Ass|Enh|2004-04-27|Extend StandardManager/StandardSession for DeltaMa|
|29160|Ver|Enh|2004-05-23|precompile problem: _jspx_meth_* (javax.servlet.js|
|29494|Inf|Enh|2004-06-10|No way to set PATH when running as a service on Wi|
|30241|Ver|Enh|2004-07-21|Enhance build script to use branch argument when c|
|33262|Inf|Enh|2005-01-27|Service Manager autostart should check for adminis|
|33453|Opn|Enh|2005-02-08|Jasper should recompile JSP files whose datestamps|
|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|
|34319|New|Enh|2005-04-06|StoreBase.processExpires() is very inefficient|
|34399|Opn|Nor|2005-04-11|Undeploying fails when context defined in server.x|
|34509|New|Nor|2005-04-19|tag names that are xml:Name but not java identifie|
|34560|Inf|Maj|2005-04-22|AuthenticatorBase tests and applies disableProxyCa|
|34643|New|Enh|2005-04-27|document how to use certificate-based "clientAuth"|
|34769|Inf|Nor|2005-05-05|ArrayIndexOutOfBoundsException occurs when reading|
|34801|New|Enh|2005-05-08|PATCH: CGIServlet does not terminate child after a|
|34805|Ass|Enh|2005-05-08|warn about invalid security constraint url pattern|
|34856|Inf|Nor|2005-05-11|MacOSX 10.4 and Java 5 jnilibs causes ZipException|
|34868|New|Enh|2005-05-11|allow to register a trust store for a session that|
|34952|New|Nor|2005-05-18|Installer modifies windows service when it shouldn|
|34956|Inf|Nor|2005-05-18|Tomcat should enforce the requirements from servle|
|35054|Inf|Enh|2005-05-25|warn if appBase is not existing as a File or direc|
|35079|Inf|Enh|2005-05-26|Should be able to specify DNS lookup timeout  |
|35229|Opn|Enh|2005-06-05|alert user about expired certificates in client ce|
|35252|Opn|Nor|2005-06-07|jasper2 produced malformed expanded XML view  |
|35552|Inf|Cri|2005-06-29|JMS destination under|
|35635|New|Nor|2005-07-06|Tomcat service does not log startup error messages|
|35746|Inf|Nor|2005-07-14|session manager should be immune to system clock t|
|35765|New|Enh|2005-07-16|make the SSL cipher config in server.xml fail safe|
|35827|Inf|Blk|2005-07-22|Problem with POST forms with jk connector/IIS/Wind|
|35835|Inf|Nor|2005-07-23|Submitting changes through admin app corrupts the |
|35869|New|Enh|2005-07-26|Can't run as a service on Windows Server 2003 64-B|
|35914|Unc|Nor|2005-07-28|Problem to create and delete Access Log Valve many|
|35943|New|Maj|2005-07-30|request.getRemoteUser() is not getting populated o|
|35968|New|Nor|2005-08-02|Please make  Environment Entry Properties Value in|
|36121|Inf|Maj|2005-08-10|Including JSP's changes working directory |
|36133|Inf|Enh|2005-08-10|Support JSS SSL implementation|
|36153|Inf|Nor|2005-08-12|html:form action is blank |
|36169|New|Enh|2005-08-12|[PATCH] Enable chunked encoding for IIS JK connect|
|36179|Inf|Nor|2005-08-14|Error getting setter for Tag Attribute|
|36204|Inf|Nor|2005-08-16|Webapp unable to pick the Class by the shared clas|
|36247|Ass|Nor|2005-08-18|Jasper  throws Illega|
|36362|New|Enh|2005-08-25|missing check for Java reserved keywords in tag fi|
|36365|New|Blk|2005-08-26|IIS5.1-isapi_redirector.dll (1.2.14) plugin issue |
|36470|Inf|Nor|2005-09-02|Connections not release on encountering exception.|
|36540|Inf|Nor|2005-09-07|pooled cluster replication does not seem ensure sy|
|36549|Inf|Nor|2005-09-07|Tomcat Stopped with HotSpot libjvm error  |
|36569|Inf|Nor|2005-09-09|Redirects produce illegal URL's   |
|36663|Inf|Nor|2005-09-15|setclasspath.bat requires that JAVA_HOME points to|
|36837|Inf|Enh|2005-09-28|Looking for ProxyHandler implementation of Http re|
|36922|Inf|Min|2005-10-04|setup.sh file mis-a