DO NOT REPLY [Bug 41620] New: - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620

   Summary: Context level clustering on 3 or more nodes fails in
Tomcat 5.5.20
   Product: Tomcat 5
   Version: 5.5.20
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P1
 Component: Catalina:Cluster
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


This bug is a result of the testing that got done for a JIRA in Apache Geronimo
(Tomcat version) http://issues.apache.org/jira/browse/GERONIMO-2577

I am trying to setup a Tomcat cluster consisting of 3 Windows XP machines
running on Intel 32-bit platform. All 3 machines are on the same subnet.

Clustering is enabled at the application level or context level with the
following configuration files:
context_node1.xml
context_node2.xml
context_node3.xml
(edit line 25 of context_node*.xml, copy it into "conf" folder of Apache Tomcat
5.5.20 installation and rename it as "context.xml")

"server.xml" is kept unchanged.

Also deploy the sample application attached below:
servlets-examples-cluster_node1.war
servlets-examples-cluster_node2.war
servlets-examples-cluster_node3.war
(copy "servlets-examples-cluster_node*.war" into "webapps" folder of Apache
Tomcat installation and rename it as "servlets-examples-cluster.war")

Apache HTTP Server is used as the loadbalancer with the following configuration:
# AJP Connector for Tomcat
LoadModule jk_module modules\mod_jk.so
JkMount /servlets-examples-cluster loadbalancer
JkMount /servlets-examples-cluster/* loadbalancer
JkWorkersFile "C:/Program Files/Apache Software
Foundation/Apache2.2/conf/workers.properties"
JkLogFile "C:/Program Files/Apache Software 
Foundation/Apache2.2/logs/mod_jk.log"

# workers.properties
worker.list=loadbalancer,status
worker.node1.port=8009
worker.node1.host=AA.BB.CC.D1
worker.node1.type=ajp13
worker.node1.lbfactor=1

worker.node2.port=8009
worker.node2.host=AA.BB.CC.D2
worker.node2.type=ajp13
worker.node2.lbfactor=1

worker.node3.port=8009
worker.node3.host=AA.BB.CC.D3
worker.node3.type=ajp13
worker.node3.lbfactor=1

worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=node1,node2,node3
worker.loadbalancer.sticky_session=1
worker.status.type=status

Start Apache HTTP server followed by the Tomcat servers on all 3 nodes.

Try running the following:
http://Yourhost/servlets-examples-cluster - HttpSession is not used here, hence
no sticky session
http://Yourhost/servlets-examples-cluster/servlet/SessionExample - HttpSession
is used here, hence sticky session should be in effect

 is the hostname where HTTP server is running.

Running http://Yourhost/servlets-examples-cluster works as expected with
application getting served by different servers in the cluster in Round Robin
fashion.

However running http://Yourhost/servlets-examples-cluster/servlet/SessionExample
doesn't work as expected. I observe that session-ids are getting changed upon
hitting page-refreshes or upon adding attributes. I tried this
Application/Context level clustering in Tomcat multiple times, but same results
every time, with even sticky sessions not being in effect.

Note: 
Host level clustering on 3 or more nodes works correctly. I tested this by
moving the clustering info from "context.xml" to "server.xml". This time upon
running http://Yourhost/servlets-examples-cluster/servlet/SessionExample, I
observe that session ID is getting preserved across page refreshes and upon
adding new attributes. So I could proceed with testing the failover behaviour as
below:

1) Client "http://Yourhost/servlets-examples-cluster/servlet/SessionExample";
being served by Server-2.
2) Kill Server-2 and refresh the client. Client now being served by Server-3
with session id & state preserved.
3) Kill Server-3 and refresh the client. Client is now being served by Server-1
with session id & state preserved.
Also tried these:
4) Restart Server-2 and kill Server-1. Client is now being served by Server-2
with session id & state preserved.
5) Restart Server-3 and kill Server-2. Client is now being served by Server-3
with session id & state preserved.

So failover happening successfully across the 3-node cluster when Host Level
Clustering is used. But Context level clustering doesn't work.

- Shiva

-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 02:45 ---
Created an attachment (id=19594)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19594&action=view)
context_node1.xml


-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 02:45 ---
Created an attachment (id=19595)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19595&action=view)
context_node2.xml


-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 02:46 ---
Created an attachment (id=19596)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19596&action=view)
context_node3.xml


-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 02:46 ---
Created an attachment (id=19597)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19597&action=view)
servlets-examples-cluster_node1.war


-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 02:46 ---
Created an attachment (id=19598)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19598&action=view)
servlets-examples-cluster_node2.war


-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 02:47 ---
Created an attachment (id=19599)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19599&action=view)
servlets-examples-cluster_node3.war


-- 
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: r507923 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c

2007-02-15 Thread rjung
Author: rjung
Date: Thu Feb 15 05:16:03 2007
New Revision: 507923

URL: http://svn.apache.org/viewvc?view=rev&rev=507923
Log:
Fix bug in adding content-length header (BZ 41610).
Analyzed and patch contributed by Boris Maras.

Modified:
tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c

Modified: tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c?view=diff&rev=507923&r1=507922&r2=507923
==
--- tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c Thu Feb 15 05:16:03 
2007
@@ -702,7 +702,7 @@
 s->headers_values[i] = ap_pstrdup(r->pool, elts[i].val);
 s->headers_names[i] = hname;
 if (need_content_length_header &&
-!strcasecmp(s->headers_values[i], "content-length")) {
+!strcasecmp(s->headers_names[i], "content-length")) {
 need_content_length_header = JK_FALSE;
 }
 }

Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?view=diff&rev=507923&r1=507922&r2=507923
==
--- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Thu Feb 15 05:16:03 
2007
@@ -730,7 +730,7 @@
 s->headers_values[i] = apr_pstrdup(r->pool, elts[i].val);
 s->headers_names[i] = hname;
 if (need_content_length_header &&
-!strcasecmp(s->headers_values[i], "content-length")) {
+!strcasecmp(s->headers_names[i], "content-length")) {
 need_content_length_header = JK_FALSE;
 }
 }



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



DO NOT REPLY [Bug 41610] - mod_jk incorrectly creates duplicate content-length:0 header

2007-02-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=41610





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 05:16 ---
Thanks for the analysis. I committed you patch. It will be part of 1.2.21.

-- 
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: r507925 - /tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml

2007-02-15 Thread rjung
Author: rjung
Date: Thu Feb 15 05:19:19 2007
New Revision: 507925

URL: http://svn.apache.org/viewvc?view=rev&rev=507925
Log:
Changelog Update fpr BZ 41610.

Modified:
tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml

Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml?view=diff&rev=507925&r1=507924&r2=507925
==
--- tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml (original)
+++ tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Thu Feb 15 
05:19:19 2007
@@ -27,6 +27,10 @@
   
 
   
+41610: Fix incorrect detection of missing Content-Length
+header leading to duplicate headers. Contributed by Boris Maras. 
(rjung)
+  
+  
   Better build support for SunONE (Netscape/iPlanet) webservers. (jim)
   
   



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



What became of 5.5.22?

2007-02-15 Thread Jess Holle

I know there was much talk of 5.5.22, but what happened to it?

--
Jess Holle

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



Re: What became of 5.5.22?

2007-02-15 Thread Jess Holle

Ooops...  My bad -- I see the announcement of the test release now.

Jess Holle wrote:

I know there was much talk of 5.5.22, but what happened to it?

--
Jess Holle

-
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 41623] New: - dead link on "See the DBCP Javadocs "

2007-02-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=41623

   Summary: dead link on "See the DBCP Javadocs "
   Product: Tomcat 5
   Version: 5.0.0
  Platform: PC
   URL: http://tomcat.apache.org/tomcat-5.0-doc/jndi-datasource-
examples-howto.html
OS/Version: other
Status: NEW
  Severity: trivial
  Priority: P2
 Component: Servlet & JSP API
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


page not found for "DBCP JavaDoc" link (3.block: Database Connection Pool)
http://tomcat.apache.org/tomcat-5.0-doc/jndi-datasource-examples-howto.html
x86 PC WinServ2003 w Firefox

-- 
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 41610] - mod_jk incorrectly creates duplicate content-length:0 header

2007-02-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=41610


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




-- 
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 41610] - mod_jk incorrectly creates duplicate content-length:0 header

2007-02-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=41610





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 07:31 ---
YEPLA! Our first committed bugfix in such a great project !

Thanks Rainer for such a quick answer and thanks for all the work done by the 
apache team. The patch has been backported for our use in version 1.2.19 and 
also works without any problem. We didn't study porting this patch to 2.2.x 
version but it seems to have a similar behaviour.

PS for boris :D APERO !!

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



Re: svn commit: r507923 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c

2007-02-15 Thread Mladen Turk

[EMAIL PROTECTED] wrote:

Log:
Fix bug in adding content-length header (BZ 41610).
Analyzed and patch contributed by Boris Maras.

 if (need_content_length_header &&
-!strcasecmp(s->headers_values[i], "content-length")) {
+!strcasecmp(s->headers_names[i], "content-length")) {


I simply cannot believe it!
The faulty code originates back from 1.2.6 (or even before)...

Boris Maras (the guy who spotted that and provided a patch)
has a name like many Croatians have. Is it coincidence ;)

Regards,
Mladen.

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



DO NOT REPLY [Bug 41610] - mod_jk incorrectly creates duplicate content-length:0 header

2007-02-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=41610





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 11:06 ---
I applied the fix to the Apache 1.3 and 2 code lines of mod_jk. The Apache 2
code line fixes it for 2.0 and 2.2.

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



Re: svn commit: r507923 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c

2007-02-15 Thread Rainer Jung

Mladen Turk wrote:

[EMAIL PROTECTED] wrote:

Log:
Fix bug in adding content-length header (BZ 41610).
Analyzed and patch contributed by Boris Maras.

 if (need_content_length_header &&
-!strcasecmp(s->headers_values[i], 
"content-length")) {
+!strcasecmp(s->headers_names[i], 
"content-length")) {


I simply cannot believe it!
The faulty code originates back from 1.2.6 (or even before)...


I couldn't believe it either. I'm happy, that we are getting more users 
sharing the burden of finding the glitches.


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



Re: svn commit: r507923 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c

2007-02-15 Thread Henri Gomez

A proof that many eyes on the same piece of code is good thing.

1.2.6 days, an eternity :)

2007/2/15, Rainer Jung <[EMAIL PROTECTED]>:

Mladen Turk wrote:
> [EMAIL PROTECTED] wrote:
>> Log:
>> Fix bug in adding content-length header (BZ 41610).
>> Analyzed and patch contributed by Boris Maras.
>>
>>  if (need_content_length_header &&
>> -!strcasecmp(s->headers_values[i],
>> "content-length")) {
>> +!strcasecmp(s->headers_names[i],
>> "content-length")) {
>
> I simply cannot believe it!
> The faulty code originates back from 1.2.6 (or even before)...

I couldn't believe it either. I'm happy, that we are getting more users
sharing the burden of finding the glitches.

-
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 41595] - java.io.NotSerializableException: org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper

2007-02-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=41595


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 15:54 ---
You won't see this exception unless you put the Connection in the session.

-- 
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 40828] - non-working jsp example jsxp svg

2007-02-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=40828


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 16:01 ---
This behaviour is required by the spec so this is not a bug. That the client
doesn't handle it is an issue for the client.

If you want more control over the headers to work around this client issue then
you can use getOutputStream() rather than getWriter().

-- 
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: r508248 - /tomcat/container/branches/tc5.0.x/webapps/docs/jndi-datasource-examples-howto.xml

2007-02-15 Thread markt
Author: markt
Date: Thu Feb 15 16:07:21 2007
New Revision: 508248

URL: http://svn.apache.org/viewvc?view=rev&rev=508248
Log:
Fix for bug 41623 so svn aligns with the live web site (that I am about to 
update)

Modified:

tomcat/container/branches/tc5.0.x/webapps/docs/jndi-datasource-examples-howto.xml

Modified: 
tomcat/container/branches/tc5.0.x/webapps/docs/jndi-datasource-examples-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/branches/tc5.0.x/webapps/docs/jndi-datasource-examples-howto.xml?view=diff&rev=508248&r1=508247&r2=508248
==
--- 
tomcat/container/branches/tc5.0.x/webapps/docs/jndi-datasource-examples-howto.xml
 (original)
+++ 
tomcat/container/branches/tc5.0.x/webapps/docs/jndi-datasource-examples-howto.xml
 Thu Feb 15 16:07:21 2007
@@ -50,9 +50,8 @@
 JDBC 3.0 features with a 1.4 JVM.
 
 
-See the http://jakarta.apache.org/commons/dbcp/api/index.html";>
-DBCP Javadocs BasicDataSource class for a complete list
-of configuration parameters.
+See the http://jakarta.apache.org/commons/dbcp/configuration.html";>
+DBCP documentation for a complete list of configuration parameters.
 
 
 



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



DO NOT REPLY [Bug 41623] - dead link on "See the DBCP Javadocs "

2007-02-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=41623


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 16:11 ---
Thanks for the report. This has been fixed in svn and on the live web site. It
will take a few hours for the changes to sync up.

-- 
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 41618] - Error listenerStart

2007-02-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=41618


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 16:14 ---
This looks like
http://mail-archives.apache.org/mod_mbox/myfaces-users/200610.mbox/[EMAIL 
PROTECTED]

Please use the Tomcat or MyFaces users list if you need more help.

-- 
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 41616] - Use JSF by eclipse and run by Tomcat but the error appeared

2007-02-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=41616


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 16:16 ---
The stack trace suggests a configuration error.

Bugzilla is not a support forum. Please direct your question to the Tomcat or
MyFaces users lists.

-- 
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 41610] - mod_jk incorrectly creates duplicate content-length:0 header

2007-02-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=41610


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




-- 
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 41620] - Context level clustering on 3 or more nodes fails in Tomcat 5.5.20

2007-02-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=41620


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 18:54 ---
It is not possible to configure clustering in context.xml. It must be done at
the Host level (with the jvmRoute defined at the Engine level) within 
server.xml 

-- 
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: r508294 - in /tomcat/container/tc5.5.x: catalina/src/share/org/apache/catalina/core/StandardWrapperValve.java webapps/docs/changelog.xml

2007-02-15 Thread markt
Author: markt
Date: Thu Feb 15 19:06:07 2007
New Revision: 508294

URL: http://svn.apache.org/viewvc?view=rev&rev=508294
Log:
Fix bug 41608. Make log levels consistent.

Modified:

tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapperValve.java
tomcat/container/tc5.5.x/webapps/docs/changelog.xml

Modified: 
tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapperValve.java
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapperValve.java?view=diff&rev=508294&r1=508293&r2=508294
==
--- 
tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapperValve.java
 (original)
+++ 
tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapperValve.java
 Thu Feb 15 19:06:07 2007
@@ -219,13 +219,13 @@
 exception(request, response, e);
 } catch (IOException e) {
request.removeAttribute(Globals.JSP_FILE_ATTR);
-
container.getLogger().warn(sm.getString("standardWrapper.serviceException",
+
container.getLogger().error(sm.getString("standardWrapper.serviceException",
  wrapper.getName()), e);
 throwable = e;
 exception(request, response, e);
 } catch (UnavailableException e) {
request.removeAttribute(Globals.JSP_FILE_ATTR);
-
container.getLogger().warn(sm.getString("standardWrapper.serviceException",
+
container.getLogger().error(sm.getString("standardWrapper.serviceException",
  wrapper.getName()), e);
 //throwable = e;
 //exception(request, response, e);

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?view=diff&rev=508294&r1=508293&r2=508294
==
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Thu Feb 15 19:06:07 2007
@@ -14,6 +14,28 @@
   
 
 
+
+  
+
+  
+41608 Make log levels consistent when Servlet.service()
+throws an exception. (markt)
+  
+
+  
+
+
+
+  
+
+  
+Fix regression in build that prevented connectors from building.
+(markt)
+  
+
+  
+
+
 
   
 



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



svn commit: r508295 - in /tomcat/tc6.0.x/trunk: java/org/apache/catalina/core/StandardWrapperValve.java webapps/docs/changelog.xml

2007-02-15 Thread markt
Author: markt
Date: Thu Feb 15 19:09:39 2007
New Revision: 508295

URL: http://svn.apache.org/viewvc?view=rev&rev=508295
Log:
Port fix bug 41608. Make log levels consistent.

Modified:
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java
tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java?view=diff&rev=508295&r1=508294&r2=508295
==
--- 
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java 
(original)
+++ 
tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java 
Thu Feb 15 19:09:39 2007
@@ -238,13 +238,13 @@
 exception(request, response, e);
 } catch (IOException e) {
request.removeAttribute(Globals.JSP_FILE_ATTR);
-
container.getLogger().warn(sm.getString("standardWrapper.serviceException",
+
container.getLogger().error(sm.getString("standardWrapper.serviceException",
  wrapper.getName()), e);
 throwable = e;
 exception(request, response, e);
 } catch (UnavailableException e) {
request.removeAttribute(Globals.JSP_FILE_ATTR);
-
container.getLogger().warn(sm.getString("standardWrapper.serviceException",
+
container.getLogger().error(sm.getString("standardWrapper.serviceException",
  wrapper.getName()), e);
 //throwable = e;
 //exception(request, response, e);
@@ -425,13 +425,13 @@
 exception(request, response, e);
 } catch (IOException e) {
 request.removeAttribute(Globals.JSP_FILE_ATTR);
-
container.getLogger().warn(sm.getString("standardWrapper.serviceException",
+
container.getLogger().error(sm.getString("standardWrapper.serviceException",
  wrapper.getName()), e);
 throwable = e;
 exception(request, response, e);
 } catch (UnavailableException e) {
 request.removeAttribute(Globals.JSP_FILE_ATTR);
-
container.getLogger().warn(sm.getString("standardWrapper.serviceException",
+
container.getLogger().error(sm.getString("standardWrapper.serviceException",
  wrapper.getName()), e);
 // Do not save exception in 'throwable', because we
 // do not want to do exception(request, response, e) processing

Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?view=diff&rev=508295&r1=508294&r2=508295
==
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Thu Feb 15 19:09:39 2007
@@ -36,6 +36,10 @@
   
 Fix bad comparison for FORM processing, submitted by Anil Saldhana. 
(remm)
   
+  
+41608 Make log levels consistent when Servlet.service()
+throws an exception. (markt)
+  
 
   
   



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



DO NOT REPLY [Bug 41608] - The log level is different at same messages.

2007-02-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=41608


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 19:09 ---
Fixe din svn for 5.5.x and 6.0.x. Thanks for the report.

-- 
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: r508297 - /tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt

2007-02-15 Thread markt
Author: markt
Date: Thu Feb 15 19:13:33 2007
New Revision: 508297

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

Modified:
tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt

Modified: tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt
URL: 
http://svn.apache.org/viewvc/tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt?view=diff&rev=508297&r1=508296&r2=508297
==
--- tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt (original)
+++ tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt Thu Feb 15 19:13:33 
2007
@@ -1583,7 +1583,7 @@
  Fix struts JAR locking issue (fixes other locking issues too)
 
 [4.1.32] #37150
- Turn off directly listing by default
+ Turn off directory listing by default
 
 [4.1.32] CGI Servlet
  Align default settings in web.xml with default settings in servlet



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



Proposed new security pages

2007-02-15 Thread Mark Thomas
All,

I have started to put together some additional security pages based on
httpd. I have only added text for a couple vulnerabilities but the
plan is to include all those in the CVE list plus any I can find in
the archives.

The draft is currently on people.a.o at
http://people.apache.org/~markt/tomcat-security/security.html

My plan is to commit as is and then work through the CVE list. Once I
have all the CVE entries I'll remove the work in progress comment at
the top of the first page and then start searching the archives and
other public vulnerability databases.

Any comments before I commit these changes to the live site?

Mark

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



DO NOT REPLY [Bug 41629] New: - Installed MyFace-core-1.1.5 and Tomahaka1.1.3 Listenter doesnot work

2007-02-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=41629

   Summary: Installed MyFace-core-1.1.5 and Tomahaka1.1.3 Listenter
doesnot work
   Product: Tomcat 5
   Version: 5.5.12
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Servlets:WebDAV
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Hello I installed MyFace-core-1.1.5 and Tomahaka-1.1.3
 and run program:
samplejsf.jsp
<[EMAIL PROTECTED] contentType="text/html; charset=Shift_JIS" %>
<[EMAIL PROTECTED] uri="http://java.sun.com/jsf/core"; prefix="f" %>
<[EMAIL PROTECTED] uri="http://java.sun.com/jsf/html"; prefix="h" %>



jsfsample1


JSF sample











 

sampleJsfBean.java

package jp.tuyano.eclipsebook3;

import javax.faces.component.html.HtmlOutputText;
import javax.faces.component.html.HtmlSelectBooleanCheckbox;
import javax.faces.event.ValueChangeEvent;

/**
 * @author ‰¤
 *
 */
