N
ntwatkins
Guest
It is usually not possible, or desirable from a security perspective, to have a desktop application interface directly with a browser application. The browser typically works within a sandbox and access outside of that sandbox is typically restricted. This being said, you have some options to communicate indirectly between the desktop application and browser application. You could use web services to send the information between the two applications. Another option would be to use web sockets or node.js to send messages between the two. Of course, you would need to be able to change the browser application in order to do any of this communication. If that is not possible, you are going to be severely limited in options.
Continue reading...
Continue reading...