Hello all,
I have been working with a server on a desktop and have connected a device that is running Node-Red (Advantech ADAM 6750) and when I go to the Chrome web browser and type in the url "(ADAM ip):1880/hello" it pulls up the response I had set up, but when I use the server that was set up on the desktop and try to access the same url I do not get anything as a response, the server uses c# and I have tried the following code to access the Node-Red HTTP request:
WebClient client = new WebClient();
client.Credentials = new NetworkCredential ("user","pass");
string value = client.DownloadString("https://(ADAM ip):1880/hello");
I get no response what so ever, (I am not using HttpClient becasue the server doesnt offer that library).
Any help would be much appreciated.