Re: using cometd

2010-10-13 Thread Rodolfo Hansen
Yes, this message is safe to ignore. It is the bayeux implementation stating JSONCommented is deprecated. Later versions of push do not try to use it. On Tue, 2010-10-12 at 19:32 -0700, fachhoch wrote: > JSONCommented

using cometd

2010-10-12 Thread fachhoch
I get this message JSONCommented is deprecated null null I am using org.wicketstuff.push version 1.4.8, I get the above message sometimes , do not know when , please tell me is this any problem ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-cometd

Re: session timeout notification using cometd

2010-09-01 Thread jcgarciam
mples for java script notification when > session is about to timeoout ? > > -- > View message @ > http://apache-wicket.1842946.n4.nabble.com/session-timeout-notification-using-cometd-tp2403249p2403332.html > To unsubscribe from Apache Wicket, clic

Re: session timeout notification using cometd

2010-09-01 Thread fachhoch
I can do that, do you have any examples for java script notification when session is about to timeoout ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/session-timeout-notification-using-cometd-tp2403249p2403332.html Sent from the Wicket - User mailing list archive

Re: session timeout notification using cometd

2010-09-01 Thread jcgarciam
42946.n4.nabble.com/session-timeout-notification-using-cometd-tp2403249p2403249.html > To unsubscribe from Apache Wicket, click > here<http://apache-wicket.1842946.n4.nabble.com/template/TplServlet.jtp?tpl=unsubscribe_by_code&node=1842946&code=amNnYXJjaWFtQGdtYWlsLmNvbXwxODQyOTQ2fDEyNT

session timeout notification using cometd

2010-09-01 Thread fachhoch
I want to notify clients about their session timeout.If the user is idle and his session is about to expire I want to warn users about this , can I do this with wicket-cometd ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/session-timeout-notification-using

Re: using cometd with threads

2010-08-17 Thread jcgarciam
gt; View message @ > http://apache-wicket.1842946.n4.nabble.com/using-cometd-with-threads-tp2310323p2328511.html > To unsubscribe from Apache Wicket, click > here<http://apache-wicket.1842946.n4.nabble.com/template/NodeServlet.jtp?tpl=unsubscribe_by_code&node=1842946&c

Re: using cometd with threads

2010-08-17 Thread Rodolfo Hansen
You may use a servlet context listener... Get the spring applicationContext and add the Bayuex Service been to it when it context is initialized http://www.java-tips.org/java-ee-tips/java-servlet/how-to-work-with-servletcontextlistener.html On Tue, 2010-08-17 at 08:06 -0700, fachhoch wrote: >

Re: using cometd with threads

2010-08-17 Thread fachhoch
I wan to inject Bayeaux service in a pojo initialized by spring , please sugest me how can I get servlet context in a spring bean ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-cometd-with-threads-tp2310323p2328511.html Sent from the Wicket - User

Re: using cometd with threads

2010-08-03 Thread jcgarciam
[via Apache Wicket] < ml-node+2311905-1356455233-229...@n4.nabble.com > wrote: > If I do that I am using web api in service which is not good , so any other > way ? > > -- > View message @ > http://apache-wicket.1842946.n4.nabble.

Re: using cometd with threads

2010-08-03 Thread fachhoch
If I do that I am using web api in service which is not good , so any other way ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-cometd-with-threads-tp2310323p2311905.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: using cometd with threads

2010-08-02 Thread Rodolfo Hansen
You can get it from the ServletContext: getServletContext().getAttribute(BayeuxServer.ATTRIBUTE); On Mon, 2010-08-02 at 11:18 -0700, fachhoch wrote: > Please suggest me how to get Bayeux service in service layer , right now I > have in subclass of org.apache.wicket.protocol.http.Application

Re: using cometd with threads

2010-08-02 Thread fachhoch
Please suggest me how to get Bayeux service in service layer , right now I have in subclass of org.apache.wicket.protocol.http.Application -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-cometd-with-threads-tp2310323p2310715.html Sent from the Wicket

Re: using cometd with threads

2010-08-02 Thread Rodolfo Hansen
How are you getting the Bayeux service? It is alright to think of the Bayeux service as a messaging api, that jumps across your various layers (from the service to the javascript client). As long as you remember you can't trust the javascript clients (malicious users), you are fine. On Mon, 2010-

Re: using cometd with threads

2010-08-02 Thread fachhoch
.nabble.com/using-cometd-with-threads-tp2310323p2310404.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: using cometd with threads

2010-08-02 Thread Rodolfo Hansen
Yes, the code is designed to be thread safe. On Mon, 2010-08-02 at 07:15 -0700, fachhoch wrote: > I was looking into cometd , I tried the example it worked for me.I havea > new requirement , > I have to update a panel in my page if a job running seperately in a > thread has finished processi

using cometd with threads

2010-08-02 Thread fachhoch
take several days , when this user logs in back and if the job is completed I want to show the user that the job is completed, in my case a thread has to publish to a channel is this possible ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-cometd-with