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 s

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

2007-12-14 Thread John C. Turnbull
he applet or is there a more direct way to invoke the applet methods directly? Thanks, -JCT From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nathan Nobbe Sent: Saturday, 15 December 2007 11:10 To: General Discussion for the Resin application server Subject: Re: [Resin-interes

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 wo

[Resin-interest] Resin, Comet & applets - anyone?

2007-12-14 Thread John C. Turnbull
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 work). Thanks, -JCT _

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-04 Thread Robbie Varga
requests actively processed or responded to require a thread. Best regards, Robert From: [EMAIL PROTECTED] on behalf of Alan Wright Sent: Thu 10/4/2007 4:20 PM To: General Discussion for the Resin application server Subject: Re: [Resin-interest] Resin Comet What

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 At

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-01 Thread Scott Ferguson
On Oct 1, 2007, at 11:12 AM, Robbie Varga wrote: > Hi Scott, > > I would have a few questions regarding this implementation: > > 1. Are Filters applied before the service/resume calls are >invoked? Only on the initial service, currently. The plan would be to add a CometFilter interface with

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 sta

[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 model