[Tomcat Wiki] Update of "TomcatOnMacOS" by MichaelValentiner

2008-02-03 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.

The following page has been changed by MichaelValentiner:
http://wiki.apache.org/tomcat/TomcatOnMacOS

--
  == Running Tomcat on Macintosh OS X ==
  
- [See bottom half for a 2006 update to this 2004 posting]
+ [See bottom half for a 2006 and 2008 update to this 2004 posting]
  
  These notes are the result of several weeks playing with different things and 
asking a LOT of questions on several mailing lists.
  
@@ -245, +245 @@

  
  --Basil Bourque
  
+ === Updated for 2008 ===
+ Michael Valentiner says:
+ 
+ Today (2008-02-03) I verified running Tomcat 6.0.14 on Mac OS X 10.5.1.
+ 
+ Like Basil, I did not need to set up JAVA_HOME and I did need to fix Unix 
file permissions.
+ 
+ Unlike Basil, the System Preferences > Sharing > Firewall has moved to System 
Preferences > Security > Firewall.  I was able to enable logging, but haven't 
figured out how to block UDP.
+ 

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



svn commit: r618059 - in /tomcat/trunk: java/org/apache/tomcat/util/net/NioEndpoint.java webapps/docs/changelog.xml

2008-02-03 Thread fhanik
Author: fhanik
Date: Sun Feb  3 11:06:00 2008
New Revision: 618059

URL: http://svn.apache.org/viewvc?rev=618059&view=rev
Log:
Fix defect 43701

Modified:
tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=618059&r1=618058&r2=618059&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Sun Feb  3 
11:06:00 2008
@@ -813,6 +813,13 @@
 workers = new WorkerStack(maxThreads);
 }
 
+// Start poller thread
+poller = new Poller();
+Thread pollerThread = new Thread(poller, getName() + 
"-ClientPoller");
+pollerThread.setPriority(threadPriority);
+pollerThread.setDaemon(true);
+pollerThread.start();
+
 // Start acceptor threads
 for (int i = 0; i < acceptorThreadCount; i++) {
 Thread acceptorThread = new Thread(new Acceptor(), getName() + 
"-Acceptor-" + i);
@@ -820,13 +827,6 @@
 acceptorThread.setDaemon(daemon);
 acceptorThread.start();
 }
-
-// Start poller thread
-poller = new Poller();
-Thread pollerThread = new Thread(poller, getName() + 
"-ClientPoller");
-pollerThread.setPriority(threadPriority);
-pollerThread.setDaemon(true);
-pollerThread.start();
 }
 }
 

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=618059&r1=618058&r2=618059&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Sun Feb  3 11:06:00 2008
@@ -35,6 +35,8 @@
 
   
 
+  43701: Start acceptor thread before poller thread
+  
   Fix the MD5 file contents in distribution
   
 Add ANT script to be able to publish signed Tomcat JAR's to ASF Maven 
repo (fhanik)



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



svn commit: r618070 - /tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java

2008-02-03 Thread markt
Author: markt
Date: Sun Feb  3 11:45:46 2008
New Revision: 618070

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

Modified:
tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java

Modified: tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java?rev=618070&r1=618069&r2=618070&view=diff
==
--- tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java (original)
+++ tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java Sun Feb  3 11:45:46 
2008
@@ -76,24 +76,24 @@
  *
  */
 public TagInfo(String tagName,
-   String tagClassName,
-   String bodycontent,
-   String infoString,
-   TagLibraryInfo taglib,
-   TagExtraInfo tagExtraInfo,
-   TagAttributeInfo[] attributeInfo) {
-   this.tagName   = tagName;
-   this.tagClassName  = tagClassName;
-   this.bodyContent   = bodycontent;
-   this.infoString= infoString;
-   this.tagLibrary= taglib;
-   this.tagExtraInfo  = tagExtraInfo;
-   this.attributeInfo = attributeInfo;
+String tagClassName,
+String bodycontent,
+String infoString,
+TagLibraryInfo taglib,
+TagExtraInfo tagExtraInfo,
+TagAttributeInfo[] attributeInfo) {
+this.tagName   = tagName;
+this.tagClassName  = tagClassName;
+this.bodyContent   = bodycontent;
+this.infoString= infoString;
+this.tagLibrary= taglib;
+this.tagExtraInfo  = tagExtraInfo;
+this.attributeInfo = attributeInfo;
 
-   if (tagExtraInfo != null)
+if (tagExtraInfo != null)
 tagExtraInfo.setTagInfo(this);
 }
