My web application needs to connect to a local device on the network to get data.
The device has a static IP address and communicates via the P03 protocol. When I connect with Telnet, the device returns a plain text in my console.
I need to do the same thing with JavaScript in-browser. When a user clicks a button, it should connect to 192.168.0.1:8000
via TCP and display the received text data on the page.
The problem is that is a web application. Is it possible to do client-side?
(I'm also willing to accept other suggestions besides JavaScript.)