Hello,
I tried to add an image into the HTML with the HTTPTimeserver sample, but it doesn't work.
See code below, I added img tag:
std::ostream& ostr = response.send();
ostr <<
"<html>\n"
"<head>\n"
"<title>POCO Form Server Sample</title>\n"
"</head>\n"
"<body>\n"
"<h1>POCO Form Server Sample</h1>\n"
"<h2>GET Form</h2>\n"
"<img src=\"/myImage.png\" height=\"267\" width=\"400\" />\n" "<form method=\"GET\" action=\"/form\">\n"
.
.
.
The question is : How to make that?





