DO NOT REPLY [Bug 45451] Tag file attribute evaluation

2008-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45451





--- Comment #1 from ilango <[EMAIL PROTECTED]>  2008-08-10 09:35:44 PST ---
(In reply to comment #0)
> Hello,
> I have an web app with 2 tag files.
> Here is my first tag 'testtag':
> 
> <%@ tag %>
> <%@ attribute name="onLoad" %>
> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>
> 
> 
>
> 
> 
> My second tag ('testtag2') use the first one:
> 
> <%@ tag %>
> <%@ attribute name="name" %>
> <%@ taglib prefix="widget" tagdir="/WEB-INF/tags/widgets" %>
> 
> 
> 
> 
> In a JSP, I use the second tag:
> 
> ...
> <%@ taglib prefix="widget" tagdir="/WEB-INF/tags/widgets" %>
> ...
> 
> ...
> 
> 
> With tomcat 5.5.25, I have the following result:
>  value="{Script:'jsFunction(\'toto\')'}" />
> 
> And with tomcat 6.0.16:
>  value="{Script:'jsFunction('toto')'}" />
> 
> It seems that the attribute is evaluate once more on tomcat 6 than on tomcat 
> 5.
> 

I would like to test this behaviour. Do you have a simple test case?


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

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



svn commit: r684559 - /tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java

2008-08-10 Thread markt
Author: markt
Date: Sun Aug 10 10:24:51 2008
New Revision: 684559

URL: http://svn.apache.org/viewvc?rev=684559&view=rev
Log:
Fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=45528. Test the SSL 
socket before returning it to make sure the specified certificate will work 
with the specified ciphers.

Modified:
tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java

Modified: 
tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java?rev=684559&r1=684558&r2=684559&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java 
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java 
Sun Aug 10 10:24:51 2008
@@ -26,6 +26,7 @@
 import java.net.ServerSocket;
 import java.net.Socket;
 import java.net.SocketException;
+import java.net.SocketTimeoutException;
 import java.security.KeyStore;
 import java.security.SecureRandom;
 import java.security.cert.CRL;
@@ -692,7 +693,7 @@
  * Configures the given SSL server socket with the requested cipher suites,
  * protocol versions, and need for client authentication
  */
-private void initServerSocket(ServerSocket ssocket) {
+private void initServerSocket(ServerSocket ssocket) throws IOException {
 
 SSLServerSocket socket = (SSLServerSocket) ssocket;
 
@@ -704,9 +705,48 @@
 setEnabledProtocols(socket, getEnabledProtocols(socket, 
  requestedProtocols));
 
+// Check the SSL config is OK
+checkSocket(ssocket);
+
 // we don't know if client auth is needed -
 // after parsing the request we may re-handshake
 configureClientAuth(socket);
 }
 
+/**
+ * Checks that the cetificate is compatible with the enabled cipher suites.
+ * If we don't check now, the JIoEndpoint can enter a nasty logging loop.
+ * See bug 45528.
+ */
+private void checkSocket(ServerSocket socket) throws IOException {
+int timeout = socket.getSoTimeout();
+
+socket.setSoTimeout(1);
+Socket s = null;
+try {
+s = socket.accept();
+// No expecting to get here but if we do, at least we know things
+// are working.
+} catch (SSLException ssle) {
+// Cert doesn't match ciphers
+IOException ioe =
+new IOException("Certificate / cipher mismatch");
+ioe.initCause(ssle);
+throw ioe;
+} catch (SocketTimeoutException ste) {
+// Expected - do nothing
+} finally {
+// In case we actually got a connection - close it.
+if (s != null) {
+try {
+s.close();
+} catch (IOException ioe) {
+// Ignore
+}
+}
+// Reset the timeout
+socket.setSoTimeout(timeout);
+}
+
+}
 }



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



DO NOT REPLY [Bug 45528] Tomcat 6 fails to detect a matching certificate and stuck in an infinite loop

2008-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45528





--- Comment #3 from Mark Thomas <[EMAIL PROTECTED]>  2008-08-10 10:27:40 PST ---
This has been fixed in trunk and proposed for 5.5.x and 6.0.x.


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

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



svn commit: r684560 - in /tomcat: current/tc5.5.x/STATUS.txt tc6.0.x/trunk/STATUS.txt

2008-08-10 Thread markt
Author: markt
Date: Sun Aug 10 10:27:28 2008
New Revision: 684560

URL: http://svn.apache.org/viewvc?rev=684560&view=rev
Log:
Propose fix for 45528

Modified:
tomcat/current/tc5.5.x/STATUS.txt
tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/current/tc5.5.x/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=684560&r1=684559&r2=684560&view=diff
==
--- tomcat/current/tc5.5.x/STATUS.txt (original)
+++ tomcat/current/tc5.5.x/STATUS.txt Sun Aug 10 10:27:28 2008
@@ -136,3 +136,9 @@
   https://issues.apache.org/bugzilla/show_bug.cgi?id=41407
   +1: markt
   -1: 
+
+* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45528
+  Test the SSL socket for cert/cipher compatibility before returning it
+  http://svn.apache.org/viewvc?rev=684559&view=rev
+  +1: markt
+  -1: 

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=684560&r1=684559&r2=684560&view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Sun Aug 10 10:27:28 2008
@@ -114,3 +114,9 @@
   https://issues.apache.org/bugzilla/show_bug.cgi?id=41407
   +1: markt, remm
   -1: 
+
+* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45528
+  Test the SSL socket for cert/cipher compatibility before returning it
+  http://svn.apache.org/viewvc?rev=684559&view=rev
+  +1: markt
+  -1: 



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



tomcat6 use of java generics

2008-08-10 Thread Jens Kapitza

hi,
i'm new to this dev-mailing list and i start working at tomcat a few 
days ago.


i've seen that tomcat is using some generics but not at all places there 
are still some lists and maps wich don't use them.


i've start to change it and build it with openjdk on ubuntu.

should i send the patch to this list if it is ready? (svn diff)


---
Jens Kapitza

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



Re: tomcat6 use of java generics

2008-08-10 Thread Mark Thomas

Jens Kapitza wrote:

hi,
i'm new to this dev-mailing list and i start working at tomcat a few 
days ago.


i've seen that tomcat is using some generics but not at all places there 
are still some lists and maps wich don't use them.


i've start to change it and build it with openjdk on ubuntu.

should i send the patch to this list if it is ready? (svn diff)


I'd create a bugzilla entry and attach them to that. I'd also provide a 
separate patch for each package so they are easier to review / apply. Be 
aware that the 2.5 Servlet spec doesn't use generics so there are a fair 
few things you can't change.


From what I recall, most of the generics work has been done on trunk 
rather than 6.0.x so you should look at creating patches for that rather 
than 6.0.x.


Finally, if you want to contribute then as well as the generics work 
there is also helping out on the users list, improving the docs and 
fixing bugs. Any help in these areas would also be appreciated.


Mark



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



DO NOT REPLY [Bug 45427] Unmatched quotes inside EL break JSP parser

2008-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45427


Sean Flanigan <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
 Status|NEEDINFO|ASSIGNED




--- Comment #2 from Sean Flanigan <[EMAIL PROTECTED]>  2008-08-10 16:23:59 PST 
---
Yes, I think the bug should manifest itself on any platform, as long as you're
running Tomcat 6.


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

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



svn commit: r684613 - /tomcat/current/tc4.1.x/STATUS.txt

2008-08-10 Thread funkman
Author: funkman
Date: Sun Aug 10 16:50:06 2008
New Revision: 684613

URL: http://svn.apache.org/viewvc?rev=684613&view=rev
Log:
Followup on request to review


Modified:
tomcat/current/tc4.1.x/STATUS.txt

Modified: tomcat/current/tc4.1.x/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc4.1.x/STATUS.txt?rev=684613&r1=684612&r2=684613&view=diff
==
--- tomcat/current/tc4.1.x/STATUS.txt (original)
+++ tomcat/current/tc4.1.x/STATUS.txt Sun Aug 10 16:50:06 2008
@@ -28,17 +28,17 @@
 * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=44562
   http://svn.apache.org/viewvc?rev=635294&view=rev (prior code clean up)
   http://svn.apache.org/viewvc?rev=635297&view=rev (the actual fix)
-  +1: markt, yoavs
+  +1: markt, yoavs, funkman
   -1:
 
 * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=41217
   This is CVE-2008-0128.
   http://people.apache.org/~markt/patches/2008-03-10-bug41217-tc4.patch
-  +1: markt, yoavs
+  +1: markt, yoavs, funkman
   -1:
 
 * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45301
   Remove a JDK 1.4 dep for the few users that still run TC4 on 1.3 JDKs
   http://people.apache.org/~markt/patches/2008-07-07-bug45301-tc4.patch
-  +1: markt, yoavs
+  +1: markt, yoavs, funkman
   -1: 



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



is JDK 1.1 still needed? README say Java5

2008-08-10 Thread Jens Kapitza

browsing the tomcat trunk, i found org.apache.tomcat.util.collections.*

is org.apache.tomcat.util.collections still used? some classes have a 
comment  - since this package must also run on JDK 1.1 -


there are some Classes wich aren't used any longer? or should not used 
(Enumeration replaced by Iterator)


some of those (Queue) could be replaced by java.util.concurrent package 
i think


not used/not visible are (EmptyEnumeration,MultiMapValuesEnumeration,Queue)


---
Jens Kapitza





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



Re: is JDK 1.1 still needed? README say Java5

2008-08-10 Thread Jim Manico
I would say that the era of Java up through 1.3 is dead. Java 1.4 and 
above is the only thing I see in production anymore.


- Jim


browsing the tomcat trunk, i found org.apache.tomcat.util.collections.*

is org.apache.tomcat.util.collections still used? some classes have a 
comment  - since this package must also run on JDK 1.1 -


there are some Classes wich aren't used any longer? or should not used 
(Enumeration replaced by Iterator)


some of those (Queue) could be replaced by java.util.concurrent 
package i think


not used/not visible are 
(EmptyEnumeration,MultiMapValuesEnumeration,Queue)



---
Jens Kapitza





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




--
Jim Manico, Senior Application Security Engineer
[EMAIL PROTECTED] | [EMAIL PROTECTED]
(301) 604-4882 (work)
(808) 652-3805 (cell)

Aspect Security™
Securing your applications at the source
http://www.aspectsecurity.com

---
Management, Developers, Security Professionals ...
... can only result in one thing. BETTER SECURITY.
http://www.owasp.org/index.php/OWASP_NYC_AppSec_2008_Conference  
Sept 22nd-25th 2008




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



DO NOT REPLY [Bug 45608] New: Race conditions on field countAllocated of class org.apache.catalina.core.StandardWrapper

2008-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45608

   Summary: Race conditions on field countAllocated of class
org.apache.catalina.core.StandardWrapper
   Product: Tomcat 6
   Version: 6.0.13
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


We found field countAllocated are accessed by allocate() and deallocate()
without any protections by locks.

Here is a trace log,

  Thread http-8081-1 id: 23 : READ
  [org.apache.catalina.core.StandardWrapper : allocate : 820]
  [org.apache.catalina.core.StandardWrapperValve : invoke : 129]
  [org.apache.catalina.core.StandardContextValve : invoke : 175]
  [org.apache.catalina.core.StandardHostValve : invoke : 128]
  [org.apache.catalina.valves.ErrorReportValve : invoke : 104]
  [org.apache.catalina.core.StandardEngineValve : invoke : 109]
  [org.apache.catalina.connector.CoyoteAdapter : service : 261]
  [org.apache.coyote.http11.Http11Processor : process : 844]
  [org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler :
process : 581]
  [org.apache.tomcat.util.net.JIoEndpoint$Worker : run : 447]
  [java.lang.Thread : run : 735]

  Thread http-8081-4 id: 26 : WRITE

  [org.apache.catalina.core.StandardWrapper : deallocate : 871]
  [org.apache.catalina.core.StandardWrapperValve : invoke : 298]
  [org.apache.catalina.core.StandardContextValve : invoke : 175]
  [org.apache.catalina.core.StandardHostValve : invoke : 128] 
  [org.apache.catalina.valves.ErrorReportValve : invoke : 104] 
  [org.apache.catalina.core.StandardEngineValve : invoke : 109]
  [org.apache.catalina.connector.CoyoteAdapter : service : 261]
  [org.apache.coyote.http11.Http11Processor : process : 844]
  [org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler :
process : 581]
  [org.apache.tomcat.util.net.JIoEndpoint$Worker : run : 447]
  [java.lang.Thread : run : 735]

Thread http-8081-4 and http-8081-1 will access countAllocated in parallel. 
Since increment and decrement is *NOT* atomic, we think it is a potential race
condition.


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

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



DO NOT REPLY [Bug 45609] New: contentType=image sometime cause strange character (??) with UTF-8 encoding and throw java.lang.IllegalStateException

2008-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45609

   Summary: contentType=image sometime cause strange character (??)
with UTF-8 encoding and throw
java.lang.IllegalStateException
   Product: Tomcat 6
   Version: 6.0.13
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: P2
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Created an attachment (id=22424)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22424)
screenshots and source code to generate the problem

