First does your library support Web Sockets / Socket IO?
Two, I created a demo app using the UnmanagedConnection sample, that was successfully able to get a two way communication with a Node.JS Server.
Unfortunately, this only works when the node.js server is initiallizet with server = requires(‘net’), meaning a raw TCP streaming end point.
My problem is, ours is a Http/Https server , meaning server = require(‘http’), with an initialization of io = require(‘socket.io’).listen(server). That means the library
My question is, does your library support and do you have any samples of it supporting communication with a http/https endpoint? I would like to connect to an endpoint like IPTools.ParseEndPointFromString(“https://10.10.200.3:443”);
I already bought this library for this purpose and do not want to waste any more time trying this feature if it is not supported