-
+ 
 /**
  * Constructor for TagInfo from data in the JSP 1.2 format for TLD.
  * This class is to be instantiated only from the TagLibrary code
@@ -119,32 +119,32 @@
  * @param tvi An array of a TagVariableInfo (or null)
  */
 public TagInfo(String tagName,
-   String tagClassName,
-   String bodycontent,
-   String infoString,
-   TagLibraryInfo taglib,
-   TagExtraInfo tagExtraInfo,
-   TagAttributeInfo[] attributeInfo,
-   String displayName,
-   String smallIcon,
-   String largeIcon,
-   TagVariableInfo[] tvi) {
-   this.tagName   = tagName;
-   this.tagClassName  = tagClassName;
-   this.bodyContent   = bodycontent;
-   this.infoString= infoString;
-   this.tagLibrary= taglib;
-   this.tagExtraInfo  = tagExtraInfo;
-   this.attributeInfo = attributeInfo;
-   this.displayName = displayName;
-   this.smallIcon = smallIcon;
-   this.largeIcon = largeIcon;
-   this.tagVariableInfo = tvi;
+String tagClassName,
+String bodycontent,
+String infoString,
+TagLibraryInfo taglib,
+TagExtraInfo tagExtraInfo,
+TagAttributeInfo[] attributeInfo,
+String displayName,
+String smallIcon,
+String largeIcon,
+TagVariableInfo[] tvi) {
+this.tagName   = tagName;
+this.tagClassName  = tagClassName;
+this.bodyContent   = bodycontent;
+this.infoString= infoString;
+this.tagLibrary= taglib;
+this.tagExtraInfo  = tagExtraInfo;
+this.attributeInfo = attributeInfo;
+this.displayName = displayName;
+this.smallIcon = smallIcon;
+this.largeIcon = largeIcon;
+this.tagVariableInfo = tvi;
 
-   if (tagExtraInfo != null)
+if (tagExtraInfo != null)
 tagExtraInfo.setTagInfo(this);
 }
