I have a browser-based application that needs to communicate with another service running on the client machine through a socket connection from a browser using JavaScript.
I need to send and parse XML back and forth on a socket.
I can not go down the path of flash memory, because the protection of cross-domain security is a barrier, i.e. a socket service cannot be modified to support Flash cross-access security.
What are my options for a clean JS based solution?
source
share