- I have C++ Backend process run on A server. Any process can connect to A server to get real time data feed.
- I have web application (grails) run on B server.
- Client Access via web browser to http://bserver/
I have a feature that web client can monitor realtime data of A server which client not be able to access A server directly due to firewall policy, but Web application on B server will connect (tcp socket) to A server and pass data to web client.
Would you mind to advise the way that easy to implement.