Web Client local server issue
Posted: Thu Jul 30, 2015 3:01 pm
I have two local servers running, one on my Linux box (192.168.1.4) and the other on my Win 7 machine (192.168.1.1)...
My local network is very basic and includes a four port hub / router with WiFi...
I've built a simple ESP8266 test board using the example WiFi client (192.168.1.5) and can access the Linux server and retrieve data using:
I've even created a virtual host on the windows server
My local network is very basic and includes a four port hub / router with WiFi...
I've built a simple ESP8266 test board using the example WiFi client (192.168.1.5) and can access the Linux server and retrieve data using:
Code: Select all
, but I can't access the server on Windows machine using: const char* host = "192.168.1.4";
Code: Select all
...const char* host = "192.168.1.1";
I've even created a virtual host on the windows server
Code: Select all
and tried NameVirtualHost esp.dev
<VirtualHost esp.dev>
DocumentRoot C:/Server-14.1VC11/data/localweb/esp/
ServerName esp.dev
</VirtualHost>
Code: Select all
which works from either machine but still no communication using the ESP8266 test board... where am I going wrong?const char* host = "esp.dev";