how to send HTTPS request to a servlet from vc++
-
Hi, I need to establish a URL(https://test.com/test/servlet?parameter-list) connection from VC++ through a request object and get a response object in the form of plain text like password changed: ab123 or password not changed: no user. The connection should use a client certificate for a standard http connection. Can any one point to some API or samples which provide methods for sending https requests and getting back the response(response is text). thanks
-
Hi, I need to establish a URL(https://test.com/test/servlet?parameter-list) connection from VC++ through a request object and get a response object in the form of plain text like password changed: ab123 or password not changed: no user. The connection should use a client certificate for a standard http connection. Can any one point to some API or samples which provide methods for sending https requests and getting back the response(response is text). thanks
hi, you could use the libs: - libcurl http://curl.haxx.se/ - Socket C++ Library: http://www.alhem.net/Sockets/ cu