I am trying to push data from the server to the client without client(browser) requesting an update.
My application is based on JSF2.0 (with JSPs) and RF3.3 on JBoss server.
I have gone through numerous links to try and understand how can i achieve it. Terms like long polling,piggybacking,server side polling are all understood by me.
I guess that it can be done using COMET with atmosphere(i think it is not applicable for JBoss) but I am not sure of the same. Major problem is I can hardly think of a starting point as I failed to get any kind of code tutorial or a demo code doing the same on the net.
Morever the starting point itself is not very clear as to from where should I start and what all I will be needing on the way to achieve the desired functionality.
Can anyone guide me on this.I am pretty lost on this topic.
The general use case scenario is that user is browsing some web page inside my application and suddenly I need to raise a notification or update a value on the page without user firing a request for the same.