AW: Re: HELP Wanted

2006-06-14 Thread fray
+2 ;)

>Tom Miller wrote:
>> If none of you volunteer I will have to post my need on the 
>> list and keep bother you all until I get some solution (-: 
>> (-:
>
>Or until I or one of the other list owners get fed up with your spam
>and unsubscribe you. "I'll keep hassling you until you help me" isn't
>what open source is all about.
>
>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]



SSL Connector

2006-06-14 Thread Raja Shaker Garlapati

   My application is using embedded tomcat 5.0.28 and jdk 1.4 version.
I am in process of migrating to embedded tomcat 5.5.17 and jdk 1.5 version.
I have made some code changes to setup the application. All the context
paths are set. I am able to access the default ROOT files, the /manager
files and other contexts as well from the browser.
In the browser when I type the URL starting with http://localhost:8080/..
(My application context) I am able to debug the request in the Controller
servlet and when i am redirecting it to https://..:8443/ (My application
context) from the Controller servlet the browser shows "The page cannot be
displayed" in IE. Is their any thing wrong with the below code. I have
attached only a part of code that I thought was wrong in setting SSL
configuration.

   // Assemble and install a default HTTP connector
   Connector cConnector =null;
   Connector cConnectorSecure = null;
   InetAddress address = null;
   try {
   cConnector = new Connector();
   cConnector.setSecure(false);
   cConnector.setPort(httpPort); // 8080
   address=InetAddress.getLocalHost();


//cConnector=(Connector)embedded.createConnector((
java.net.InetAddress)null,
httpPort, false);
//commented the above line as createConnector is broken.
   cConnector.setRedirectPort(httpsPort);// 8443
   cConnector.setEnableLookups(true);
   cConnector.setProperty("address",address.toString());
   cConnector.setProperty("minSpareThreads","25");
   cConnector.setProperty("maxSpareThreads","75");
   cConnector.setProperty("acceptCount","100");
   cConnector.setProperty("connectionTimeout","2");
   cConnector.setProperty("disableUploadTimeout","true");

   cConnectorSecure = new Connector();
   cConnectorSecure.setScheme(secureUrl); // https
   cConnectorSecure.setPort(httpsPort); //8443
   cConnectorSecure.setSecure(true);
   cConnectorSecure.setEnableLookups(false);

  cConnectorSecure.setProperty("address",address.toString());

   cConnectorSecure.setProperty("minSpareThreads","25");
   cConnectorSecure.setProperty("maxSpareThreads","75");
   cConnectorSecure.setProperty ("acceptCount","100");
   cConnectorSecure.setProperty("disableUploadTimeout","true");
   cConnectorSecure.setProperty("keystoreFile",keystoreFile);
//.keystore file
   cConnectorSecure.setProperty("keystorePass",keystorePass);
//keystore password
   cConnectorSecure.setProperty("clientAuth",clientAuth); //false
   cConnectorSecure.setProperty ("sslProtocol",sslProtocolStr);
//TLS

   } catch (Exception exp) {
   exp.printStackTrace();
   }

   embedded.addConnector(cConnector);
   embedded.addConnector(cConnectorSecure);
try{
embedded.start();
}catch(Exception e){}

Thanks & Regards,
Raj.


[mod_jk] Documentation

2006-06-14 Thread gaston . azerty


Hi,

I'm working on a J2EE server (JOnAS) using Tomcat as web
container. I'm trying to add some mechanisms to allow the updating of
an application. The aim is to preserve HA (Hight AVaibility) by not
stopping completely the application.
So, I want to understand the code of mod_jk (the connector between
Apache, wich is he front end, and Tomcat) . I've already generated the
documentation (scandoc.pl : javadoc-like) and read the Howto on the web about
mod_jk. But it is not quite sufficient.

I'm looking for UML diagrams and sequence diagrams.

About mod_jk.c, my file is quit huge (2757 lines wc -l mod_jk.c) and there is
not a lot of comments so I've some issues to understand it, is there any others
documentations?


Regards,

Thomas

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



Re: [VOTE] Time for 4.1.32?

2006-06-14 Thread Peter Rossbach

[x ] +1 I am in favour of a 4.1.32-beta release

Great job :-)

peter



Am 10.06.2006 um 23:53 schrieb Mark Thomas:


[ ] +1 I am in favour of a 4.1.32-beta release




