DO NOT REPLY [Bug 43868] New: - MBeanServer invoke issue

2007-11-15 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=43868

   Summary: MBeanServer invoke issue
   Product: Tomcat 6
   Version: 6.0.14
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Impossible to invoke "removeRole" or other MBean methods and "setAttribute" by
MBeanServer cause of the same bug in ManagedBean.java at both lines 545
(getSetter method) and 604 (getInvoke method):
object = this;
Must be replace by:
object = bean;

Fortunately getGetter method is correct.

-- 
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 43872] New: - getMethod() always returns "GET"

2007-11-15 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=43872

   Summary: getMethod() always returns "GET"
   Product: Tomcat 5
   Version: 5.5.24
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Servlet & JSP API
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


Apache Tomcat/5.5.25
JVM 1.5.0_14-b03
Linux 2.6.16.27-0.9-smp

I found the following strange behavours:
 
1) Within servlets, getMethod() returns "GET" even if the method actually used 
in the HTML form is "post". 
2) Variable coming from HTML are all null when method="post" is used in the 
HTML form.
3) Within servlets doPost(...) is never executed.

I'm aware that this behavour is to "big" to be a bug (someone would have 
noticed it before!) but I don't find anything in docs about any strange tricks 
needed to get POSTed variables.

As a test case I wrote a servlet with both doPost(..) and doGet(..) and what 
it happens is that doGet is actually executed even if method="post" is in the 
HTML. doPost is never executed and the servlet can't receive any value form 
the HTML page when method="post".
Here it is my coding: 
   lele.html
   lele.java
   web.xml
Please run it and have a look at catalina.out. You'll see what you have typed 
into the field "var2".
Then change in lele.html method="get" to method="post", deploy and run the 
servlet again. You'll see that all variables are now null.  

lele.html  











lele.java  ==
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class lele extends HttpServlet {
public void doPost (HttpServletRequest req, HttpServletResponse res) 
throws IOException, ServletException {
try {
String azione= req.getParameter("azione"); 
String matricola = req.getParameter("matricola"); 
String method= req.getMethod(); 
System.out.println("doPost: method="+method);
System.out.println("doPost: azione="+azione);
System.out.println("doPost: matr="+matricola);
} catch(Exception e) {
System.out.println("doPost: errore "+e.toString());
}
ServletContext contesto = getServletContext();
RequestDispatcher rd = contesto.getRequestDispatcher("/lele.html");
rd.forward(req, res);
}
public void doGet (HttpServletRequest req, HttpServletResponse res) throws 
IOException, ServletException {
try {
String azione= req.getParameter("azione"); 
String matricola = req.getParameter("matricola"); 
String method= req.getMethod(); 
System.out.println("doGet: method="+method);
System.out.println("doGet: azione="+azione);
System.out.println("doGet: matr="+matricola);
} catch(Exception e) {
System.out.println("doGet: errore "+e.toString());
}
ServletContext contesto = getServletContext();
RequestDispatcher rd = contesto.getRequestDispatcher("/lele.html");
rd.forward(req, res);
}
}

web.xml 

Applicazione "lele"
 
  lele
  lele nostra
  lele
 
 
  lele
  /index.html
 

  30 



-- 
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: r595327 - /tomcat/trunk/build.properties.default

2007-11-15 Thread fhanik
Author: fhanik
Date: Thu Nov 15 07:08:43 2007
New Revision: 595327

URL: http://svn.apache.org/viewvc?rev=595327&view=rev
Log:
Correct JDT location

Modified:
tomcat/trunk/build.properties.default

Modified: tomcat/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=595327&r1=595326&r2=595327&view=diff
==
--- tomcat/trunk/build.properties.default (original)
+++ tomcat/trunk/build.properties.default Thu Nov 15 07:08:43 2007
@@ -57,7 +57,7 @@
 jdt.home=${base.path}/eclipse/plugins
 jdt.lib=${jdt.home}
 jdt.jar=${jdt.lib}/org.eclipse.jdt.core_3.3.1.v_780_R33x.jar
