I am trying to use the Bridge to pass information between two processors. When I enter the following into Google Chrome http://arduino.local/arduino/analog/2. I get the following error message "Could not connect to YunServer 146 Connection refused"
What needs to be done to enable a browser to get data from Yun?
// Listen for incoming connection only from localhost
// (no one from the external network could connect)
server.listenOnLocalhost();
server.begin();
}
Commenting out the line "server.listenOnLocalhost();" eliminates the problem.