public class SampleJsfBean {
private HtmlOutputText text1;
private HtmlSelectBooleanCheckbox check1;

/**
 * @return check1 ‚ð–ß‚µ‚Ü‚·B
 */
public HtmlSelectBooleanCheckbox getCheck1() {
return check1;
}
/**
 * @param check1 Ý’è‚·‚é check1B
 */
public void setCheck1(HtmlSelectBooleanCheckbox check1) {
this.check1 = check1;
}
/**
/**
 * @return text1 ‚ð–ß‚µ‚Ü‚·B
 */
public HtmlOutputText getText1() {
return text1;
}
/**
 * @param text1 Ý’è‚·‚é text1B
 */
public void setText1(HtmlOutputText text1) {
this.text1 = text1;
}


public void check1_valueChanged(ValueChangeEvent valueChangeEvent){
text1.setValue("here");
Boolean neu =(Boolean)valueChangeEvent.getNewValue();
text1.setValue("check is " + neu.toString());
}
}

web.xml

http://java.sun.com/xml/ns/j2ee"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"; version="2.4">
JSFSample 

Faces Servlet 
javax.faces.webapp.FacesServlet 
1 


Faces Servlet 
*.jsf 



face-config.xml

 
http://java.sun.com/dtd/web-facesconfig_1_1.dtd";> 
http://java.sun.com/JSF/Configuration";>

