Re: server push

2009-10-06 Thread James Perry
Depending when you have to roll this out, have you considered HTML 5's web
sockets? It will give you server push and more.

On Mon, Oct 5, 2009 at 8:08 AM, Md. Jahid Shohel  wrote:

> Hi,
>
> We need server push for one of our web application. Is there something
> that you can suggest? The requirement is, it should work on any server
> (Tomcat, jetty, jboss,). is there any wicket component that does
> this?
>
> I have heard about wicketstuff-push, but i also heard that it only works
> with jetty. any kind of suggestion is welcome.
>
> thanks in advance.
>
>
> //jahid
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: server push

2009-10-06 Thread freak182

Hello,

you check-out push-parent from wicketstuff. or you can check this out:

http://code.google.com/p/wicket-comet/

ii is a  modified version of push-parent ( for our own req.). and also comet
works on jetty and glassfish server (you need grizzly for this to work on
glassfish)


Jahid wrote:
> 
> Hi,
> 
> We need server push for one of our web application. Is there something
> that you can suggest? The requirement is, it should work on any server
> (Tomcat, jetty, jboss,). is there any wicket component that does
> this?
> 
> I have heard about wicketstuff-push, but i also heard that it only works
> with jetty. any kind of suggestion is welcome.
> 
> thanks in advance.
> 
> 
> //jahid
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/server-push-tp25746064p25764396.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...@wicket.apache.org



Re: server push

2009-10-05 Thread Martin Grigorov
Take a look at http://atmosphere.dev.java.net/
Its goal is what you are looking for.

P.S. Maybe we already discussed this with you in ##wicket.

El lun, 05-10-2009 a las 09:08 +0200, Md. Jahid Shohel escribió:
> Hi,
> 
> We need server push for one of our web application. Is there something
> that you can suggest? The requirement is, it should work on any server
> (Tomcat, jetty, jboss,). is there any wicket component that does
> this?
> 
> I have heard about wicketstuff-push, but i also heard that it only works
> with jetty. any kind of suggestion is welcome.
> 
> thanks in advance.
> 
> 
> //jahid
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: server push

2009-10-05 Thread Jan Kriesten

Hi Jahid,

> We need server push for one of our web application. Is there something
> that you can suggest? The requirement is, it should work on any server
> (Tomcat, jetty, jboss,). is there any wicket component that does
> this?

as far as I know there isn't any standard yet which works on any servlet
container. This is on the roadmap for the servlet api 3.0. Tomcat has a
different API than Jetty than resin.

I'm going for pull ATM, which works fine for my purposes. But your mileage may 
vary.

Best regards, --- Jan.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



server push

2009-10-05 Thread Md. Jahid Shohel
Hi,

We need server push for one of our web application. Is there something
that you can suggest? The requirement is, it should work on any server
(Tomcat, jetty, jboss,). is there any wicket component that does
this?

I have heard about wicketstuff-push, but i also heard that it only works
with jetty. any kind of suggestion is welcome.

thanks in advance.


//jahid


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



extending cometd/server-push problem with html-inheritance

2007-12-06 Thread muku

hi,
i just extended existing source of wicketstuff-push in order to get myself a
progress-bar running.
I use CometdService as my IChannelService-Impl.

i noticed a strange behaviour when trying to publish ChannelEvents.
On my  TestPage( extends WebPage) my example is running fine and all events
i try to publish from my working thread in background will be published and
handled as i expected.

Now when i try to integrate my progress-bar into a webpage with
markup-inheritance and lot more components, the event-handling and
publishing is somekind of unusual.

sometimes events will be published once, but the event-handler will be
called two or more times.
and most often the event will not even published so that the event-handler
will be called.

the consol-output looks fine for registering client to a channel.

is it possible to publish my whole progress-bar implementation somewhere?
it's very hard to follow my problem without any code. but my code is too
much posting it into this thread.


regards 
tim

this is my web-inf.

cometd
org.mortbay.cometd.CometdServlet
   

  timeout
  150


  multi-timeout
  1500



  verbose
  true

1
 

cometd
/cometd/*
 
-- 
View this message in context: 
http://www.nabble.com/extending-cometd-server-push-problem-with-html-inheritance-tf4957111.html#a14195860
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]