CometFilter getAuthType() returns null

2011-08-29 Thread Sudeep Pradhan
Hi, I am using Tomcat 6.0.33. I have a CometProcessor Servlet and CometFilter. I use curl as http client and send username/password with basic authentication. The curl trace shows that the authentication type is basic. I have HTTPS in place. I try to get the AuthType and Principal in CometFilte

RE: Tomocat 6.0.20 Comet END Event *NOT RAISED* when connection is terminated

2011-08-01 Thread Sudeep Pradhan
day, July 29, 2011 12:32 AM > To: Tomcat Users List > Subject: Re: Tomocat 6.0.20 Comet END Event *NOT RAISED* when connection is > terminated > > On 28/07/2011 20:42, Sudeep Pradhan wrote: >> Hi, >> >> I have a CometProcessor Servlet which is used for streaming system

RE: Tomocat 6.0.20 Comet END Event *NOT RAISED* when connection is terminated

2011-07-29 Thread Sudeep Pradhan
- From: Pid [mailto:p...@pidster.com] Sent: Friday, July 29, 2011 12:32 AM To: Tomcat Users List Subject: Re: Tomocat 6.0.20 Comet END Event *NOT RAISED* when connection is terminated On 28/07/2011 20:42, Sudeep Pradhan wrote: > Hi, > > I have a CometProcessor Servlet which is

Tomocat 6.0.20 Comet END Event *NOT RAISED* when connection is terminated

2011-07-28 Thread Sudeep Pradhan
Hi, I have a CometProcessor Servlet which is used for streaming system events to a http client. I have SSL enabled on the server. I use *curl* as the http client. I get streaming events on the console. But when I do a Ctrl-C on the console there no End event is raised and hence the connection

RE: Comet: How to send *Chunked* response

2011-07-25 Thread Sudeep Pradhan
t(eventString); writer.flush(); } Thanks, Sudeep -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Monday, July 25, 2011 12:37 PM To: Tomcat Users List Subject: Re: Comet: How to send *Chunked* response On 25/07/2011 19:23, Sudeep Pradhan wrote:

Comet: How to send *Chunked* response

2011-07-25 Thread Sudeep Pradhan
Hi, I am using CometProcessor to stream event notifications from server to client. The events are generated at random. I want to send the notification with Transfer Encoding as chunked so that I can use Apache's ChunkedInputStream to parse the output. I get the PrintWriter from the ServletRes

RE: Comet over HTTPS: END event recieved immeidately for the first few times

2011-07-13 Thread Sudeep Pradhan
sible that when you turn on SSL, you are using the regular BIO connector when you use SSL and Comet is not supported by that connector. best Filip On 7/11/2011 11:05 AM, Sudeep Pradhan wrote: > Hi Filip, > > I have tried the app with tomcat 6.0.32 and 7.0.16, and the result is the > same

RE: Comet over HTTPS: END event recieved immeidately for the first few times

2011-07-11 Thread Sudeep Pradhan
the first few times try the latest version of Tomcat 6, if that doesn't work, provide a test case so we can take a look at it On 7/8/2011 4:07 PM, Sudeep Pradhan wrote: > Any insights on this? > > -Original Message- > From: Sudeep Pradhan [mailto:pradh...@vmware.com]

RE: Comet over HTTPS: END event recieved immeidately for the first few times

2011-07-08 Thread Sudeep Pradhan
Any insights on this? -Original Message- From: Sudeep Pradhan [mailto:pradh...@vmware.com] Sent: Wednesday, June 29, 2011 4:54 PM To: users@tomcat.apache.org Subject: Comet over HTTPS: END event recieved immeidately for the first few times Hello, I am using Tomcat 6.0.20 on Ubuntu

Comet over HTTPS: END event recieved immeidately for the first few times

2011-06-29 Thread Sudeep Pradhan
Hello, I am using Tomcat 6.0.20 on Ubuntu 10.04 and have written a simple TomcatWeatherServlet as presented in http://www.ibm.com/developerworks/web/library/wa-cometjava/ I modified the servlet to stream weather feed to multiple curl clients. I am using curl 7.21.6 as my client. When I run c