HttpSendRequest fails for https
-
Hi, I have few questions. i have read some articles on https+vc++ in code project. Thanks to the guys for articles. 1. If i need to do a https request(ssl+client crtification) to a server which is the library i need to use for VC++ dll(not a desktop application). winInet or WinHttp 2. what are the sequence of operations(API methods) to send the https request. 3. i have client certificate, and i want to select this particular client certificate with the https request. thanks
-
Hi, I have few questions. i have read some articles on https+vc++ in code project. Thanks to the guys for articles. 1. If i need to do a https request(ssl+client crtification) to a server which is the library i need to use for VC++ dll(not a desktop application). winInet or WinHttp 2. what are the sequence of operations(API methods) to send the https request. 3. i have client certificate, and i want to select this particular client certificate with the https request. thanks
i am able to makes a https connection using wininet, but how can i handle the response. i am using the InternetReadFile after the request is sent. This method reads the contents of the file, but i want a API method which responds only the output of the object file(my case it is servlet). thanks
-
Hi, I have few questions. i have read some articles on https+vc++ in code project. Thanks to the guys for articles. 1. If i need to do a https request(ssl+client crtification) to a server which is the library i need to use for VC++ dll(not a desktop application). winInet or WinHttp 2. what are the sequence of operations(API methods) to send the https request. 3. i have client certificate, and i want to select this particular client certificate with the https request. thanks
hi, u could take the following libraries: 1.) libcurl: http://curl.haxx.se/ 2.) C++ Socket Library: http://www.alhem.net/Sockets/ bye