DO NOT REPLY [Bug 46384] Due to missing synchronization, a member may disappear permanent.

2009-09-13 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46384

Mark Thomas  changed:

   What|Removed |Added

  Attachment #23501|0   |1
is obsolete||

--- Comment #5 from Mark Thomas  2009-09-13 19:14:42 BST ---
Created an attachment (id=24253)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24253)
Updated patch for this issue

I found the time to take another look at this.

Whilst Filip's comment about threads locking up is correct - and Tomcat 6 does
have a fix for that - threads locking up is not at the root of this issue. At
the root of this issue is there there are two lists of cluster members. One in
McastServiceImpl.membership and one in ReplicationTransmitter.map

Whilst checkExpire() does update both lists with the sync on expiredMutex, the
receiver thread updates the McastServiceImpl.membership outside of this mutex.
That leads to the problem that the OP is describing here.

Whilst Tomcat 6 does contain a fix for this, the code bases have diverged
sufficiently that the fix would be invasive. Therefore I am proposing a patch
for Tomcat that is similar to my earlier patch but has a slightly wider sync
block based on my better understanding of this issue.

I have tested the patch and whilst I can force this issue using a debugger
without the patch, I can not force it with the patch in place.

-- 
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: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r814374 - /tomcat/tc5.5.x/trunk/STATUS.txt

2009-09-13 Thread markt
Author: markt
Date: Sun Sep 13 18:16:21 2009
New Revision: 814374

URL: http://svn.apache.org/viewvc?rev=814374&view=rev
Log:
Proposal

Modified:
tomcat/tc5.5.x/trunk/STATUS.txt

Modified: tomcat/tc5.5.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=814374&r1=814373&r2=814374&view=diff
==
--- tomcat/tc5.5.x/trunk/STATUS.txt (original)
+++ tomcat/tc5.5.x/trunk/STATUS.txt Sun Sep 13 18:16:21 2009
@@ -127,3 +127,9 @@
   +1: rjung
   -1: 
 
+* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46384
+  Correct synchronisation problem that leads to cluster members permanently
+  disappearing
+  https://issues.apache.org/bugzilla/attachment.cgi?id=24253
+  +1: markt
+  -1: 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r814377 - in /tomcat/trunk/java/org/apache/catalina/startup: LocalStrings.properties WebXmlCommon.java

2009-09-13 Thread markt
Author: markt
Date: Sun Sep 13 18:27:37 2009
New Revision: 814377

URL: http://svn.apache.org/viewvc?rev=814377&view=rev
Log:
Unlikely, but handle it in case.

Modified:
tomcat/trunk/java/org/apache/catalina/startup/LocalStrings.properties
tomcat/trunk/java/org/apache/catalina/startup/WebXmlCommon.java

Modified: tomcat/trunk/java/org/apache/catalina/startup/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/LocalStrings.properties?rev=814377&r1=814376&r2=814377&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/startup/LocalStrings.properties 
(original)
+++ tomcat/trunk/java/org/apache/catalina/startup/LocalStrings.properties Sun 
Sep 13 18:27:37 2009
@@ -116,4 +116,5 @@
 webXmlCommon.duplicateMessageDestinationRef=Duplicate message-destination-ref 
name
 webXmlCommon.duplicateResourceEnvRef=Duplicate resource-env-ref name
 webXmlCommon.duplicateResourceRef=Duplicate resource-ref name
+webXmlCommon.reservedName=A web.xml file was detected using a reserved name 
[{0}]. The name element will be ignored for this fragment.
 webXmlFragment.multipleOther=Multiple others entries in ordering

Modified: tomcat/trunk/java/org/apache/catalina/startup/WebXmlCommon.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/WebXmlCommon.java?rev=814377&r1=814376&r2=814377&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/startup/WebXmlCommon.java (original)
+++ tomcat/trunk/java/org/apache/catalina/startup/WebXmlCommon.java Sun Sep 13 
18:27:37 2009
@@ -57,6 +57,9 @@
 protected static final StringManager sm =
 StringManager.getManager(Constants.Package);
 