please see screenshots for this problem.

the problem sometime occur if we have 1 jsp that contentType=image/png or
image/jpg and that JSP write image to the out stream.
when other jsp call that page many times.  the server throws
java.lang.IllegalStateException. and sometime the character encoding is become
"?"


please see attached phone.jsp,  it is the jsp that write image to the output
stream and get parameter id=[number].
you can call phone.jsp?id=123 without any problem or Exception.

But if you call it many times (please use testphone.jsp to test).
when you refresh the testphone.jsp page many times.  the UTF-8 encoding become
broken and you can see only "" character.

I tried on both Windows and Unix and it has the same problem.

Here are the error from localhost logs.
Aug 11, 2008 11:35:12 AM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet default threw exception
java.lang.IllegalStateException
at
org.apache.catalina.connector.ResponseFacade.sendError(ResponseFacade.java:407)
at
org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java:662)
at
org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java:325)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Unknown Source)


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

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



DO NOT REPLY [Bug 45609] contentType=image sometime cause strange character (??) with UTF-8 encoding and throw java.lang.IllegalStateException

2008-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45609


Jirat <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




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

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



Bug report for Tomcat 4 [2008/08/10]

2008-08-10 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | 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|
|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|
|12428|Opn|Enh|2002-09-09|request.getUserPrincipal(): Misinterpretation of s|
|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 Tomcat 3 [2008/08/10]

