Re: Multiple Comet Requests to the Same Server, from the Same Client

2012-01-18 Thread William Speirs
On Wed, Jan 18, 2012 at 2:00 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > > Quick update... I switched the code to using Servlet 3.0 and I can > > get streaming data from all three browsers on the same machine: > > Chrome, FireFox, and IE. > > A Tomcat upgrade probably helped a

Re: Multiple Comet Requests to the Same Server, from the Same Client

2012-01-18 Thread William Speirs
probably code around that. Thanks... Bill- On Wed, Jan 18, 2012 at 12:13 PM, William Speirs wrote: > Thanks for the quick responses, I'll respond to both at once below: > > On Wed, Jan 18, 2012 at 11:56 AM, André Warnier wrote: > > really a second, different browser ? or ano

Re: Multiple Comet Requests to the Same Server, from the Same Client

2012-01-18 Thread William Speirs
Thanks for the quick responses, I'll respond to both at once below: On Wed, Jan 18, 2012 at 11:56 AM, André Warnier wrote: > really a second, different browser ? or another window/tab from the same > browser ? > (if the second case, it may be re-using the same local IP:port (or just > the same e

Multiple Comet Requests to the Same Server, from the Same Client

2012-01-18 Thread William Speirs
I have a basic CometProcessor servlet implemented, and everything appears to work as expected, except for one small issue: I cannot make multiple requests from the same client to the same server. My servlet simply sends messages to the client as they come in (think of it as a one-sided chat, no PO