+private static org.apache.juli.logging.Log log=
+org.apache.juli.logging.LogFactory.getLog(WebXmlCommon.class);
+
 // Required attribute of web-app element
 private String version = null;
 public String getVersion() { return version; }
@@ -71,7 +74,14 @@
 // Optional name element
 private String name = null;
 public String getName() { return name; }
-public void setName(String name) { this.name = name; }
+public void setName(String name) {
+if (ORDER_OTHERS.equalsIgnoreCase(name)) {
+// This is unusual. This name will be ignored. Log the fact.
+log.warn(sm.getString("webXmlCommon.reservedName", name));
+} else {
+this.name = name;
+}
+}
 
 // web-app elements
 // TODO: Ignored elements:



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Bug report for Taglibs [2009/09/13]

2009-09-13 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  |
| |   |   |  |  |
| 6347|New|Nor|2002-02-10|io:param should url encode|
| 6390|New|Nor|2002-02-12|valueOf evaluates &'s to & when the & was part|
| 6613|New|Nor|2002-02-21|cannot use xtags:style more than one time per page|
| 8694|Ver|Maj|2002-05-01|Exception when trying to acces the Map.entry compo|
| 8723|Ver|Nor|2002-05-02|use of xsltSystemID does not take effect if xslt a|
| 9257|Ver|Nor|2002-05-20|ELParser doesn't parse non-ascii value|
| 9581|Ver|Min|2002-06-03|update SQL examples to allow for the inputting of |
| 9968|Ver|Maj|2002-06-18|c:url prepends path to page relative URLs |
|10175|Ver|Nor|2002-06-24|Welcome file absent from standard-examples.war in |
|11217|Unc|Blk|2002-07-26|Custom Tag Library Error: 'Tag library ""not found|
|11347|New|Maj|2002-07-31|xtags:if test="position()!=last()" - position() & |
|11361|New|Enh|2002-08-01|Allow user to create own URIResolver  |
|12133|New|Blk|2002-08-28|scrape not work for some urls the request for a co|
|12618|New|Maj|2002-09-13|Mode attribute on xtags:template & xtags:applyTemp|
|12620|New|Nor|2002-09-13|position() and last() do not work in xtags:templat|
|13794|New|Blk|2002-10-20|Unable to list the tag librairies in the custom ta|
|13971|New|Maj|2002-10-25|Style tag does not work with Tomcat 4 with xml or |
|14214|New|Maj|2002-11-04|[PATCH] io:http - can't invoke POS|
|15129|New|Nor|2002-12-06|Distribution of this CTLX is unuseable|
|15551|New|Nor|2002-12-19|error: output must have content-handler property  |
|17211|New|Blk|2003-02-19|FIX: Tomcat 4.1.x taglib pooling causes problems  |
|18198|New|Nor|2003-03-20|[PATCH] Cache - Overloading CacheUtil methods |
|18499|New|Enh|2003-03-30|[cache] per cache entry lifetime  |
|18716|Inf|Nor|2003-04-04|XTAGS LIBRARY PROBLEM IN 4.1.18   |
|19292|New|Enh|2003-04-24|request tag add the ability to store output in pag|
|19754|New|Nor|2003-05-08|TLDParser web.xml and errorstag   |
|20725|New|Nor|2003-06-12|Incorrect property setter signature for Tag handle|
|21928|New|Nor|2003-07-28|Extra space added in the return text of xtags |
|22765|New|Nor|2003-08-27|Wrong values from position() and last() functions |
|23363|New|Maj|2003-09-23|JNDI Taglib does not close context when using  |
|27323|New|Enh|2004-02-29|Remove useless tag  |
|27597|New|Nor|2004-03-11|: set Content-Type header  |
|27717|New|Maj|2004-03-16| very slow in JSTL 1.1 |
|27978|New|Nor|2004-03-26|URLTag nesting into BodyTag does not work more the|
|28280|New|Nor|2004-04-08|bug in xtags:parse whith using a attribute reader |
|28301|New|Nor|2004-04-08|XTags are not working for Tomcat 4.1.18   |
|28814|New|Nor|2004-05-06|mt:header  are ignored|
|28913|New|Maj|2004-05-11|Content-Type not working properly |
|29194|New|Nor|2004-05-25|xml-namespaces not supported  |
|30050|Ass|Maj|2004-07-12|Explicit dependency to Xalan breaks JSTL xml tags |
|30427|New|Nor|2004-08-01|Response contents can be truncated prematurely|
|31009|New|Nor|2004-09-02|io:http tag caches JSPWriter  |
|31859|New|Enh|2004-10-23|Add filename based Content-ID to attachments and u|
|31869|New|Enh|2004-10-24|Allow DataHandler attachments in the attach tag   |
|33032|New|Nor|2005-01-11|string() works incorrectly in conjunction with sco|
|33934|New|Cri|2005-03-09|[standard] memory leak in jstl c:set tag  |
|34137|New|Nor|2005-03-22|getAttribute using iterate reuses bodycontent on 2|
|34703|New|Maj|2005-05-02|Invalid synchronization in PageData leads to java.|
|34786|New|Nor|2005-05-06|Attachments are not cleared in between re-uses of |
|34788|New|Nor|2005-05-06|Cannot set the filename of an attachment independe|
|34789|New|Nor|2005-05-06|Cannot send multi-part Plain Text and HTML emails |
|35780|New|Nor|2005-07-18|Missing attr