-jdt.loc=http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.3.1-200709211145/eclipse-JDT-3.3.1.zip
+jdt.loc=http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.3.1-200709211145/eclipse-JDT-3.3.1.zip
 
 # - Tomcat native library -
 tomcat-native.home=${base.path}/tomcat-native-1.1.10



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



DO NOT REPLY [Bug 43873] New: - mod_jk memory leak when apache graceful restart

2007-11-15 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=43873

   Summary: mod_jk memory leak when apache graceful restart
   Product: Tomcat 5
   Version: Unknown
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Native:JK
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


In jk_set_time_fmt(),  memory area is allocated by the following codes. 
 fmt = (char *)malloc(JK_TIME_MAX_SIZE + strlen(JK_TIME_PATTERN_MICRO));
But this area is not released. 

When i restart apache with graceful mode, apache master process causes the
memory leak a little.
I tested in the following environments.
 RHEL4.5(Apache2.0.52) + mod_jk 1.2.25/1.2.26-dev

I made following patch for apache-2.0/mod_jk.c.
===
--- mod_jk/native/apache-2.0/mod_jk.c   (revision 594009)
+++ mod_jk/native/apache-2.0/mod_jk.c   (working copy)
@@ -2605,6 +2605,13 @@
 jkl->log = jk_log_to_file;
 jkl->level = conf->log_level;
 jk_set_time_fmt(jkl, conf->stamp_format_string);
+char *log_fmt_subsec = (char *)jkl->log_fmt_subsec;
+if ( log_fmt_subsec != NULL ) {
+if (jkl->log_fmt_size > 0)
+jkl->log_fmt_subsec = apr_pstrdup(p, jkl->log_fmt_subsec);
+free((void*)log_fmt_subsec);
+}
+
 jkl->logger_private = flp;
 flp->jklogfp = conf->jklogfp;
 conf->log = jkl;

-- 
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: r595339 - /tomcat/tc6.0.x/trunk/STATUS

2007-11-15 Thread fhanik
Author: fhanik
Date: Thu Nov 15 07:57:50 2007
New Revision: 595339

URL: http://svn.apache.org/viewvc?rev=595339&view=rev
Log:
cast votes

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

Modified: tomcat/tc6.0.x/trunk/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS?rev=595339&r1=595338&r2=595339&view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS (original)
+++ tomcat/tc6.0.x/trunk/STATUS Thu Nov 15 07:57:50 2007
@@ -34,12 +34,12 @@
 
 * Fix bug in CGI servlet that causes it to fail when included
   http://people.apache.org/~markt/patches/2007-10-28-cgi-include.patch
-  +1: markt, remm
+  +1: markt, remm, fhanik
   -1:
 
 * Fix BZ 43702 - Inner class files have unnecessarily long names
   http://people.apache.org/~markt/patches/2007-10-30-Bug43702.patch
-  +1: markt, remm
+  +1: markt, remm, fhanik
   -1:
 
 * Add tests for the cookie parsing.



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



DO NOT REPLY [Bug 43873] - mod_jk memory leak when apache graceful restart

2007-11-15 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=43873


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Additional Comments From [EMAIL PROTECTED]  2007-11-15 08:15 ---
Huh,

You are correct.
The complete log_fmt_subsec is a complete mess.
It's either assigned as const char* or allocated.
Even more it's wrongly used later, presumed as JK_TIME_MAX_SIZE long,
but actually JK_TIME_MAX_SIZE + strlen(JK_TIME_PATTERN_MICRO)


-- 
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: r595328 - /tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java

2007-11-15 Thread fhanik
Author: fhanik
Date: Thu Nov 15 07:09:52 2007
New Revision: 595328

URL: http://svn.apache.org/viewvc?rev=595328&view=rev
Log:
Fix comet handling in case BEGIN event calls CometEvent.close

Modified:
tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java