Re: AW: Re: HELP Wanted

2006-06-14 Thread Tom Miller
I was just kidding and wanted to make the matter light 
hearted.  Everyone time is important, I feed guilty by 
taking but not giving.  So want to point out that you might 
as well get some good dinner and movie out of me for 
answering some of my questions.  

Thanks,

Tom

 Original message 
>Date: Wed, 14 Jun 2006 09:39:28 +0200
>From: [EMAIL PROTECTED]  
>Subject: AW: Re: HELP Wanted  
>To: 
>
>+2 ;)
>
>>Tom Miller wrote:
>>> If none of you volunteer I will have to post my need on 
the 
>>> list and keep bother you all until I get some solution (-
: 
>>> (-:
>>
>>Or until I or one of the other list owners get fed up with 
your spam
>>and unsubscribe you. "I'll keep hassling you until you 
help me" isn't
>>what open source is all about.
>>
>>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]
>

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



Re: unsubscribe trouble

2006-06-14 Thread infoenglish
Dear Reader,
I am currently unable to find your address on our list.
You may have already deleted it on your own.
If you continue to receive mails, please let me know of other old emails
that could be on our lists.
Sincerely,
Karna Swanson


 how do I unsubscribe ? Im geeting all these emails that I didnt sign up
> for
> . I already tried unsubscribe email about 10 times
>
>
> Please help
>
> miji
>
>
>
> -
> 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 39813] New: - JMX proxy servlet newline escaping is incorrect

2006-06-14 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=39813

   Summary: JMX proxy servlet newline escaping is incorrect
   Product: Tomcat 5
   Version: 5.5.17
  Platform: All
OS/Version: other
Status: NEW
  Severity: trivial
  Priority: P4
 Component: Webapps:Manager
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


JMXProxyServlet.java at revision 411724.

Using MBean qry operation, if an attribute returns a String containing a
newline, the character before the newline is removed by the escape method (uses
idx-1 instead of idx on line 204).
e.g. PermGenStatus: Perm Gen : 19.93% (26739168/134217728\n

Furthermore, the end int is not checked to be > 0 in the appendHead method - so
anything starting with a newline would end up being a substring(0,-1) call (line
223) - resulting in an StringIndexOutOfBoundsException("String index out of
range: -1") which would then drop into "} catch (Exception e) {} // Ignore" in
listBeans causing any further attributes to not be printed out. 

Finally, the get operation does not use the escape method in getAttribute (line
114) so will print newlines. Guess this contravenes the JMX spec 1.2 - whose
changes log says "...the newline character ('\n') is forbidden everywhere. This
rule is new with 1.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: code structure and api docs for Tomcat 5.5

2006-06-14 Thread Adrian M

 Thanks for the pointers!
 
 I have found the (Java) sources for the org.apache.jk.* packages in the 
"connectors" project that I checked-out, but it seems that the Eclipse project 
for "connectors" does not include these sources in the source path ( - the info 
in the .classpath file). For instance, org.apache.jk.common is listed in the 
API docs, and the sources are in the "connectors" project, but not in the 
source path of the Eclipse project for connectors.

 There are a number of other jk packages that are not documented on the 
web-site, and also not included in the source path, like org.apache.jk.ant.*.
 Have these packages been excluded on purpose and is there a way to find out 
what should be included for a full built and what it shouldn't? (I mean, other 
way than checking all the ant files :) )
 
 Thanks once again.
 Adrian
 
 
Mark Thomas <[EMAIL PROTECTED]> wrote: Adrian M wrote:
>  However, I'm having some problems understanding the structure of the 
> whole project because the apparent inconsistency between the 
> documentation (Tomcat API for v. 5.5) and the source code in the (5) Tomcat 
> projects. For instance, I cannot locate the org.apache.jk.* packages in the 
> sources of any of these projects, although I would expect them to be in 
> the connector project, or maybe in the catalina/container project. 

It is in:
http://svn.apache.org/repos/asf/tomcat/connectors/trunk/jk/java/org/apache/jk/

> Also, the Tomcat API docs seem to cover packages for both the catalina and 
> connector projects, but misses a number of other packages (webapps, 
> juli, etc).

Yep. Not sure if this is deliberate for the webapps. Probably an
oversight for juli.

>  I would appreciate very much if you could give me some  more details 
> about the structure of the project, and how this matches the API docs 
> for Tomcat 5.5.

