Search Results

0
votes

How to retrieve cookies for a specific site and path in winhttp

Use the WINHTTP_CALLBACK_STATUS_SENDING_REQUEST notification as a chance to inspect the cookie headers winhttp put by default on the request and then add the md5 header before returning from the ca …
0
votes

In the windows API, is there a generic method which will give you the appropriate HTTP proxy for a URL?

The INS format is for IE, try WinHttpGetIEProxyConfigForCurrentUser() to get that configuration. …
0
votes

Specify which Network Card/Connection Winhttp Must Use

There is no publically available option for WinHTTP or WinInet to do Interface Affinity. It appears to be supported in System.Net via the BindIPEndPointDelegate on the Request's ServicePoint. …
0
votes

WinHttp: How to use a temporary certificate store?

Since you don't want other applications to trust this cert, you need to do part of the certificate validation yourself. Disable the CA check with the option SECURITY_FLAG_IGNORE_UNKNOWN_CA and then …