Modified: tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java?rev=595328&r1=595327&r2=595328&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java Thu 
Nov 15 07:09:52 2007
@@ -227,8 +227,8 @@
 }
 } else {
 if (comet) {
-filterChain.doFilterEvent(request.getEvent());
 request.setComet(true);
+filterChain.doFilterEvent(request.getEvent());
 } else {
 filterChain.doFilter
 (request.getRequest(), response.getResponse());



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



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

2007-11-15 Thread pero
Author: pero
Date: Thu Nov 15 09:56:48 2007
New Revision: 595375

URL: http://svn.apache.org/viewvc?rev=595375&view=rev
Log:
add my vote

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

Modified: tomcat/tc6.0.x/trunk/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS?rev=595375&r1=595374&r2=595375&view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS (original)
+++ tomcat/tc6.0.x/trunk/STATUS Thu Nov 15 09:56:48 2007
@@ -39,7 +39,7 @@
 
 * Fix BZ 43702 - Inner class files have unnecessarily long names
   http://people.apache.org/~markt/patches/2007-10-30-Bug43702.patch
-  +1: markt, remm, fhanik
+  +1: markt, remm, fhanik, pero
   -1:
 
 * Add tests for the cookie parsing.
@@ -51,7 +51,7 @@
   Better patch that removes ServerCookie.log(String) entirely as per
   Remy's -1 comment on previous patch
   http://svn.apache.org/viewvc?view=rev&revision=594700
-  +1: markt, remm, fhanik
+  +1: markt, remm, fhanik, pero
   -1:
 
 * Fix BZ 43846
@@ -70,6 +70,6 @@
   
 * JDT location return 404
   http://people.apache.org/~fhanik/patches/jdt-loc.patch
-  +1: fhanik, jfclere
+  +1: fhanik, jfclere, pero
   -1: 
   



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



svn commit: r595376 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread pero
Author: pero
Date: Thu Nov 15 09:58:26 2007
New Revision: 595376

URL: http://svn.apache.org/viewvc?rev=595376&view=rev
Log:
Add JDT Location change

Modified:
tomcat/current/tc5.5.x/STATUS

Modified: tomcat/current/tc5.5.x/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS?rev=595376&r1=595375&r2=595376&view=diff
==
--- tomcat/current/tc5.5.x/STATUS (original)
+++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 09:58:26 2007
@@ -50,3 +50,10 @@
   http://people.apache.org/~markt/patches/2007-10-28-cookies-tc5.patch
   +1: markt
   -1:
+
+* JDT location return 404
+  http://people.apache.org/~fhanik/patches/jdt-loc.patch
+  Backport from Tomcat 6
+  +1: pero
+  -1: 
+



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



Re: svn commit: r595376 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread Filip Hanik - Dev Lists

jean-frederic clere wrote:

[EMAIL PROTECTED] wrote:
  

Author: pero
Date: Thu Nov 15 09:58:26 2007
New Revision: 595376

URL: http://svn.apache.org/viewvc?rev=595376&view=rev
Log:
Add JDT Location change

Modified:
tomcat/current/tc5.5.x/STATUS

Modified: tomcat/current/tc5.5.x/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS?rev=595376&r1=595375&r2=595376&view=diff
==
--- tomcat/current/tc5.5.x/STATUS (original)
+++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 09:58:26 2007
@@ -50,3 +50,10 @@
   http://people.apache.org/~markt/patches/2007-10-28-cookies-tc5.patch
   +1: markt
   -1:
+
+* JDT location return 404
+  http://people.apache.org/~fhanik/patches/jdt-loc.patch
+  Backport from Tomcat 6
+  +1: pero
+  -1: 
+



Well I don't see the need to change it there. The location is
http://archive.eclipse.org/eclipse/downloads/drops/R-3.1.2-200601181600/eclipse-JDT-3.1.2.zip
and it is still valid.
  
the question with TC 5.5 is simply whether we want to upgrade to a later 
version of the JDT compiler for the next release


Filip

Cheers

Jean-Frederic

  


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



  



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



Re: svn commit: r595376 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread jean-frederic clere
[EMAIL PROTECTED] wrote:
> Author: pero
> Date: Thu Nov 15 09:58:26 2007
> New Revision: 595376
> 
> URL: http://svn.apache.org/viewvc?rev=595376&view=rev
> Log:
> Add JDT Location change
> 
> Modified:
> tomcat/current/tc5.5.x/STATUS
> 
> Modified: tomcat/current/tc5.5.x/STATUS
> URL: 
> http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS?rev=595376&r1=595375&r2=595376&view=diff
> ==
> --- tomcat/current/tc5.5.x/STATUS (original)
> +++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 09:58:26 2007
> @@ -50,3 +50,10 @@
>http://people.apache.org/~markt/patches/2007-10-28-cookies-tc5.patch
>+1: markt
>-1:
> +
> +* JDT location return 404
> +  http://people.apache.org/~fhanik/patches/jdt-loc.patch
> +  Backport from Tomcat 6
> +  +1: pero
> +  -1: 
> +

Well I don't see the need to change it there. The location is
http://archive.eclipse.org/eclipse/downloads/drops/R-3.1.2-200601181600/eclipse-JDT-3.1.2.zip
and it is still valid.

Cheers

Jean-Frederic

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


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



Re: svn commit: r595376 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread Peter Rossbach

Strange,

but with Revision 586865 I have test with the link and check in the  
JDT 3.3.1 change at 27.10.07


Peter



Am 15.11.2007 um 20:04 schrieb Filip Hanik - Dev Lists:


jean-frederic clere wrote:

[EMAIL PROTECTED] wrote:


Author: pero
Date: Thu Nov 15 09:58:26 2007
New Revision: 595376

URL: http://svn.apache.org/viewvc?rev=595376&view=rev
Log:
Add JDT Location change

Modified:
tomcat/current/tc5.5.x/STATUS

Modified: tomcat/current/tc5.5.x/STATUS
URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS? 
rev=595376&r1=595375&r2=595376&view=diff
 
==

--- tomcat/current/tc5.5.x/STATUS (original)
+++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 09:58:26 2007
@@ -50,3 +50,10 @@
   http://people.apache.org/~markt/patches/2007-10-28-cookies- 
tc5.patch

   +1: markt
   -1:
+
+* JDT location return 404
+  http://people.apache.org/~fhanik/patches/jdt-loc.patch
+  Backport from Tomcat 6
+  +1: pero
+  -1: +



Well I don't see the need to change it there. The location is
http://archive.eclipse.org/eclipse/downloads/drops/ 
R-3.1.2-200601181600/eclipse-JDT-3.1.2.zip

and it is still valid.

the question with TC 5.5 is simply whether we want to upgrade to a  
later version of the JDT compiler for the next release


Filip

Cheers

Jean-Frederic




 
-

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]







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






Re: How do I expose Catalina MBeans through Java Platform MBeanServer

2007-11-15 Thread Ramakanth Kunapuli
It appears the attached jar file was stripped. Here's the java source.

*

import* java.util.concurrent.CountDownLatch;

*

import* javax.management.MBeanServer;
*

import* javax.management.MBeanServerBuilder;
*

import* javax.management.MBeanServerDelegate;

*

public* *class* SingletonMBeanServerBuilder *extends* MBeanServerBuilder {

*private* *static* MBeanServer *theMBeanServer*;

*private* *static* MBeanServerDelegate *theMBeanServerDelegate*;

*private* *static* *final* CountDownLatch *mbeanServerInited* =
*new*CountDownLatch(1);

*private* *static* *final* CountDownLatch *mbeanServerDelegateInited* = *new
* CountDownLatch(1);

*public* SingletonMBeanServerBuilder() {

}

@Override

*public* MBeanServer newMBeanServer(String defaultDomain,

MBeanServer outer, MBeanServerDelegate delegate) {

*return* checkAndInitMBeanServer(defaultDomain, outer, delegate);

}

@Override

*public* MBeanServerDelegate newMBeanServerDelegate() {

*return* checkAndInitMBeanServerDelegate();

}

*private* MBeanServer checkAndInitMBeanServer(String defaultDomain,

MBeanServer outer, MBeanServerDelegate delegate) {

*synchronized* (*mbeanServerInited*) {

*if* (*mbeanServerInited*.getCount() != 0) {

*theMBeanServer* = *super*.newMBeanServer(defaultDomain, outer,

delegate);

*mbeanServerInited*.countDown();

}

}

*return* *theMBeanServer*;

}

*private* MBeanServerDelegate checkAndInitMBeanServerDelegate() {

*synchronized* (*mbeanServerDelegateInited*) {

*if* (*mbeanServerDelegateInited*.getCount() != 0) {

*theMBeanServerDelegate* = *super*.newMBeanServerDelegate();

*mbeanServerDelegateInited*.countDown();

}

}

*return* *theMBeanServerDelegate*;

}

}



On Nov 14, 2007 11:52 AM, Vamsavardhana Reddy <[EMAIL PROTECTED]> wrote:

> What does the jar do?  It does not seem to contain source code.
>
> ++Vamsi
>
> On Nov 15, 2007 1:16 AM, Ramakanth Kunapuli <[EMAIL PROTECTED]> wrote:
>
> > It appears that tomcat uses different MBeanServer instance from Java's
> > platform MBeanServer.
> >
> > Here's a tech tip of making both Tomcat & Java use the same MBean Server
> > instance.
> >
> > Drop the attached jar file under /jre/lib/ext.
> > Modify the java execution command to include the following system
> > property.
> > *
> > -Djavax.management.builder.initial=SingletonMBeanServerBuilder
> >
> >
> > *
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>


svn commit: r595550 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread pero
Author: pero
Date: Thu Nov 15 20:52:59 2007
New Revision: 595550

URL: http://svn.apache.org/viewvc?rev=595550&view=rev
Log:
AccesLogValve NPE

Modified:
tomcat/current/tc5.5.x/STATUS

Modified: tomcat/current/tc5.5.x/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS?rev=595550&r1=595549&r2=595550&view=diff
==
--- tomcat/current/tc5.5.x/STATUS (original)
+++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 20:52:59 2007
@@ -56,4 +56,10 @@
   Backport from Tomcat 6
   +1: pero
   -1: 
+ 
+* Fix NPE situation
+  
http://people.apache.org/~pero/patches/tc55/2007-11-16-AccessLogValve-tc55.patch
+  +1: pero
+  -1:
+
 



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



svn commit: r595560 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread pero
Author: pero
Date: Thu Nov 15 21:30:20 2007
New Revision: 595560

URL: http://svn.apache.org/viewvc?rev=595560&view=rev
Log:
Fix FarmWarDeployer

Modified:
tomcat/current/tc5.5.x/STATUS

Modified: tomcat/current/tc5.5.x/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS?rev=595560&r1=595559&r2=595560&view=diff
==
--- tomcat/current/tc5.5.x/STATUS (original)
+++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 21:30:20 2007
@@ -62,7 +62,13 @@
   +1: pero
   -1:
 
-* Fix wrong && 
+* Fix wrong && (Also needed at tomcat 6)
   
http://people.apache.org/~pero/patches/tc55/2007-11-16-1-ReplicationValve-tc55.patch
   +1: pero
   -1:
+
+* Fix  FarmWarDeployer can be only config at Host Element (Also needed at 
tomcat 6)
+  
http://people.apache.org/~pero/patches/tc55/2007-11-16-1-FarmWarDeployer-tc55.patch
+  +1: pero
+  -1:
+



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



svn commit: r595551 - /tomcat/current/tc5.5.x/STATUS

2007-11-15 Thread pero
Author: pero
Date: Thu Nov 15 20:53:50 2007
New Revision: 595551

URL: http://svn.apache.org/viewvc?rev=595551&view=rev
Log:
Add my vote

Modified:
tomcat/current/tc5.5.x/STATUS

Modified: tomcat/current/tc5.5.x/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS?rev=595551&r1=595550&r2=595551&view=diff
==
--- tomcat/current/tc5.5.x/STATUS (original)
+++ tomcat/current/tc5.5.x/STATUS Thu Nov 15 20:53:50 2007
@@ -48,7 +48,7 @@
 
 * Port Cookie hadling improvements from TC6
   http://people.apache.org/~markt/patches/2007-10-28-cookies-tc5.patch
-  +1: markt
+  +1: markt, pero
   -1:
 
 * JDT location return 404



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