Short: Is there a way to push data from the server to a logged in user session without that user needing to make an HTTP request?
Long(er): I'm building an HTML5 application, on an Apache/PHP/MySQL server, that could be served to users on mobile devices (or perhaps via a PhoneGap application).
I would like to let the user know when there is new information available from the application, without racking up excessive data charges by forcing that user to execute a call to the server, or requiring AJAX calls (yes I know it could check for a single byte cookie, but I'd rather make it zero).
A good example of this would be sending chat messages between two users on submit from one user to the other.