Re: [Resin-interest] Resin, Comet applets - anyone?

2007-12-14 Thread Nathan Nobbe
On Dec 14, 2007 5:34 PM, John C. Turnbull [EMAIL PROTECTED] wrote: Has anyone tried using a combination of Resin, Comet and applets? I see examples using Comet with HTML-based technologies but is this also possible for plain old applets? I can't figure out how it would work (or IF it would

Re: [Resin-interest] Resin, Comet applets - anyone?

2007-12-14 Thread Nathan Nobbe
On Dec 15, 2007 12:34 AM, John C. Turnbull [EMAIL PROTECTED] wrote: What I don't understand is how the servlet maintains the connection to the applet and exactly how the methods in the applet are invoked from the servlet. im not very sure how this works either. if i were to guess; id say in

Re: [Resin-interest] Resin Comet

2007-10-04 Thread Scott Ferguson
I've updated the Comet API to make it more like the Servlet API and to avoid dependencies on Resin details. Details are at http://caucho.com/resin-javadoc/com/caucho/servlet/comet/package- summary.html The example has been updated at http://caucho.com/resin-3.1/examples/servlet-comet/

Re: [Resin-interest] Resin Comet

2007-10-04 Thread Alan Wright
What exactly is Comet? what problem does it solve? When would I use it? Alan Scott Ferguson wrote: I've updated the Comet API to make it more like the Servlet API and to avoid dependencies on Resin details. Details are at -- Alan Wright Athene Systems tel 0845 230 9803 Athene

Re: [Resin-interest] Resin Comet

2007-10-04 Thread Scott Ferguson
On Oct 4, 2007, at 8:20 AM, Alan Wright wrote: What exactly is Comet? what problem does it solve? When would I use it? Comet is for streaming responses from the server, as a replacement for polling. (Comet doesn't stand for anything, unfortunately. It's just a unique identifier.)

Re: [Resin-interest] Resin Comet

2007-10-01 Thread Robbie Varga
Hi Scott, I would have a few questions regarding this implementation: 1. Are Filters applied before the service/resume calls are invoked? If they are applied to both, then is it possible to specify if a filter is to be applied only to resume() or only to service()? 2. What is the

[Resin-interest] Resin Comet

2007-09-20 Thread Scott Ferguson
The 3.1.3 snapshot includes a new implementation of Comet for Resin servlets. There's a sketch of an example at http://caucho.com/resin-3.1/examples/servlet-comet/index.xtp Javadocs are at http://caucho.com/resin-javadoc/com/caucho/servlets/comet/package- summary.html The basic