SampleJsfBean 
jp.tuyano.eclipsebook3.SampleJsfBean 
session 



When it was runed the Listener does not work
below information appeared in conslue:

2007/02/16 14:09:53 org.apache.catalina.startup.HostConfig deployWAR
î•ñ: WebƒAƒvƒŠƒP[ƒVƒ‡ƒ“ƒA[ƒJƒCƒu sampleJSF.war ‚ð”z”õ‚µ‚Ü‚·
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator 
feedStandardConfig
î•ñ: Reading standard config org/apache/myfaces/resource/standard-faces-
config.xml
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator 
feedClassloaderConfigurations
î•ñ: Reading config jar:file:/C:/Program%20Files/Apache%20Software%
20Foundation/Tomcat%205.5/webapps/sampleJSF/WEB-INF/lib/tomahawk-
1.1.3.jar!/META-INF/faces-config.xml
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator feedWebAppConfig
î•ñ: Reading config /WEB-INF/faces-config.xml
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : myfaces-api in version : 1.1.5 from path : 
file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%
205.5/webapps/sampleJSF/WEB-INF/lib/myfaces-api-1.1.5.jar
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : myfaces-impl in version : 1.1.5 from path : 
file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%
205.5/webapps/sampleJSF/WEB-INF/lib/myfaces-impl-1.1.5.jar
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: MyFaces-package : tomahawk-sandbox not found.
2007/02/16 14:10:03 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : tomahawk in version : 1.1.3 from path : 
file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%
205.5/webapps/sampleJSF/WEB-INF/lib/tomahawk-1.1.3.jar
2007/02/16 14:10:04 org.apache.myfaces.shared_impl.util.LocaleUt

Re: Proposed new security pages

2007-02-15 Thread Henri Gomez

Good idea.

+1


2007/2/16, Mark Thomas <[EMAIL PROTECTED]>:
All,

I have started to put together some additional security pages based on
httpd. I have only added text for a couple vulnerabilities but the
plan is to include all those in the CVE list plus any I can find in
the archives.

The draft is currently on people.a.o at
http://people.apache.org/~markt/tomcat-security/security.html

My plan is to commit as is and then work through the CVE list. Once I
have all the CVE entries I'll remove the work in progress comment at
the top of the first page and then start searching the archives and
other public vulnerability databases.

Any comments before I commit these changes to the live site?

Mark

-
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 41629] - Installed MyFace-core-1.1.5 and Tomahaka1.1.3 Listenter doesnot work

2007-02-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=41629





--- Additional Comments From [EMAIL PROTECTED]  2007-02-15 23:34 ---
Hello

I added tomahawk-sandbox-SNAPSHOT-1.1.5.jar but when I run tomcat
bellow error appeared:

2007/02/16 16:32:28 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
î•ñ: The Apache Portable Runtime which allows optimal performance in 
production environments was not found on the java.library.path: C:\Program 
Files\Java\jre1.5.0_05
\bin;.;C:\WINNT\system32;C:\WINNT;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32
\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program 
Files\java\jdk1.5.0_05bin;
2007/02/16 16:32:29 org.apache.coyote.http11.Http11BaseProtocol init
î•ñ: Coyote HTTP/1.1‚ð http-8080 ‚ŏ‰Šú‰»‚µ‚Ü‚·
2007/02/16 16:32:29 org.apache.catalina.startup.Catalina load
î•ñ: Initialization processed in 4957 ms
2007/02/16 16:32:30 org.apache.catalina.core.StandardService start
î•ñ: ƒT[ƒrƒX Catalina ‚ð‹N“®‚µ‚Ü‚·
2007/02/16 16:32:30 org.apache.catalina.core.StandardEngine start
î•ñ: Starting Servlet Engine: Apache Tomcat/5.5.12
2007/02/16 16:32:30 org.apache.catalina.core.StandardHost start
î•ñ: XMLŒŸØ‚Í–³Œø‚Å‚·
2007/02/16 16:32:34 org.apache.catalina.startup.HostConfig deployWAR
î•ñ: WebƒAƒvƒŠƒP[ƒVƒ‡ƒ“ƒA[ƒJƒCƒu sampleJSF.war ‚ð”z”õ‚µ‚Ü‚·
2007/02/16 16:32:35 org.apache.myfaces.config.FacesConfigurator 
feedStandardConfig
î•ñ: Reading standard config org/apache/myfaces/resource/standard-faces-
config.xml
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator 
feedClassloaderConfigurations
î•ñ: Reading config jar:file:/C:/Program%20Files/Apache%20Software%
20Foundation/Tomcat%205.5/webapps/sampleJSF/WEB-INF/lib/tomahawk-
1.1.3.jar!/META-INF/faces-config.xml
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator 
feedClassloaderConfigurations
î•ñ: Reading config jar:file:/C:/Program%20Files/Apache%20Software%
20Foundation/Tomcat%205.5/webapps/sampleJSF/WEB-INF/lib/tomahawk-sandbox-1.1.5-
SNAPSHOT.jar!/META-INF/faces-config.xml
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator feedWebAppConfig
î•ñ: Reading config /WEB-INF/faces-config.xml
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : myfaces-api in version : 1.1.5 from path : 
file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%
205.5/webapps/sampleJSF/WEB-INF/lib/myfaces-api-1.1.5.jar
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : myfaces-impl in version : 1.1.5 from path : 
file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%
205.5/webapps/sampleJSF/WEB-INF/lib/myfaces-impl-1.1.5.jar
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : tomahawk-sandbox in version : 1.1.5-
SNAPSHOT from path : file:/C:/Program%20Files/Apache%20Software%
20Foundation/Tomcat%205.5/webapps/sampleJSF/WEB-INF/lib/tomahawk-sandbox-1.1.5-
SNAPSHOT.jar
2007/02/16 16:32:36 org.apache.myfaces.config.FacesConfigurator logMetaInf
î•ñ: Starting up MyFaces-package : tomahawk in version : 1.1.3 from path : 
file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%
205.5/webapps/sampleJSF/WEB-INF/lib/tomahawk-1.1.3.jar
2007/02/16 16:32:37 org.apache.myfaces.shared_impl.util.LocaleUtils toLocale
Œx: Locale name in faces-config.xml null or empty, setting locale to default 
locale : ja_JP
2007/02/16 16:32:38 org.apache.catalina.core.StandardContext listenerStart
’v–½“I: ƒNƒ‰ƒX org.apache.myfaces.webapp.StartupServletContextListener 
‚ÌƒŠƒXƒiƒCƒ“ƒX
ƒ^ƒ“ƒX‚ɃRƒ“ƒeƒLƒXƒg‰Šú‰»ƒCƒxƒ“ƒg‚𑗐M’†‚Ì—áŠO‚Å‚·
java.lang.NoClassDefFoundError: org/apache/myfaces/custom/dojo/DojoWidget
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at org.apache.catalina.loader.WebappClassLoader.findClassInternal
(WebappClassLoader.java:1650)
at org.apache.catalina.loader.WebappClassLoader.findClass
(WebappClassLoader.java:856)
at org.apache.catalina.loader.WebappClassLoader.loadClass
(WebappClassLoader.java:1305)
at org.apache.catalina.loader.WebappClassLoader.loadClass
(WebappClassLoader.java:1187)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at org.apache.myfaces.shared_impl.util.ClassUtils.classForName
(ClassUtils.java:134)
at org.apache.myfaces.shared_impl.util.ClassUtils.simpleClassForName
(ClassUtils.java:160)
at org.apache.m