-
+ 
 /**
  * Constructor for TagInfo from data in the JSP 2.0 format for TLD.
  * This class is to be instantiated only from the TagLibrary code
@@ -208,7 +208,7 @@
  */
 
 public String getTagName() {
-   return tagName;
+return tagName;
 }
 
 /**
@@ -237,7 +237,7 @@
VariableInfo[] result = null;
TagExtraInfo tei = getTagExtraInfo();
if (tei != null) {
-  result = tei.getVariableInfo( data );
+   result = tei.getVariableInfo( data );
}
return result;
}
@@ -252,7 +252,7 @@
 public boolean isValid(TagData data) {
 TagExtraInfo tei = getTagExtraInfo();
 if (tei == null) {
-   return true;
+return true;
 }
 return tei.isValid(data);
 }
@@ -267,11 +267,11 @@
  * @since 2.0
  */
 public ValidationMessage[] validate( TagData data ) {
-   TagExtraInfo tei = getTagExtraInfo();
-   if( tei == null ) {
-   return null;
-   }
- 

Re: svn commit: r618059 - in /tomcat/trunk: java/org/apache/tomcat/util/net/NioEndpoint.java webapps/docs/changelog.xml

2008-02-03 Thread Konstantin Kolinko
Just a note.

The change log message does not seem to be correct. It says opposite
of what is implemented by the patch. In the patch the poller thread is
started first.

Also, the changelog.xml of trunk is substantially outdated. 6.0.16 is
nearly coming out and adding new items to 6.0.15 looks strange.



2008/2/3, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> Author: fhanik
> Date: Sun Feb  3 11:06:00 2008
> New Revision: 618059
>
> URL: http://svn.apache.org/viewvc?rev=618059&view=rev
> Log:
> Fix defect 43701
>
> Modified:
> tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
> tomcat/trunk/webapps/docs/changelog.xml
>
[skipped]
> --- tomcat/trunk/webapps/docs/changelog.xml (original)
> +++ tomcat/trunk/webapps/docs/changelog.xml Sun Feb  3 11:06:00 2008
> @@ -35,6 +35,8 @@
>  
>
>  
> +  43701: Start acceptor thread before poller thread
> +  
>Fix the MD5 file contents in distribution
>
>  Add ANT script to be able to publish signed Tomcat JAR's to ASF 
> Maven repo (fhanik)
>

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



svn commit: r618071 - /tomcat/trunk/webapps/docs/changelog.xml

2008-02-03 Thread fhanik
Author: fhanik
Date: Sun Feb  3 11:51:02 2008
New Revision: 618071

URL: http://svn.apache.org/viewvc?rev=618071&view=rev
Log:
I meant the reverse

Modified:
tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=618071&r1=618070&r2=618071&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Sun Feb  3 11:51:02 2008
@@ -35,7 +35,7 @@
 
   
 
-  43701: Start acceptor thread before poller thread
+  43701: Start poller thread before acceptor thread
   
   Fix the MD5 file contents in distribution
   



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



May Chun Chew/FEA/PEC is out of the office.

2008-02-03 Thread May Chun Chew

I will be out of the office starting  02/04/2008 and will not return until
02/05/2008.

For urgent matters, pls contact [EMAIL PROTECTED] Tel:
(65)63629408
I am also Contactable at (65)97876648.


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



svn commit: r618153 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-02-03 Thread funkman
Author: funkman
Date: Sun Feb  3 18:19:43 2008
New Revision: 618153

URL: http://svn.apache.org/viewvc?rev=618153&view=rev
Log:
proposal for Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=44337


Modified:
tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=618153&r1=618152&r2=618153&view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Sun Feb  3 18:19:43 2008
@@ -69,3 +69,11 @@
   +1: markt
   +0: remm: do we really want to fix these sort of "bugs" ?
   -1:
+
+* Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=44337
+  Dir listing crashes if no readme-file present
+  http://svn.apache.org/viewvc?rev=618150&view=rev
+  +1: funkman
+  -1:
+
+



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



svn commit: r618150 - /tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java

2008-02-03 Thread funkman
Author: funkman
Date: Sun Feb  3 18:10:39 2008
New Revision: 618150

URL: http://svn.apache.org/viewvc?rev=618150&view=rev
Log:
http://issues.apache.org/bugzilla/show_bug.cgi?id=44337
Dir listing crashes if no readme-file present

Catch NamingException on resource not found instead of checking for null


Modified:
tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java

Modified: tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java?rev=618150&r1=618149&r2=618150&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java Sun Feb  
3 18:10:39 2008
@@ -1415,7 +1415,10 @@
 return buffer.toString();
 }
 } catch (NamingException e) {
-throw new ServletException("Error opening readme resource", e);
+if (debug > 10)
+log("readme '" + readmeFile + "' not found", e);
+
+return null;
 }
 }
 
@@ -1438,7 +1441,10 @@
 return is;
 }
 } catch (NamingException e) {
-throw new ServletException("Error opening XSLT resource", e);
+if (debug > 10)
+log("localXsltFile '" + localXsltFile + "' not found", e);
+
+return null;
 }
 }
 



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



Re: svn commit: r618150 - /tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java

2008-02-03 Thread Filip Hanik - Dev Lists

are we still using the debug attribute, or should it be
if log.isDebugEnabled log.debug...

