Re: AW: WebSocket asynchronous reads

2015-08-26 Thread Mark Thomas
On 26/08/2015 12:50, Steffen Heil (Mailinglisten) wrote: > Hi > > >>> Is there a way to tell tomcat to stop receiving data for a certain >>> websocket? >>> (Not to close it, but not to read from inputstream for some time.) > > >> Sorry, no. >> The best you can do is a no-op branch in the messa

Re: Problems with tomcat-connectors-1.2.41 on 32bit linux

2015-08-26 Thread Rainer Jung
Am 26.08.2015 um 08:00 schrieb Falco Schwarz: On Tue, Aug 25, 2015 at 5:13 PM, Rainer Jung wrote: Am 25.08.2015 um 14:58 schrieb Falco Schwarz: If I try to startup httpd though the following error occurs: httpd: Syntax error on line 88 of /opt/apache/conf/alles/httpd.conf: Cannot load /opt/

AW: WebSocket asynchronous reads

2015-08-26 Thread Steffen Heil (Mailinglisten)
Hi > >Is there a way to tell tomcat to stop receiving data for a certain > >websocket? > >(Not to close it, but not to read from inputstream for some time.) > Sorry, no. > The best you can do is a no-op branch in the message handler. Which means I have to either buffer all incoming messages

Re: WebSocket asynchronous reads

2015-08-26 Thread Mark Thomas
On 26 August 2015 10:34:24 GMT-04:00, "Steffen Heil (Mailinglisten)" wrote: >Hi > >Is there a way to tell tomcat to stop receiving data for a certain >websocket? >(Not to close it, but not to read from inputstream for some time.) > >Regards, > Steffen Sorry, no. The best you can do is a no-op

RE: [ANN] Apache Tomcat 7.0.64 released

2015-08-26 Thread RAY, DAVID
Just FYI: I'm getting invalid signature on Apache-tomcat-7.0.64.tar.gz when I download from http://apache.mirrors.hoobly.com/ Signed with unknown certificate 0x208B0AB1D63011C7. The signature is bad. Sooo, tried again and downloaded from http://www.us.apache.org/dist/ Valid signature this ti

WebSocket asynchronous reads

2015-08-26 Thread Steffen Heil (Mailinglisten)
Hi Is there a way to tell tomcat to stop receiving data for a certain websocket? (Not to close it, but not to read from inputstream for some time.) Regards, Steffen smime.p7s Description: S/MIME cryptographic signature

Re: Tomcat 7 - Organizing web applications into sub directories

2015-08-26 Thread André Warnier
On 26.08.2015 06:06, Srikanth Challa wrote: I am trying to organize my applications (multiple) into a specific hierarchy under the webapps folder. Something like this - webapps dev app1 app2 test app1 app3 When deploying (without WAR), I am

RE: Tomcat 8.0.23, Apache Commons 2.2: Object pool shared across Tomcat servers/clusters?

2015-08-26 Thread Alten, Jessica-Aileen
> Currently, we have multiple Tomcat nodes running on a single or on > different physical machines with each having its own object pool > (consider we have a pool of java String object but not connection > pool) i.e., an object pool per node. The requirement is to share this > pool of objects acros

Re: Tomcat 8.0.23, Apache Commons 2.2: Object pool shared across Tomcat servers/clusters?

2015-08-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Prarthana, On 8/26/15 6:36 AM, Prarthana Agwania wrote: > Currently, we have multiple Tomcat nodes running on a single or on > different physical machines with each having its own object pool > (consider we have a pool of java String object but no

[ANN] Apache Tomcat 7.0.64 released

2015-08-26 Thread Violeta Georgieva
The Apache Tomcat team announces the immediate availability of Apache Tomcat 7.0.64. Apache Tomcat is an open source software implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. This release contains a number of bug fixes and improvement

Re: Exception using Async Servlet

2015-08-26 Thread Sean Dawson
On Wed, Aug 26, 2015 at 8:13 AM, Steffen Heil (Mailinglisten) < li...@steffen-heil.de> wrote: > Hi > > > Doing a lot of additional testing, I found the reason for the exception. > In the "WriteListener.onError(Throwable)" handler, we released all our > resources using a central function that inclu

AW: Exception using Async Servlet

2015-08-26 Thread Steffen Heil (Mailinglisten)
Hi Doing a lot of additional testing, I found the reason for the exception. In the "WriteListener.onError(Throwable)" handler, we released all our resources using a central function that included calling "context.complete()". It seems like tomcat does not like that call. However there are only

Re: Tomcat 8.0.23, Apache Commons 2.2: Object pool shared across Tomcat servers/clusters?

2015-08-26 Thread André Warnier
On 26.08.2015 12:36, Prarthana Agwania wrote: Chuck, Apologies for the confusion. Let me rephrase it, Currently, we have multiple Tomcat nodes running on a single or on different physical machines with each having its own object pool (consider we have a pool of java String object but not connec

Re: Tomcat 8.0.23, Apache Commons 2.2: Object pool shared across Tomcat servers/clusters?

2015-08-26 Thread Prarthana Agwania
Chuck, Apologies for the confusion. Let me rephrase it, Currently, we have multiple Tomcat nodes running on a single or on different physical machines with each having its own object pool (consider we have a pool of java String object but not connection pool) i.e., an object pool per node. The re

AW: Exception using Async Servlet

2015-08-26 Thread Steffen Heil (Mailinglisten)
Hi > Make sure you are using the latest 8.0.26 release. There have been some fixes > around async dispatch. If you still see the issue then > we'll need a test case (as simple as possible) that reproduces the issue for > us to investigate. I just upgraded to 8.0.26. But I see the same exceptio

RE: [ANN] Apache Tomcat Connectors 1.2.41 released

2015-08-26 Thread Alten, Jessica-Aileen
> @Jessica: which CPU architecture are you using: x86 (32 Bit), x64 (64 > Bits) or even Itanium 64? Which OS version do you have? If you are > willing to test, I can provide an example binary from which we might > learn, how well it works and whether that type of build is suitable for > others as w

Re: Tomcat 7 - Organizing web applications into sub directories

2015-08-26 Thread Mark Thomas
On 26 August 2015 05:06:08 BST, Srikanth Challa wrote: >I am trying to organize my applications (multiple) into a specific >hierarchy under the webapps folder. >Something like this - >webapps > dev > app1 > app2 > test > app1 > app3 > >When deploying (w

Re: AW: Asynchronous writes (Servlet and WebSocket)

2015-08-26 Thread Mark Thomas
On 26 August 2015 08:30:38 BST, "Steffen Heil (Mailinglisten)" wrote: >> No. It is too invasive to back port to the stable 8.0.x and it also >requires removing support for BIO and comet which we don't want to >> do in 8.0.x. > >Will this be rather a 8.1.x (mid term) or 9.0.x (long term) change?

AW: AW: Asynchronous writes (Servlet and WebSocket)

2015-08-26 Thread Steffen Heil (Mailinglisten)
Hi > The equivalent code for NIO is in > org.apache.coyote.http11.InternalNioOutputBuffer Thanks for the reference. I took a short look at it. As soon as I have a little time left, I will analyze it in more depth, as I am very interested in NIO... For now the assertion that write are indeed asy