The best we have is http://tomcat.apache.org/svn.html
If you want to contribute patches to the documentation, that woudl be
great.

Mark

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



 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Movement on asynchronous response model?

2006-06-14 Thread Chris Wall
Hey there.  Has there been any further movement on
designing/implementing support for an asynchronous response model in
Tomcat?  Solutions are sprouting up in other servlet containers and web
frameworks.  Has anyone evaluated these solutions?  With Ajax and the
increased focus on web applications, asynchronous response is fastly
becoming a necessity.
 
Thanks.
 
-Chris
 
___
Notice:  This email message, together with any attachments, may contain
information  of  BEA Systems,  Inc.,  its subsidiaries  and  affiliated
entities,  that may be confidential,  proprietary,  copyrighted  and/or
legally privileged, and is intended solely for the use of the individual
or entity named in this message. If you are not the intended recipient,
and have received this message in error, please immediately return this
by email and then delete it.


Configure SSL

2006-06-14 Thread ngolehung84

Hi, 
I have configured my web site to use SSL successfully. But, the client can
access my website from 2 URL with 2 protocol Http and Https
For example: The client can access my website with:
http://localhost:8080/mysite/
https://localhost:8443/mysite/
 
Now, I want to configure Tomcat to allow the client access my website from
one URL only:
https://localhost:8443/mysite/
And if client uses this URL: http://localhost:8080/mysite/  the exception
will be returned to the client.

How can I do that?
Thanks in advance,
Hung.

--
View this message in context: 
http://www.nabble.com/Configure-SSL-t1787429.html#a4868951
Sent from the Tomcat - Dev forum at Nabble.com.


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



svn commit: r414323 - in /tomcat/container/tc5.5.x/modules/groupcom: src/share/org/apache/catalina/tribes/group/interceptors/ src/share/org/apache/catalina/tribes/transport/ src/share/org/apache/catal

2006-06-14 Thread fhanik
Author: fhanik
Date: Wed Jun 14 10:47:00 2006
New Revision: 414323

URL: http://svn.apache.org/viewvc?rev=414323&view=rev
Log:
Further enhancements, looking pretty good

Modified:

tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java

tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.java

tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/transport/ReceiverBase.java

tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/transport/bio/BioReceiver.java

tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/transport/nio/NioReceiver.java

tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java

Modified: 
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java?rev=414323&r1=414322&r2=414323&view=diff
==
--- 
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java
 (original)
+++ 
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/group/interceptors/NonBlockingCoordinator.java
 Wed Jun 14 10:47:00 2006
@@ -192,7 +192,14 @@
 return; //the only member, no need for an election
 }
 if ( suggestedviewId != null ) {
-fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_ELECT_ABANDONED,this,"Election 
abandoned, election running"));
+
+if ( view != null && 
Arrays.diff(view,suggestedView,local).length == 0 &&  
Arrays.diff(suggestedView,view,local).length == 0) {
+suggestedviewId = null;
+suggestedView = null;
+fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_ELECT_ABANDONED,this,"Election 
abandoned, running election matches view"));
+} else {
+fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_ELECT_ABANDONED,this,"Election 
abandoned, election running"));
+}
 return; //election already running, I'm not allowed to have 
two of them
 }
 if ( view != null && Arrays.diff(view,membership,local).length == 
0 &&  Arrays.diff(membership,view,local).length == 0) {
@@ -218,10 +225,11 @@
 }
 if ( suggestedviewId == null && (!coordMsgReceived.get())) {
 //no message arrived, send the coord msg
-fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_WAIT_FOR_MSG,this,"Election, waiting 
timed out."));
-startElection(true);
+//fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_WAIT_FOR_MSG,this,"Election, waiting 
timed out."));
+//startElection(true);
+fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_ELECT_ABANDONED,this,"Election 
abandoned, waiting timed out."));
 } else {
-fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_ELECT_ABANDONED,this,"Election 
abandoned"));
+fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_ELECT_ABANDONED,this,"Election 
abandoned, received a message"));
 }
 }//end if
 
@@ -307,7 +315,6 @@
 }
 
 protected void processCoordMessage(CoordinationMessage msg, Member sender) 
