Hi,
Does anyone know if a second instance of HttpClient is supported if the first instance is being used as the client for HTTPServer? i.e. -
First instance is:-
HTTPServer server;
HTTPClient clientOne;
clientOne = server.available(); // Used by the server instance
Second instance:-
HTTPClient clientTwo; // Another instance for retrieving data from a different web server
clientTwo.Connect(ipaddress,port)
cleintTwo.println(“GET /somewebpage.html HTTP/1.1”);
I’ve left out all the supporting code for clarity.Thanks in advance,
Tb.