2008-08-10 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|  412|Ver|Nor|2001-01-08|JspC on Windows fails to handle includes in subdir|
| 2350|Ver|Nor|2001-06-27|ServletConfig.getInitParameter() requires url-patt|
| 6488|Ver|Maj|2002-02-15|Error: 304. Apparent bug in default ErrorHandler c|
| 9737|Ver|Nor|2002-06-10|ArrayIndexOutOfBoundsException when sending just p|
|44911|Ass|Nor|2008-04-30|Test again from Chirag|
+-+---+---+--+--+
| Total5 bugs   |
+---+

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



Bug report for Watchdog [2008/08/10]

2008-08-10 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | 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 [2008/08/10]

2008-08-10 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|27122|Opn|Enh|2004-02-20|IE plugins cannot access components through Tomcat|
|28039|Opn|Enh|2004-03-30|Cluster Support for SingleSignOn  |
|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|
|34526|Opn|Nor|2005-04-19|Truncated content in decompressed requests from mo|
|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|
|34868|Ass|Enh|2005-05-11|allow to register a trust store for a session that|
|35054|Inf|Enh|2005-05-25|warn if appBase is not existing as a File or direc|
|35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName|
|36133|Inf|Enh|2005-08-10|Support JSS SSL implementation|
|36169|New|Enh|2005-08-12|[PATCH] Enable chunked encoding for requests in II|
|36362|New|Enh|2005-08-25|missing check for Java reserved keywords in tag fi|
|36569|Inf|Enh|2005-09-09|Redirects produce illegal URL's   |
|36837|Inf|Enh|2005-09-28|Looking for ProxyHandler implementation of Http re|
|36922|Inf|Enh|2005-10-04|setup.sh file mis-advertised and missing  |
|36923|New|Nor|2005-10-05|Deactivated EL expressions are not parsed for jsp |
|37018|Ass|Enh|2005-10-11|Document how to use tomcat-SSL with a pkcs11 token|
|37084|Opn|Reg|2005-10-14|JspC from ant fails on JSPs that use custom taglib|
|37334|Inf|Enh|2005-11-02|Realm digest property not aligned with the adminis|
|37449|Opn|Enh|2005-11-10|Two UserDatabaseRealm break manager user  |
|37458|Opn|Nor|2005-11-10|Datarace on org.apache.catalina.loader.WebappClass|
|37485|Inf|Enh|2005-11-14|I'd like to run init SQL after JDBC Connection cre|
|37498|Inf|Nor|2005-11-14|[PATCH] NPE in org.apache.catalina.core.ContainerB|
|37515|Inf|Nor|2005-11-15|smap not generated by JspC when used from Ant for |
|37627|Opn|Nor|2005-11-24|Slow and incomplete dynamic content generation aft|
|37785|Inf|Nor|2005-12-05|Changing startup type via Tomcat Monitor does not |
|37794|Opn|Nor|2005-12-05|getParameter() fails on POST with transfer-encodin|
|37797|Inf|Maj|2005-12-05|Configure Tomcat utility truncates classpath to 96|
|37847|Ass|Enh|2005-12-09|Allow User To Optionally Specify Catalina Output F|
|37869|Opn|Nor|2005-12-12|Cannot obtain client certificate with SSL / client|
|37918|Inf|Nor|2005-12-15|EL cannot find valid getter from object when using|
|37984|New|Nor|2005-12-21|JNDIRealm.java not able to handle MD5 password|
|38046|Ass|Reg|2005-12-27|apache-tomcat-5.5.14-deployer doesn't work (Illega|
|38197|Opn|Maj|2006-01-09|taglib pool bug when tag is used with jsp:attribut|
|38216|Inf|Enh|2006-01-10|Extend Jmxproxy to allow call of MBean Operations |
|38217|Ver|Enh|2006-01-10|mention that private key password and keystore pas|
|38268|Inf|Enh|2006-01-13|User friendly: Need submit button on adding/deleti|
|38352|Inf|Nor|2006-01-22|Additional Entries for Default catalina.policy fil|
|38360|Inf|Enh|2006-01-24|Domain for session cookies|
|38367|Inf|Nor|2006-01-24|Executing any Catalina Ant task results in an exce|
|38372|Inf|Cri|2006-01-25|tcnative-1.dll response overflow corruption, parti|
|38427|Inf|Nor|2006-01-27|ServletContextListener Notified Multiple Times Whe|
|38483|New|Nor|2006-02-01|access log valve uses simpledateformat in tread-un|
|38484|New|Min|2006-02-01|webapps Admin: Invalid path /login was requested  |
|38516|Inf|Nor|2006-02-05|Configuration Manager loses "Log On" settings |
|38546|