throws ChannelException {
-//synchronized (electionMutex) {
 coordMsgReceived.set(true);
 msg.timestamp = System.currentTimeMillis();
 Membership merged = mergeOnArrive(msg,sender);
@@ -440,7 +447,6 @@
 //  OVERRIDDEN METHODS FROM CHANNEL INTERCEPTOR BASE
 
//
 public void start(int svc) throws ChannelException {
-//synchronized (electionMutex) {
 if (membership == null) setupMembership();
 if (started)return;
 fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_START, this, "Before start"));
@@ -449,7 +455,6 @@
 if (view == null) view = new Membership( 
(MemberImpl)super.getLocalMember(true), AbsoluteOrder.comp, true);
 fireInterceptorEvent(new 
CoordinationEvent(CoordinationEvent.EVT_START, this, "After start"));
 startElection(false);
-//}
 }
 
 public void 

svn commit: r414324 - /tomcat/container/tc5.5.x/modules/groupcom/VERSION

2006-06-14 Thread fhanik
Author: fhanik
Date: Wed Jun 14 10:49:27 2006
New Revision: 414324

URL: http://svn.apache.org/viewvc?rev=414324&view=rev
Log:
Updated version number

Modified:
tomcat/container/tc5.5.x/modules/groupcom/VERSION

Modified: tomcat/container/tc5.5.x/modules/groupcom/VERSION
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/groupcom/VERSION?rev=414324&r1=414323&r2=414324&view=diff
==
--- tomcat/container/tc5.5.x/modules/groupcom/VERSION (original)
+++ tomcat/container/tc5.5.x/modules/groupcom/VERSION Wed Jun 14 10:49:27 2006
@@ -1,3 +1,5 @@
+0.9.2.7
+  - finished coordinator
 0.9.2.6
   - first version of the NonBlockingCoordinator implemented
   - org.apache.catalina.tribes.demos.CoordinationDemo implemented



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



Re: [mod_jk] Documentation

2006-06-14 Thread David Rees

On 6/14/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

I'm working on a J2EE server (JOnAS) using Tomcat as web
container. I'm trying to add some mechanisms to allow the updating of
an application. The aim is to preserve HA (Hight AVaibility) by not
stopping completely the application.


You'll want to read the Tomcat cluster docs as well as the Connector
docs. That should give you an idea of how to setup multiple Tomcat
instances which automatically fail over when load balanced by
Apache/mod_jk.

BTW, you posted to the wrong list, this is a user-related question
which should be posted there so if you have any followup questions
post them there instead of the dev list.

-Dave

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



DO NOT REPLY [Bug 39637] - AJP13 connector does not handle chain of SSL client certificate

2006-06-14 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=39637





--- Additional Comments From [EMAIL PROTECTED]  2006-06-14 20:49 ---
The 8k limit for the header information is really a problem. The mod_jk patch
for Bug #39636 addresses this problem by introducing a JKOption
(ForwardSSLCertChain) which allows you to enable forwarding of the SSL Client
Cert Chain.

Additionally, if you only need client authentication for a certain virtual host
/ directory, only use ExportCertData (no StdEnvVars and the like).



-- 
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: Configure SSL

2006-06-14 Thread Mark Thomas
This question belongs on the users list. Please see
http://tomcat.apache.org/lists.html for more info.

Mark


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



DO NOT REPLY [Bug 39810] - Security flaw in security-constraint when request made by "\"

2006-06-14 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=39810


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2006-06-14 22:55 ---
First off, security issues should be reported privately rather than in public.
This allows the Tomcat team to release a fix so it is available once the issue
is made public.

Fortunately in this case there is no issue. I have tested this extensively and
cannot reproduce it. I can think of a range of things you may have done that
could have caused this behaviour.

If you have a have a test case (ideally a ready to run WAR) that demonstrates
this issue please contact the Tomcat team provately as described at
http://tomcat.apache.org/bugreport.html and we will investigate further.

-- 
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: [VOTE] Time for 4.1.32?

2006-06-14 Thread Mark Thomas
That's 2 +1's and a +0. Any committer care to chip in with another +1
so I can go ahead with the beta release?

Cheers,

Mark

Peter Rossbach wrote:
> [x ] +1 I am in favour of a 4.1.32-beta release
> 
> Great job :-)
> 
> peter


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



RE: [VOTE] Time for 4.1.32?

2006-06-14 Thread Bill Barker
+1 