Bug report for Tomcat 7 [2009/09/13]

2009-09-13 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  |
| |   |   |  |  |
|47791|New|Min|2009-09-06|Update h2database location|
|47792|New|Min|2009-09-06|Some int parameters are identified as longs in doc|
|47819|New|Nor|2009-09-11|Add sources jars to embedded distribution |
|47820|New|Nor|2009-09-11|Static utility methods in Tomcat should be instanc|
|47823|New|Enh|2009-09-11|Inconsistent naming of boolean getters in Standard|
|47827|New|Nor|2009-09-12|Tomcat API should not have methods that declare th|
|47828|New|Nor|2009-09-12|Change Tomcat.setSilent() to setSilent(boolean)   |
+-+---+---+--+--+
| Total7 bugs   |
+---+

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Bug report for Tomcat 6 [2009/09/13]

2009-09-13 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  |
| |   |   |  |  |
|39661|Opn|Enh|2006-05-25|Please document JULI FileHandler configuration pro|
|41128|Inf|Enh|2006-12-07|Reference to java Thread name from RequestProcesso|
|41679|New|Enh|2007-02-22|SemaphoreValve should be able to filter on url pat|
|41791|New|Enh|2007-03-07|Tomcat behaves inconsistently concerning flush-pac|
|41883|Ass|Enh|2007-03-18|use abstract wrapper instead of plain X509Certific|
|41944|New|Enh|2007-03-25|Start running the RAT tool to see where we're miss|
|41992|New|Enh|2007-03-30|Need ability to set OS process title  |
|42463|New|Enh|2007-05-20|"crossContext" and classloader issues - pls amend |
|43001|New|Enh|2007-07-30|JspC lacks setMappedFile and setDie for use in Ant|
|43003|New|Enh|2007-07-30|Separate dependent component download and build ta|
|43154|New|Enh|2007-08-17|forward port from 5.5.x to 6.x about AccessLogValv|
|43400|New|Enh|2007-09-14|enum support for tag libs |
|43497|New|Enh|2007-09-26|Add ability to escape rendered output of JSP expre|
|43548|Opn|Enh|2007-10-04|xml schema for tomcat-users.xml   |
|43642|New|Enh|2007-10-17|Add prestartminSpareThreads attribute for Executor|
|43682|New|Enh|2007-10-23|JULI: web-inf/classes/logging.properties to suppor|
|43742|New|Enh|2007-10-30|.tag compiles  performed one at a time -- extremel|
|43790|Ass|Enh|2007-11-03|concurrent access issue on TagHandlerPool |
|43979|New|Enh|2007-11-27|Add abstraction for Java and Classfile output |
|44047|New|Enh|2007-12-10|Provide a way for Tomcat to serve up error pages w|
|44106|New|Enh|2007-12-19|autodeploy configures directories which do not con|
|44199|New|Enh|2008-01-10|expose current backlog queue size |
|44225|New|Enh|2008-01-14|SSL connector tries to load the private keystore f|
|44264|New|Enh|2008-01-18|Clustering - Support for disabling multicasting an|
|44265|New|Enh|2008-01-18|Improve JspWriterImpl performance with "inline" su|
|44284|New|Enh|2008-01-23|Support java.lang.Iterable in c:forEach tag   |
|44294|New|Enh|2008-01-25|Support for EL functions with varargs |
|44299|New|Enh|2008-01-26|Provider manager app with a log out button|
|44312|New|Enh|2008-01-28|Warn when overwritting docBase of the default Host|
|44409|New|Enh|2008-02-13|Tomcat does not support Windows-My Provider   |
|44598|New|Enh|2008-03-13|JAASRealm is suppressing Exceptions   |
|44645|New|Enh|2008-03-20|[Patch] JNDIRealm - Doesn't support JNDI "java.nam|
|44787|New|Enh|2008-04-09|provide more error context on "java.lang.IllegalSt|
|44818|New|Enh|2008-04-13|tomcat hangs with GET when content-length is defin|
|45014|New|Enh|2008-05-15|Request and Response classes should have wrappers |
|45255|New|Enh|2008-06-23|support disable jsessionid from url against sessio|
|45282|New|Enh|2008-06-25|NioReceiver doesn't close cleanly, leaving sockets|
|45283|Opn|Enh|2008-06-25|Allow multiple authenticators to be added to pipel|
|45428|New|Enh|2008-07-18|warn if the tomcat stop doesn't complete  |
|45654|New|Enh|2008-08-19|use static methods and attributes in a direct way!|
|45731|New|Enh|2008-09-02|Enhancement request : pluggable httpsession cache |
|45785|Opn|Nor|2008-09-11|ClassCastException if directory ending with .jar e|
|45794|New|Enh|2008-09-12|Patch causes JNDIRealm to bind with user entered c|
|45832|New|Enh|2008-09-18|add DIGEST authentication support to Ant tasks|
|45871|New|Enh|2008-09-23|Support for salted and digested patches in DataSou|
|45878|New|Enh|2008-09-24|Generated jars do not contain proper manifests or |
|45879|Opn|Enh|2008-09-24|Windows installer fails to install NOTICE and RELE|
|45931|Opn|Enh|2008-10-01|trimSpaces incorrectly modifies output|
|45995|New|Enh|2008-10-13|RFE - MIME type extension not case sensitive  |
|46173|New|Enh|2008-11-09|Small patch for manager app: Setting an optional c|
|46263|New|Enh|2008-11-21|Tomcat reloading of context does not update contex|
|46264|

