WinHTTP is a HTTP library provided by Microsoft as part of Windows
0
votes
1answer
28 views
what is the best library to send http request for desktop applications
My application is running in Windows and I have to send some requests to the server. I am currently using libcurl.
However there is a limitation when proxy server with authentication is involved ...
0
votes
0answers
12 views
random Authorization error 407 using libcurl
i am using libcurl to do HTTP request.
The request goes through authenticated proxy.
Below are my settings with regards to proxy
curlResultCode = curl_easy_setopt(curlHandle, CURLOPT_PROXY, ...
0
votes
0answers
23 views
WinHTTP 5.1 greater than 4GB upload
I have an issue with the WinHttpSendRequest function when uploading data greater than 4 GB with Windows Server 2008 32bit, Windows Server 2008 64bit. At some point in the transfer, I get error code ...
0
votes
0answers
6 views
WinHTTP sample for QuickBooks API QBO
I an trying to use WinHTTP to work with the QuickBooks API for QBOE (v2). I get an invalid signature on the following using the API explorer as a guide. Does anyone have a working WinHHTP request?
...
0
votes
0answers
29 views
WinHttpOpen return error 12175
of the service process performs a WinHttpOpen call, but I get an error code 12175
const wchar_t* UserAgent = L"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
HINTERNET ...
0
votes
0answers
10 views
map errors returned from WinHttpSendRequest using FormatMessage
When invoking WinHttpSendRequest I get an error value using GetLastError (e.g ERROR_WINHTTP_CANNOT_CONNECT). But when trying to map the error code to a user friendly error message using FormatMessage, ...
-2
votes
2answers
55 views
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 = ...
2
votes
1answer
52 views
Purpose of WINHTTP_QUERY_URI in WinHTTP?
What HTTP header exactly can be queried using WINHTTP_QUERY_URI flag with WinHttpQueryHeaders function? After reading its description I was under impression this flag was supposed to be used to get ...
0
votes
0answers
42 views
Why lpOptional parameter of WinHttpSendRequest is not const?
Is there any reason at all why lpOptional parameter of WinHttpSendRequest function is not const? Is it safe to assume that the data pointed to by lpOptional parameter will not be modified by ...
0
votes
0answers
10 views
What's the difference between resolving WPAD in process and out of process?
In the WinHTTP autoproxy API, the WINHTTP_AUTOPROXY_OPTIONS will accept flags for WINHTTP_AUTOPROXY_RUN_INPROCESS and WINHTTP_AUTOPROXY_RUN_OUTPROCESS_ONLY. What's the difference between these two ...
0
votes
1answer
71 views
Access violation in winhttp.dll
I'm trying to perform an HTTP GET using WinHTTP in C++, but it's crashing at some point after resolving the name (after getting the WINHTTP_CALLBACK_STATUS_NAME_RESOLVED in the status callback ...
2
votes
0answers
221 views
Upload Excel xlsm file to php script using VBA
I would like to upload an Excel xlsm file to a php script from VBA. I found the following code:
Dim WinHttpReq As Object
Set WinHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1")
Dim strURL As ...
1
vote
1answer
90 views
0
votes
0answers
59 views
WinHttpSetCredentials() with certain UNICODE characters in username results in error 87 INVALID_PARAMETER
I am noticing that WinHttpSetCredentials() fails with error 87 INVALID_PARAMETER when using WINHTTP_AUTH_SCHEME_BASIC and specifying certain UNICODE strings as pwszUserName. Tried Greek, Arabic and ...
2
votes
1answer
125 views
VBA WinHttp no mapping character
Here is the source of a function I use get HTML code for further proccessing:
Public Function DownloadTextFile(url As String) As String
Dim oHTTP As WinHttp.WinHttpRequest
Set oHTTP = New ...
1
vote
0answers
128 views
Clear “Temporary Internet Files” from a server
Basically I use http://support.microsoft.com/kb/326201 for clearing the cache.
But in a article http://msdn.microsoft.com/en-us/library/windows/desktop/aa383990(v=vs.85).aspx it is mentioned that the ...
0
votes
1answer
75 views
How to ignore utf-8 encoding errors when using WinHttp under WSH?
I'm using the following script to get the content of a URL:
WinHTTP = WScript.CreateObject('WinHttp.WinHttpRequest.5.1') ;
WinHTTP.Open( 'GET', theUrl ) ;
WinHTTP.Send() ;
var content = ...
1
vote
0answers
70 views
UnmapViewOfFile does not release file. Unable to access File after function is executed. C++ WinHTTP
I am trying to upload a file to a cloud service using winhttp, however after running the below code, i am unable to access the same file anymore. It seems like the program is not closing its file ...
0
votes
0answers
168 views
Redirect base address with port in VBA
Hi I am creating a WinHttpRequest and would like to find out the port and address of the redirected URL. Thanks in advance. The test program bellow will display the cookie information and print the ...
2
votes
0answers
73 views
SugarSync API get user's info: Error 401 unauthorized
I'm trying to get a request for the user's information using WinHttp functions. The REST API call for SugarSync is referenced here.
My code is as follows:
DWORD dwBytesWritten = 0;
DWORD ...
-1
votes
1answer
81 views
python win32com how to set winhttp option value
from win32com.client import Dispatch
winhttp = Dispatch('winhttp.winhttprequest.5.1')
print winhttp.Option(6) #True
winhttp.Option(6) = False #SyntaxError <----------------how to set Option(6) ...
2
votes
0answers
143 views
c++ google drive api Uploads untitled file
I insert the following paremeters using WinHTTP. The files get uploaded successfully but with the title untitled file.
POST /upload/drive/v2/files?access_token=918230812390812038389 HTTP/1.1
Host: ...
2
votes
1answer
361 views
How to parse line by line WinHTTP response: UTF-8 encoded CSV?
As the next step for my happily solved problem (Not understanding why WinHTTP does NOT authenticate certain HTTPS resource) I need to prettily parse obtained CSV. At the moment I use the following ...
2
votes
3answers
714 views
Not understanding why WinHTTP does NOT authenticate certain HTTPS resource
I'd be extremely grateful for any kind of help that may help me resolving the problem.
From Excel VBA code I need to download & parse CSV file from HTTPS site https://redmine.itransition.com/. I ...
1
vote
1answer
218 views
How to reuse the same HTTPS connection for many put requests within a session?
To send files to server, I do a HTTPS put request in Windows, which looks like this:
hSession = WinHttpOpen( L"Agent/1.0",..
hConnect = WinHttpConnect(hSession,..
hRequest = WinHttpOpenRequest( ...
1
vote
1answer
269 views
Find the size of retrieved binary data with WinHttp.WinHttpRequest
I've recently realized that URLDownloadToFile uses the IE proxy setting. So I'm looking for an alternative and found WinHttp.WinHttpRequest may work.
It seems the ResponseBody property contains the ...
1
vote
1answer
123 views
Reading response from proxy using WinHttpQueryHeader()
How to find out if the response is sent from the proxy or end-server by using WinHttpQueryHeader() function? I have tried using WINHTTP_QUERY_PROXY_AUTHENTICATE as the dwInfoLevel paramter to the ...
5
votes
1answer
210 views
Retrieve HTTP response even if malformed from WinHTTP
With WinHTTP, WinHttpReceiveResponse will return ERROR_WINHTTP_INVALID_SERVER_RESPONSE if there is something wrong with an HTTP header for example.
Is there anyway to get to the data that was ...
0
votes
1answer
47 views
What is the ASP notation for the value of WINHTTP_ACCESS_TYPE_NO_PROXY?
I've searched the internet all morning.
I just want to know the value and how to notate it in asp classic.
I think it's 1 in decimal notation.
WINHTTP_ACCESS_TYPE_NO_PROXY = ?
2
votes
1answer
211 views
WinHttpOpen leaking memory
I've been trying to debug a memory leak in my program, and have narrowed it down to the WinHttp comms. I've been able to reproduce the problem in the following test code:
#include <windows.h>
...
0
votes
0answers
183 views
Wininet Binary File Post
My purpose is posting a binary file to form.I use sample example on MSDN which is appending a file into another file because i want to get buffer into memory.So I created a function sprint and it ...
1
vote
1answer
608 views
How to ignore invalid certificates with IWinHttpRequest?
i am using Microsoft's WinHttpRequest COM object to request a web-page with an invalid certificate:
IWinHttpRequest http = new WinHttpRequest();
http.Open("GET", url, false);
http.Send(null);
...
0
votes
1answer
842 views
WinInet vs WinHttp (service or service-like process)
I can not understand the difference between these two concepts "service or service-like process".
At msdn WinHTTP vs. WinINet page says:
When selecting between the two, you should use WinINet, ...
0
votes
0answers
294 views
WinHTTP Send Request returns error 12007 (server name cannot be resolved)
I've got a couple of users who are getting errors when they attempt to activate one of my programs and the description of the error code being returned is 'The server name cannot be resolved.' I've ...
0
votes
0answers
147 views
Highrise API with Classic ASP
I am trying to input contact via API with the Highrise API in Classic ASP.
For some reason it is returning the contacts instead of coming back saying that the new contact has been added.
This is the ...
1
vote
0answers
99 views
WinHttp - option to specify the maximum number of requests to handle at a time
I use
DWORD totalReq = 400;
::WinHttpSetOption(sessionHandle, WINHTTP_OPTION_MAX_CONNS_PER_SERVER, &totalReq, sizeof(totalReq));
in order to limit the total number of outstanding requests ...
0
votes
2answers
675 views
WinHttp used in async mode - ERROR_INTERNET_CANNOT_CONNECT how to cleanly close connection
I get lots of ERROR_INTERNET_CANNOT_CONNECT (12029 code) in callback procedure of the request.
I use WinHttp in async mode(on a server). How do you cleanly close the connection in this case. Do you ...
1
vote
1answer
333 views
obtaining proxy from PAC proxy requiring authentication
I am attempting to use WinHttpGetProxyForUrl where the PAC file specified by WINHTTP_AUTOPROXY_OPTIONS.lpszAutoConfigUrl requires HTTP basic authentication to access.
Is there some way to cause the ...
0
votes
1answer
117 views
http server api (windows) - looking for resources
Looking for licensing information on the http server api for windows (http://msdn.microsoft.com/en-us/library/windows/desktop/aa364434(v=vs.85).aspx)
I plan to use it for a commercial product and ...
0
votes
1answer
200 views
Can't send Proxy credentials (407)
I am trying do code C++ program that connects with a proxy which needs password and username authentication (ip:port:username:pw) I got http working but when I am using https I always getting a 407 ...
0
votes
1answer
299 views
What is phrase “URL reservation in HTTP.SYS” means?
Can't understand the meaning of this phrase. People on forums suggests each other to reserve url in HTTP.sys, but what does it mean? What is it for? How does it works?
All it comes from ...
0
votes
1answer
189 views
How Does WinHttpCrackurl Work
The MSDN documentation on WinHttpCrackurl makes a point of saying it runs "synchronously". But, could someone provide some authoritative documentation that says WinHttpCrackurl does or does not ...
0
votes
0answers
252 views
winhttp file/image upload to work in c/c++
Checkout this code here.
For some reason it's not working in my msvc 2010 express. I get WinHttpSendRequest:Error 87 has occurred.
Wonder what is wrong with it? And how can I make it POST instead of ...
1
vote
1answer
587 views
c++ winhttp/wininet wrapper to post forms and upload files without mfc/atl
could somebody point me to a winhttp/wininet based c++ wrapper which would not require mfc/atl? So that I might get it to work in MSVC express.
I'd like to be able to use GET, POST and upload files ...
2
votes
1answer
595 views
WinHTTP Multiple Asynchronous Requests
I need to pull data from roughly 6000 pages of a website. After doing some research, I decided to give WinHTTP a shot. I was able to get this working, however I was doing things synchronously, so it ...
0
votes
1answer
2k views
Configuring proxy with WinHTTP and Excel
I'm using WinHTTP to do a GET request in an Excel VBA Macro. However, if I try to do the request from a machine in a network with a proxy, it does not work. If I configure it manually, it works, but I ...
0
votes
2answers
201 views
Ways to speed up termination of socket WinHttp APIs using C++ for Windows
I have a Windows service application written in C++/MFC that establishes an HTTP connection via Windows sockets. It employs WinHttp* APIs to do all the socket related operations. It all works great, ...
0
votes
1answer
219 views
Which SDK exactly to install to use WinHTTP in Visual Studio 2003, XP 2003, SP3?
My OS is XP 2003, SP 3. We have MS VC++ code (not .NET), in Visual Studio 2003. (This is not the time for us to upgrade to a later Visual Studio version.) I want to use WinHTTP API's (winhttp.h) in my ...
0
votes
1answer
544 views
WinHTTP Async Callback
I'm not very good in C++, you if you see something in the code fragment which could be better, please educate me!
I'm implementing winhttp in an asynchronous fashion. But im having trouble retrieving ...
0
votes
1answer
153 views
WinHttpSetOption function's flag integer matches
On the page http://msdn.microsoft.com/en-us/library/aa384066%28VS.85%29.aspx there is a list of option flags for the WinHTTPSetOption object.
Where can one find the integer equivalents of these ...