> -Original Message-
> From: Mark Thomas [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, June 14, 2006 4:04 PM
> To: Tomcat Developers List
> Subject: Re: [VOTE] Time for 4.1.32?
> 
> That's 2 +1's and a +0. Any committer care to chip in with another +1
> so I can go ahead with the beta release?
> 
> Cheers,
> 
> Mark
> 
> Peter Rossbach wrote:
> > [x ] +1 I am in favour of a 4.1.32-beta release
> > 
> > Great job :-)
> > 
> > peter
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 



This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



Re: [VOTE] Time for 4.1.32?

2006-06-14 Thread Filip Hanik - Dev Lists

+1

Mark Thomas wrote:

That's 2 +1's and a +0. Any committer care to chip in with another +1
so I can go ahead with the beta release?

Cheers,

Mark

Peter Rossbach wrote:
  

[x ] +1 I am in favour of a 4.1.32-beta release

Great job :-)

peter




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


  



--


Filip Hanik

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



svn commit: r414438 - /tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java

2006-06-14 Thread fhanik
Author: fhanik
Date: Wed Jun 14 19:03:20 2006
New Revision: 414438

URL: http://svn.apache.org/viewvc?rev=414438&view=rev
Log:
Fixed startup

Modified:

tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java

Modified: 
tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java?rev=414438&r1=414437&r2=414438&view=diff
==
--- 
tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java
 (original)
+++ 
tomcat/container/tc5.5.x/modules/groupcom/test/java/org/apache/catalina/tribes/demos/CoordinationDemo.java
 Wed Jun 14 19:03:20 2006
@@ -31,6 +31,9 @@
  * Construct and show the application.
  */
 public CoordinationDemo() {
+}
+
+public void init() {
 reader = new BufferedReader(new InputStreamReader(System.in));
 status = new Status[CHANNEL_COUNT];
 }
@@ -176,17 +179,10 @@
 }
 }
 
-public static void main(String[] args) throws Exception {
-System.out.println("Usage:");
-System.out.println("\tjava 
org.apache.catalina.tribes.demos.CoordinationDemo -c channel-count(int) -t 
multi-thread(true|false) -s sleep-time(ms) -sc clear-screen(int) -p 
view_events_csv(1,2,5,7)");
-System.out.println("Example:");
-System.out.println("\tjava o.a.c.t.d.CoordinationDemo -> starts demo 
single threaded start/stop with 5 channels");
-System.out.println("\tjava o.a.c.t.d.CoordinationDemo -c 10 -> starts 
demo single threaded start/stop with 10 channels");
-System.out.println("\tjava o.a.c.t.d.CoordinationDemo -c 7 -t true -s 
1000 -sc 50-> starts demo multi threaded start/stop with 7 channels and 1 
second sleep time between events and 50 lines to clear screen");
-System.out.println("\tjava o.a.c.t.d.CoordinationDemo -t true -p 12 -> 
starts demo multi threaded start/stop with 5 channels and only prints the 
EVT_CONF_RX event");
-System.out.println();
+public static void run(String[] args,CoordinationDemo demo) throws 
Exception {
+usage();
 java.util.Arrays.fill(VIEW_EVENTS,true);
-
+
 for (int i=0; i starts demo 
single threaded start/stop with 5 channels");
+System.out.println("\tjava o.a.c.t.d.CoordinationDemo -c 10 -> starts 
demo single threaded start/stop with 10 channels");
+System.out.println("\tjava o.a.c.t.d.CoordinationDemo -c 7 -t true -s 
1000 -sc 50-> starts demo multi threaded start/stop with 7 channels and 1 
second sleep time between events and 50 lines to clear screen");
+System.out.println("\tjava o.a.c.t.d.CoordinationDemo -t true -p 12 -> 
starts demo multi threaded start/stop with 5 channels and only prints the 
EVT_CONF_RX event");
+System.out.println();
+}
+public static void main(String[] args) throws Exception {
+CoordinationDemo demo = new CoordinationDemo();
+run(args,demo);
 }
 
 public static String leftfill(String value, int length, String ch) {



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



DO NOT REPLY [Bug 29497] - Connection pool, redeployment

2006-06-14 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=29497





--- Additional Comments From [EMAIL PROTECTED]  2006-06-15 04:51 ---
Can you guys test setting this 

  removeAbandoned
  true


in the Resource tag as explained here 
http://tomcat.apache.org/tomcat-5.0-doc/jndi-datasource-examples-howto.html

Regards
Vicky

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