Hi everyone.
I have to implement the following solution:
A client that should initiate a persistent connection to an HTTP server. It must be able to listen to that connection and when the server sends a request, the client has to pick it up and process and send a reply afterwards to the server (HTTP response format). The line must stay open so the client can receive requests from the server at any time.
I don’t know how the server is built, and I can’t obtaint any information about it (they don’t provide it).
Can anyone help me in how is the best way to develop it?
Thank you in advance.