javascriptlocal-storagethin-clientthick-client

communication between thin and thick client


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).

enter image description here

A solution that I found is the following:

enter image description here

I have the following questions:

Thank you.


Solution

  • 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?