Bug report for Tomcat Connectors [2009/09/13]

2009-09-13 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  |
| |   |   |  |  |
|24427|New|Enh|2003-11-05|Tomcat mod_jk - Excludes in Redirection   |
|34526|Opn|Nor|2005-04-19|Truncated content in decompressed requests from mo|
|35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName|
|36155|Opn|Nor|2005-08-12|tomcat chooses wrong host if using mod_jk |
|36169|New|Enh|2005-08-12|[PATCH] Enable chunked encoding for requests in II|
|38895|Inf|Nor|2006-03-08|Http headers with an underscore "_" change into hy|
|39967|Inf|Nor|2006-07-05|mod_jk gives segmentation fault when apache is sta|
|40208|Inf|Nor|2006-08-08|Request-Dump when ErrorDocument in httpd.conf is a|
|41170|Inf|Nor|2006-12-13|single crlf in header termination crashes app.|
|41430|New|Reg|2007-01-22|JkOptions +ForwardDirectories with Apache's Direct|
|41695|New|Maj|2007-02-24|mod_jk with httpd 2.0.58 on Solaris-10 11/06 dumpi|
|41923|Opn|Nor|2007-03-21|Tomcat doesnt recognized client abort |
|42366|Inf|Nor|2007-05-09|Memory leak in newer mod_jk version when connectio|
|42554|Opn|Nor|2007-05-31|mod_ssl + mod_jk with status_worker does not work |
|43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn|
|43821|New|Enh|2007-11-08|provide client AJP IP address |
|43968|New|Enh|2007-11-26|[patch] support ipv6 with mod_jk  |
|44290|New|Nor|2008-01-24|mod_jk/1.2.26: retry is not useful for an importan|
|44349|New|Maj|2008-02-04|mod_jk/1.2.26 module does not read worker.status.s|
|44379|New|Enh|2008-02-07|convert the output of strftime into UTF-8 |
|44454|New|Nor|2008-02-19|busy count reported in mod_jk inflated, causes inc|
|44571|New|Enh|2008-03-10|Limits busy per worker to a threshold |
|45063|New|Nor|2008-05-22|JK-1.2.26 IIS ISAPI filter issue when running diff|
|45182|New|Enh|2008-06-10|Add functionality to automate the jkmanager disabl|
|45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so|
|45357|Opn|Enh|2008-07-07|Add property to specify custom maintenance page wh|
|45395|New|Min|2008-07-14|MsgAjp dump method does not dump packet when being|
|45610|New|Nor|2008-08-11|status-worker: Bug in request parameter parsing fo|
|46337|New|Nor|2008-12-04|real worker name is wrong |
|46406|New|Enh|2008-12-16|Supporting relative paths in isapi_redirect.proper|
|46503|New|Nor|2009-01-09|Garbage characters in cluster domain field|
|46632|New|Nor|2009-01-29|mod_jk's sockets close prematurely when the server|
|46676|New|Enh|2009-02-09|Configurable test request for Watchdog thread |
|46763|New|Enh|2009-02-24|Improve treatment of jk_log_lock. |
|46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca|
|46862|New|Nor|2009-03-16|Status worker Properties output format (worker.wlb|
|46893|New|Nor|2009-03-23|mod_jk statically compiled always outputs warning |
|47038|New|Enh|2009-04-15|USE_FLOCK_LK redefined compiler warning when using|
|47222|New|Nor|2009-05-19|Changes made to ping_timeout via Status Worker not|
|47224|New|Nor|2009-05-19|Hostname and Port Changes from Status Worker do no|
|47327|New|Enh|2009-06-07|remote_user not logged in apache logfile  |
|47617|New|Enh|2009-07-31|include time spent doing ajp_get_endpoint() in err|
|47678|New|Nor|2009-08-11|Unable to allocate shared memory when using isapi_|
|47679|New|Nor|2009-08-11|Not all headers get passed to Tomcat server from i|
|47692|New|Blk|2009-08-12|Can not compile mod_jk with apache2.0.63 and tomca|
|47714|New|Cri|2009-08-20|Reponse mixed between users   |
|47750|New|Maj|2009-08-27|Loss of worker settings when changing via jkstatus|
|47795|New|Nor|2009-09-07|service sticky_session not being set correctly wit|
|47806|New|Blk|2009-09-08|HTTP 500 internal server error|
+-+---+---+--+--+
| Total   49 bugs   |
+--

Bug report for Tomcat 5 [2009/09/13]

2009-09-13 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  |
|29494|Inf|Enh|2004-06-10|No way to set PATH when running as a service on Wi|
|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|
|33671|Opn|Enh|2005-02-21|Manual Windows service installation with custom na|
|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|
|36133|Inf|Enh|2005-08-10|Support JSS SSL implementation|
|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  |
|37018|Ass|Enh|2005-10-11|Document how to use tomcat-SSL with a pkcs11 token|
|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|
|37847|Ass|Enh|2005-12-09|Allow User To Optionally Specify Catalina Output F|
|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|
|38360|Inf|Enh|2006-01-24|Domain for session cookies|
|38546|Inf|Enh|2006-02-07|Google bot sends invalid If-Modifed-Since Header, |
|38577|Inf|Enh|2006-02-08|Enhance logging of security failures  |
|38743|New|Min|2006-02-21|when using APR, JKS options are silently ignored  |
|38797|Opn|Nor|2006-02-27|5.5.12 and 5.5.15 emit different code on  |
|41007|Opn|Enh|2006-11-20|Can't define customized 503 error page|
|41179|New|Enh|2006-12-15|400 Bad Request response during auto re-deployment|
|41227|Opn|Enh|2006-12-21|When the jasper compiler fails to compile a JSP, i|
|41337|Opn|Enh|2007-01-10|Display an error page if no cert is available on C|
|41496|New|Enh|2007-01-30|set a security provider for jsse in a connector co|
|41498|New|Enh|2007-01-30|allRolesMode Realm configuration option not docume|
|41539|Inf|Enh|2007-02-05|NullPointerException during Embedded tomcat restar|
|41673|New|Enh|2007-02-21|Jasper output the message of compiling error using|
|41697|Ver|Enh|2007-02-25|make visible in debug output if charset from brows|
|41709|Inf|Enh|2007-02-26|When calling the API that relates to the buffer af|
|41718|New|Enh|2007-02-27|Status 302 response to GET request has no body whe|
|42390|New|Maj|2007-05-11|JSP compilation error with nested tagfile tags wit|
|42416|New|Enh|2007-05-14|Tomcat startup hangs and AJP13 connector port 8009|
|43423|New|Enh|2007-09-18|catalina.sh -force too fast   |
|43538|New|Enh|2007-10-02|[patch] Show the hostname and IP address in the ma|
|43796|Inf|Enh|2007-11-05|Add MIME type mapping for the "log" extension |
|43866|New|Enh|2007-11-14|add support for session attribute propagation with|
|43925|Opn|Enh|2007-11-21|org.apache.jasper.runtime.BodyContentImpl causing |
|43960|New|Enh|2007-11-26|Expose StandardWrapper unavailable and/or availabl|
|43991|New|Enh|2007-11-29|Contributing a URLResourceFactory |
|44041|Opn|Cri|2007-12-07|WebappClassLoader duplicate class definition under|
|44216|New|Enh|2008-01-11|Don't reuse session ID even if emptySessionPath=tr|
|44309|New|Enh|2008-01-28|Possible overriding the security state of the conn|
|44399|New|Enh|

Bug report for Tomcat Native [2009/09/13]

2009-09-13 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  |
| |   |   |  |  |
|38372|Inf|Cri|2006-01-25|tcnative-1.dll response overflow corruption, parti|
|41361|New|Nor|2007-01-14|Content lost when read by a slow client.  |
|42090|New|Cri|2007-04-11|tcnative badly handles some OpenSSL disconnections|
|45392|New|Nor|2008-07-14|No OCSP support for client SSL verification   |
|46041|New|Cri|2008-10-20|Tomcat service is terminated unexpectedly (tcnativ|
|46179|New|Maj|2008-11-10|apr ssl client authentication |
|46457|New|Maj|2008-12-31|Typos in multicast.c  |
|46571|New|Nor|2009-01-21|read timeout while reading response   |
|47319|New|Nor|2009-06-05|With APR, getRemoteHost() returns NULL for unknown|
+-+---+---+--+--+
| Total9 bugs   |
+---+

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 47797] The body of the request is lost when you send the POST method !

2009-09-13 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47797

Eugene  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |

--- Comment #4 from Eugene  2009-09-13 23:55:03 PDT ---
(In reply to comment #3)
> The fact that the NoSuchMethodException is returned and references the method
> declared in the request body clearly demonstrates that the issue is with the
> framework or the application not with Tomcat.

I assure you that the error at Tomcat.
Because after the expansion logging all talking about it. And at the servlet
level is already coming InputStream, whose size =- 1!

NoSuchMethodException emerged, when from catalina level receive empty body of
POST Request. And parser begin to analyze empty xml !

After update xmlrpc up to 3.1.2 I became  receive other error:
---
14:58:37,017 ERROR [XmlRpcErrorLogger] Failed to parse XML-RPC request:
Premature end of file.  
org.apache.xmlrpc.XmlRpcException: Failed to parse XML-RPC request: Premature
end of file. 
---

This is not always the case. And from time to time, and says that comes a blank
document! That is the request body is empty, even though all the headlines come
to normal! Also, the server always send the same request. See attached dump. 

Error occurred in CoyoteAdapter.service():
 in line:

  connector.getContainer().getPipeline().getFirst().invoke(request, response);

Please, help me.

-- 
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: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org