You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Winhhtpdiag with a HTTPS URL and a proxy it uses GET http://fqdn:443 which is wrong.
It seems this sections needs to change when a proxy is used i.e. when an automatic proxy configuration is used it will have to be evaluated first before creating the request. Does WinHttpSendRequest use a SSLSocket when connecting ?
//
// Create the HTTP request handle.
//
printf("\n->Calling WinHttpOpenRequest with Object name : %S\r\n",ObjectName);
hRequest = WinHttpOpenRequest( hConnect,
L"GET",
path,
L"HTTP/1.1",
WINHTTP_NO_REFERER,
WINHTTP_DEFAULT_ACCEPT_TYPES,
0 );
// Exit if WinHttpOpenRequest failed.
Markus
The text was updated successfully, but these errors were encountered:
When using Winhhtpdiag with a HTTPS URL and a proxy it uses GET http://fqdn:443 which is wrong.
It seems this sections needs to change when a proxy is used i.e. when an automatic proxy configuration is used it will have to be evaluated first before creating the request. Does WinHttpSendRequest use a SSLSocket when connecting ?
//
// Create the HTTP request handle.
//
printf("\n->Calling WinHttpOpenRequest with Object name : %S\r\n",ObjectName);
hRequest = WinHttpOpenRequest( hConnect,
L"GET",
path,
L"HTTP/1.1",
WINHTTP_NO_REFERER,
WINHTTP_DEFAULT_ACCEPT_TYPES,
0 );
Markus
The text was updated successfully, but these errors were encountered: