This is not directly related to VB6, but I am trying to use OpenSSL to test my VB6 secure web server. I can get past the handshake with no problem using:
openssl s_client -connect localhost:443
Where I run into trouble is sending a multi line GET request.
GET / HTTP/1.1
Host: localhost:443
The Host line is required by HTTP 1.1.
It sends the lines one at a time, which my server cannot handle. I run into the same problem with outside web servers, and I have tried numerous suggestions from online searches to no avail.
Anyone have experience with this?
J.A. Coutts
openssl s_client -connect localhost:443
Where I run into trouble is sending a multi line GET request.
GET / HTTP/1.1
Host: localhost:443
The Host line is required by HTTP 1.1.
It sends the lines one at a time, which my server cannot handle. I run into the same problem with outside web servers, and I have tried numerous suggestions from online searches to no avail.
Anyone have experience with this?
J.A. Coutts