In a java web application, I'm trying to display a page where the displayed items are updated on the server side.
Basicly, I would like to display a page where the user can select a set of tasks and then, launch those tasks (for the moment, nothing difficult). Then, I would like to display a page where the user can monitor the status of the tasks (waiting, runing, ended...).
In order to avoid the client polling the server or refresh timers => from the server side, how can I update data in the client web page?
Can JSF resolve such problems? I tried to use java FX but it seems to be very slow and requires the Java FX RE installation (not possible for my users). What about GWT?
Thanks for your help.