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.
}
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
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
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
: 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
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