Questions tagged [winhttp]

Windows HTTP Services (WinHTTP) is an HTTP client application library provided by Microsoft as part of Windows to send the requests through the HTTP protocol to other HTTP servers.

See Windows HTTP Services page for the WinHTTP documentation.

See also this seminal MSDN article detailing the use of the library's asynchronous API in C++.

This tag should be used for questions relating specifically to the WinHTTP library.

393 questions
-1
votes
1 answer

WinHTTP Error 12029 Cannot Connect

I am trying to make an http connection to my own domain and return a string. I have it working with www.microsoft.com but when i change the domain to www.atomic-gaming.info (my domain) i get an error 12029 and if i change the link to www.yahoo.com i…
Kegan Hollern
  • 1
  • 1
  • 1
  • 1
-2
votes
1 answer

In case of proxy server Winhttp Authentication fails

#include #include #include #pragma comment(lib, "winhttp.lib") int main() { static BOOL bRet = FALSE; TCHAR szHostName[MAX_PATH] = L"www.google.com"; HINTERNET hSession = NULL; HINTERNET hConnect…
-2
votes
1 answer

Error 12006 in WinHttpCrackUrl

I'm trying to build an address from a variable. So I can pass it to WinHttpOpenRequest. char *uNameAddr = (char*) ExeBaseAddress + 0x34F01C; printf("%s \n", uNameAddr); string url = "http://xxxx.xxxx.com/xxxx/?u="; string username =…
user1553142
  • 231
  • 1
  • 11
  • 21
1 2 3
26
27