Tomcat and Bayeux for HTTP streaming

2009-10-09 Thread Markus Innerebner
Hi all, I would like to use TOMCAT together with Bayeux to develop a streaming application. My question: 1) is it possible with Bayeux to send in one and the same HTTP response several messages at different times back to the client? 2) where can I find additional informations about Tomcat

Comet question with Tomcat

2009-10-07 Thread Markus Innerebner
Hi all, I am using Tomcat6 together with Comet. I implemented as described in the article Advanced IO and Tomcat the servlet, message sender ... The main reason for using comet is that I would like to implement a kind of streaming, what means: I am launching from the client with a AJAX

Comet and mod_jk

2009-10-05 Thread Markus Innerebner
Hi all, I see that when using Mod JK (ver. 1.2.26-2) together with Comet I always get the message: 405 HTTP method POST is not supported by this URL. (My servlet engine is tomcat 6.0.14) I googled and found out that mod_jk has its own connector which does not support the comet event. Is there

Re: Comet and mod_jk

2009-10-05 Thread Markus Innerebner
Filip Hanik - Dev Lists wrote: There are only two connectors in Apache Tomcat that support Comet, APR HTTP and NIO HTTP connectors. This means, if you want Apache in front of it, you would use mod_proxy_http Many thanks for your suggestion.