Filip

[EMAIL PROTECTED] wrote:

Author: funkman
Date: Sun Feb  3 18:10:39 2008
New Revision: 618150

URL: http://svn.apache.org/viewvc?rev=618150&view=rev
Log:
http://issues.apache.org/bugzilla/show_bug.cgi?id=44337
Dir listing crashes if no readme-file present

Catch NamingException on resource not found instead of checking for null


Modified:
tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java

Modified: tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java?rev=618150&r1=618149&r2=618150&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java Sun Feb  
3 18:10:39 2008
@@ -1415,7 +1415,10 @@
 return buffer.toString();
 }
 } catch (NamingException e) {
-throw new ServletException("Error opening readme resource", e);
+if (debug > 10)
+log("readme '" + readmeFile + "' not found", e);
+
+return null;
 }
 }
 
@@ -1438,7 +1441,10 @@

 return is;
 }
 } catch (NamingException e) {
-throw new ServletException("Error opening XSLT resource", e);
+if (debug > 10)
+log("localXsltFile '" + localXsltFile + "' not found", e);
+
+return null;
 }
 }
 




-
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]



DO NOT REPLY [Bug 43968] - [patch] support ipv6 with mod_jk

2008-02-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

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


[EMAIL PROTECTED] changed:

   What|Removed |Added

  Attachment #21189|0   |1
is obsolete||




--- Additional Comments From [EMAIL PROTECTED]  2008-02-03 22:38 ---
Created an attachment (id=21463)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=21463&action=view)
patch for mod_jk-1.2.27-dev

new patch for mod_jk-1.2.27-dev

-- 
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]



Bug report for Tomcat 5 [2008/02/03]

2008-02-03 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  |
| |   |   |  |  |
|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|
|29936|Opn|Blk|2004-07-06|XML parser loading problems by container  |
|30241|Ver|Enh|2004-07-21|Enhance build script to use branch argument when c|
|31257|Opn|Cri|2004-09-16|java.endorsed.dirs is not used when JSP compilatio|
|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|
|35869|Inf|Enh|2005-07-26|Can't run as a service on Windows Server 2003 64-B|
|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|   |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  |
|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|
|37822|Opn|Nor|2005-12-07|WebappClassLoader interfering with Catalina core c|
|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|   |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 |
|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|Inf|Nor|2006-02-01|access log valve uses simpledateformat in tread-un|
|38484|

Bug report for Watchdog [2008/02/03]

2008-02-03 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 3 [2008/02/03]

2008-02-03 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|
| 5331|Ass|Nor|2001-12-09|getPathInfo vs URL normalization  |
| 6027|Inf|Maj|2002-01-25|Tomcat  Automatically shuts down as service   |
| 6488|Ver|Maj|2002-02-15|Error: 304. Apparent bug in default ErrorHandler c|
| 7785|Inf|Blk|2002-04-06|tomcat bug in context reloading   |
| 7863|Inf|Maj|2002-04-09|I have a problem when running Tomcat with IIS |
| 8187|Inf|Cri|2002-04-17|Errors when Tomcat used with MS Access database   |
| 9737|Ver|Nor|2002-06-10|ArrayIndexOutOfBoundsException when sending just p|
|10047|Ass|Cri|2002-06-20|IllegalStateException |
|10406|Ass|Cri|2002-07-02|IllegalStateException |
|11087|Inf|Blk|2002-07-23|IllegalStateException |
|12156|Inf|Cri|2002-08-29|Apache and Tomcat 3.3.1 Interworking problem  |
|16363|Ass|Cri|2003-01-23|Stack Overflow accessing compiled JSP - Tomcat 3.2|
|39250|Inf|Cri|2006-04-07|Tomcat 3.2.1 + JDK 1.4|
+-+---+---+--+--+
| Total   14 bugs   |
+---+

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



Bug report for Tomcat 4 [2008/02/03]

2008-02-03 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|
|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