I have a web application running on a browser window (thin client).
I want to send some information to this Web App (window already open) from an external application (thick client) without going through the server (client to client).
A solution that I found is the following:
thin client
is open in a URL : http://xx/index.html
thick client
opens a new browser window with the url http://xx/send.html?var=val
var=val
to the thin client.I have the following questions:
window.open('','_parent',''); window.close();
doesn't work anymore in latest FF versions.localStorage
events in IE7- ?Thank you.
If you do not want to modify the existing server, you could set up another web server that acts as a bridge between thick and thin client.
Think client would send information to the bridge server and thin client would wait for an update from the bridge server.
It is possible for clients to be interacting with more than one server at a time.
What kind of information does the thick client need to push to the thin client? Is it simple text or something more complex?