Re: [Resin-interest] Comet param via hessian

2008-09-29 Thread Vic Cekvenich
OK, that did not work!!! To recap: I am trying to pass some value to hessian comet from action script.(ex: member id & string "room name"). Since from .as you can't pass a param to the hessian comet servlet (I wonder why?) and there is no BAM example for action script(and I do not know if BAM w

Re: [Resin-interest] Comet param via hessian

2008-09-29 Thread Vic Cekvenich
OK, that did not work!!! To recap: I am trying to pass some value to hessian comet from action script.(ex: member id & string "room name"). Since from .as you can't pass a param to the hessian comet servlet (I wonder why?) and there is no BAM example for action script(and I do not know if BAM w

Re: [Resin-interest] Comet param via hessian

2008-09-28 Thread Vic Cekvenich
That seems to work! Thank you. .V >>> >>> Try this: Create a bean that shared between the comet servlet and a >>> Hessian POJO/servlet within the same web-app. ___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mail

Re: [Resin-interest] Comet param via hessian

2008-09-13 Thread Vic Cekvenich
Thx Emil for helping me in a jam again!!! So how do I "ID" the user? Session? Do the 2 servlets(hessian regular and comet) share a session? So in a "regular hessian" I can pass and set "session set userID = "123" & roomId = "456". Then "comet hessian" comes in and gets those out of the session if

Re: [Resin-interest] Comet param via hessian

2008-09-13 Thread Vic Cekvenich
> Thx Emil for helping me in a jam again!!! > > So how do I "ID" the user? Session? Do the 2 servlets(hessian regular > and comet) share a session? > > So in a "regular hessian" I can pass and set "session set userID = "123" > & roomId = "456". > Then "comet hessian" comes in and gets those ou

Re: [Resin-interest] Comet param via hessian

2008-09-13 Thread Vic Cekvenich
Thx Emil for helping me in a jam again!!! So how do I "ID" the user? Session? Do the 2 servlets(hessian regular and comet) share a session? So in a "regular hessian" I can pass and set "session set userID = "123" & roomId = "456". Then "comet hessian" comes in and gets those out of the session

Re: [Resin-interest] Comet param via hessian

2008-09-12 Thread Emil Ong
On Thu, Sep 11, 2008 at 08:53:25PM -0700, Vic Cekvenich wrote: > I posted b4, repost as BAM won't be ready in .as and I need this now. > > There has to be a way to hack hessian to pass a param to the comet > servelet... hint? Try this: Create a bean that shared between the comet servlet and a H

[Resin-interest] Comet param via hessian

2008-09-11 Thread Vic Cekvenich
I posted b4, repost as BAM won't be ready in .as and I need this now. There has to be a way to hack hessian to pass a param to the comet servelet... hint? doing standard things, like this from Flex: _push= new HessianStreamingService("pushReg"); //servlet _push.responder=this; and this on serve