Thanks for the reply. You are absolutely right, sending a valid HTTP reply is fixing the problem. Ex:
/* Respond with a basic HTTP message. */
client->write("HTTP/1.1 200 OK\r\n"
"Content-type: text/plain\r\n"
"Content-length: 12\r\n"
"\r\n"
"Hello World!");
Bookmarks