Re: Comet explicit event close

2010-02-09 Thread Stephen Byrne
quest and > response are to be served using comet asyncronously on the same socket > connection. > > So i have a single socket client which wants to send http request again and > again (pipeline) and waits for a asyn response from the comet server. > trying a POC for the same.

Re: Comet Client Example

2010-02-08 Thread Stephen Byrne
} if ( out != null ) { try { out.close(); } catch ( IOException e ) { } } if ( socket != null ) { try { socket.close(); } catch ( IOException e ) { } } } } -- Stephen Byrne step...@lincware.com (585) 286-5817 - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Configuring two connectors and COMET Read event

2010-02-04 Thread Stephen Byrne
d a header "Transfer-Encoding: chunked", and send CRLF and flush your stream between chunks. *snip* > Thanks, > Animesh. -- Stephen Byrne step...@lincware.com (585) 286-5817 - To unsubscribe, e-m

Re: CometProcessor proxied through Apache httpd

2010-01-27 Thread Stephen Byrne
httpd Robin Wilson wrote: Have you tried using mod_proxy_ajp? ProxyPass /some/path ajp://tomcat.host.domain:8009/some/other/path Yes, I did try this, and got the same results as using RewriteRule - a 405 error. -- Robin D. Wilson Director of Web Development KingsIsle Entertainment, Inc. C

Re: CometProcessor proxied through Apache httpd

2010-01-27 Thread Stephen Byrne
: 512-426-3929 DESK: 512-623-5913 www.KingsIsle.com -Original Message- From: Stephen Byrne [mailto:step...@lincware.com] Sent: Wednesday, January 27, 2010 9:27 AM To: users@tomcat.apache.org Subject: CometProcessor proxied through Apache httpd Is there a way to get CometProcessor to work

CometProcessor proxied through Apache httpd

2010-01-27 Thread Stephen Byrne
Is there a way to get CometProcessor to work when proxying through Apache httpd? Here is what I have tried: I have an HttpServlet implementing CometProcessor. When I have a Tomcat connector like this: and I connect to it directly, everything works wonderfully - I get CometEvent.EventType.RE