Tagged Questions

WinHTTP is a HTTP library provided by Microsoft as part of Windows

learn more… | top users | synonyms

8
votes
3answers
3k views

What's the recommended way to get winhttp.h?

Our application uses libcurl for HTTP, and we want to get access to Internet Explorer's proxy settings. An earlier Stack Overflow question recommends that we use WinHttpGetIEProxyConfigForCurrentUser ...
7
votes
3answers
6k views

How to give ASP.NET access to a private key in a certificate in the certificate store?

I have an ASP.NET application that accesses private key in a certificate in the certificates store. On Windows Server 2003 I was able to use winhttpcertcfg.exe to give private key access to the ...
5
votes
4answers
180 views

Multithreaded WinHttp downloads

I am creating a Delphi application to download files from the Internet and if the server supports range requesting it will be multi threaded. The progress is also relayed back to the GUI. The current ...
5
votes
3answers
579 views

WinHttp Delphi wrapper

Please advise if there is a WinHTTP wrapper in Delphi XE In order of preference: a Delphi out of the box unit a third party open source pas file with ported entry routines a xxx_TLB.pas wrapper ...
4
votes
3answers
4k views

differences between Msxml2.ServerXMLHTTP and WinHttp.WinHttpRequest?

just when I finally understood the difference between Msxml2.XMLHTTP and Msxml2.ServerXMLHTTP http://support.microsoft.com/kb/290761 XMLHTTP is designed for client applications and relies on ...
3
votes
2answers
246 views

How to use “WinHttp.WinHttpRequest.5.1” asynchronously?

The code: var WinHttpReq: OleVariant; procedure TForm1.Button1Click(Sender: TObject); begin WinHttpReq := CreateOleObject('WinHttp.WinHttpRequest.5.1'); WinHttpReq.Open('GET', ...
3
votes
1answer
312 views

Save a file downloaded via WinHTTP to disk, using Delphi XE

An answer to this question showed how easy it is to use WinHTTP via Type Library imports in delphi. I imported the type library for WinHTTP, and then tried to write a File Download helper function ...
3
votes
3answers
4k views

How to download a file with WinHTTP in C/C++?

I know how to download an html/txt page. For example : //Variables DWORD dwSize = 0; DWORD dwDownloaded = 0; LPSTR pszOutBuffer; vector <string> vFileContent; BOOL bResults = FALSE; ...
3
votes
1answer
1k views

How do I prevent ServerXMLHTTP from automatically following redirects (HTTP 303 See Other responses)?

I am using ServerXMLHTTP to perform an HTTP POST. The response returned is a redirect (specifically 303 See Other). ServerXMLHTTP is automatically following this redirect but this is causing an ...
2
votes
1answer
239 views

MSXML / ServerXmlHttp POST Failing intermittently (Delphi)

I have some legacy Delphi code that POSTs XML to a secure web server using the MSXML component. The code has been working fine for years. Recently, we made some changes that makes the XML file size ...
2
votes
2answers
508 views

Posting form using WinHttp

Do i need to add any headers before making a post to server? For example, Currently I'm trying to send a request along with the post data this way, LPCWSTR post = ...
2
votes
1answer
166 views

Are there any complete examples of using winhttp in C on windows?

I can find tons of examples in C++, but nothing that's written in just C. I am trying to connect to an http server, download the returned data, and then save it to a file. Is there a better way to do ...
2
votes
1answer
1k views

Upload file via HTTP from VBA (WinHTTP)

I'm trying to (HTTP) upload a binary file programmatically from within VBA. I intend to put an ASPX page on the server to accept the file and certain additional parameters. I know there are lots of ...
2
votes
1answer
404 views

HttpAddUrl permissions

I'm trying to run a custom WinHTTP based web-server on Windows Server 2008 machine. I pass "http://*:22222/" to HttpAddUrl When I start my executable as Administrator or LocalSystem everything works ...
2
votes
1answer
1k views

Creating robust HTTP connection for dummy users with WinINET

I'm making a program which downloads a simple file from internet on Windows, using Wininet family API because I want to utilize its IE-compatible proxy behavior. As you all know, current IE has ...
2
votes
1answer
614 views

WinHttp: How to use a temporary certificate store?

I have a C++ application that makes a HTTPS connection to one of our servers. In my ideal world, I would like the following to occur: App Starts App makes Windows trust the server's root CA (no GUI ...
1
vote
1answer
85 views

VBA WinHttp request:parameter is incorrect (error 80070057)

I have this script to automatically fetch Google Analytics results, it has worked fine for over a year. All of the sudden it stopped working. I'm getting error 80070057: parameter is incorrect This ...
1
vote
1answer
80 views

Work with WinHttpRequest.ResponseStream (related to IStream) in Classic ASP?

Is there a way to work with the ResponseStream property of WinHttp.WinHttpRequest.5.1 in VBScript/ASP? At least the IStream interface (to which ResponseStream is related) is integrated into ASP to a ...
1
vote
1answer
302 views

Delphi, Winhttp, Google Login, Fusion Tables

This is the continue of my previous question: Delphi, WebBrowser, Google Login, FusionTable But the test with WinHTTP also failed as TWebBrowser based test... And this is one question as you ...
1
vote
1answer
215 views

WinHttp doesn't work when hostname doesn't contains www. (error 12029)

I am testing this winhttp example from http://msdn.microsoft.com/en-us/library/aa384270%28v=vs.85%29.aspx DWORD dwSize = 0; DWORD dwDownloaded = 0; LPSTR pszOutBuffer; BOOL bResults = FALSE; ...
1
vote
0answers
74 views

WinHttp failed on the 2nd of two consecutive async calls

In a c++ project, I need to make two http calls to the same web service both using async WinHttp calls. The second call is issued in the callback func of the first one. And I got the ...
1
vote
1answer
1k views

C++ 307 Errors when trying to include winhttp.h in visual studio 2010

I have a big big problem. I'm trying to use WinHttp to download file with C++ and I'm using Visual Studio 2010 in order to do this thing. My problem is that the program is not compiling because are ...
1
vote
1answer
102 views

HttpAddUrl fails with ERROR_SHARING_VIOLATION (32L)

I am attempting to write a price listener. the data arrives as a 'push' response, ie: chunked transfer-encoding. i have decided to use the http server api, as both async wininet and winHTTP read data ...
1
vote
1answer
392 views

WinHTTP book or tutorial [closed]

I want to be able to get and post form on website and i'm looking for good tutorial or book if any on WINHTTP. I already know about MSDN reference but looking for some better guidance.
1
vote
0answers
235 views

How to use WinHTTP library for kerberos (windows integrated) authentication

There is a server running on linux box which understand kerberos, which also process SPNEGO and understands only kerberos but it does not understand NTLM The firefox and IE logins and access the web ...
1
vote
1answer
547 views

How do I upload a zip file via HTTP post using VBA?

This question has been asked many times by others in some form or another but most remained unanswered or the given answer is "Use C#, duh!", which incidentally, is a non-answer. ;-) I want to upload ...
1
vote
0answers
363 views

WinHttp POST body not received

I'm sending a WinHttp request with POST data to a php script on an IIS7 server, and the POST body isn't being received by the server. If I send via WinHttp using GET, or POST with a NULL body, or ...
1
vote
1answer
224 views

is WinINET reentrant?

I see that WinHTTP is not reentrant (1,2). Is WinINET reentrant? We have an ActiveX control that does synchronous HTTP with WinINET. If the browser (in javascript) fires an asynchronous http request ...
1
vote
0answers
169 views

using winhttp to connect to a multihomed host when the first ip is bad

im trying to confirm that the feature described here: http://msdn.microsoft.com/en-us/library/aa384066(VS.85).aspx WINHTTP_OPTION_CONNECT_RETRIES Sets or retrieves an unsigned long integer ...
1
vote
1answer
99 views

Set IP preference in WinHTTP (c++)

I have a code that is using WinHTTP on Windows 7. The problem i'm experiencing is that the connction to specific hostname takes a long time when the user tries to use an IPv6 address (that is ...
1
vote
1answer
913 views

winHTTP GET request C++

I'll get right to the point. This is what a browser request looks like GET /index.html HTTP/1.1 This is what winHTTP does GET http://site.com/index.html HTTP/1.1 Is there any I can get the ...
1
vote
2answers
762 views

How to get WinInet's proxy settings quickly (without network dependency)

How can I quickly retrieve Internet Explorer's proxy settings from C++? The windows function WinHTTPGetIEProxyConfigForCurrentUser() gives me exactly what I want... The problem with ...
1
vote
2answers
645 views

compile errors w/wininet & winhttp in MFC application

Strangely I had this working before but I reinstalled my system, upgraded to w7 and now I can't seem to get this code to compile. The problem is that I'm using winhttp.h in most of my application, ...
1
vote
1answer
2k views

Do I really need to register WinHttp on Windows Server 2008 before using WinHttpRequest.5.1?

Basically I think this is a bug in Windows Server 2008, but I am not a COM ninja so it seems equally likely that I'm just doing something dumb. The question is: bug or programmer error? We use ...
1
vote
1answer
697 views

WinHTTP IWinHttpRequest iface - cookie handling - how to get cookies from response?

I'm using WinHTTP IWinHttpRequest object. I do POST to a https domain specyfying a request body with credentials. The site is expected to return cookies in HTTP response. The code works in Wininet - ...
1
vote
2answers
317 views

Specify which Network Card/Connection Winhttp Must Use

I have an application in C# that utilizes Winhttp to make web requests. Is there a way to specify which network card WinHTTP must utilize for its connections?
1
vote
1answer
873 views

Progress indication with HTTP file download using WinHTTP

I want to implement an progress bar in my C++ windows application when downloading a file using WinHTTP. Any idea how to do this? It looks as though the WinHttpSetStatusCallback is what I want to ...
1
vote
2answers
854 views

What's the correct way to use win32inet.WinHttpGetProxyForUrl

I'm trying to use a feature of the Microsoft WinHttp library that has been exposed by the developers of Win32com. Unfortunately most of the library does not seem to be documented and there are no ...
1
vote
2answers
737 views

What API to use for adding HTTP client support in an existing MFC app?

I have recently been given a task to add the ability to interact with Web Map Services to an existing MFC application and I am in need of a client-side HTTP API. Based on my research, the leading ...
1
vote
2answers
2k views

WinHttp.WinHttpRequest in .NET

Is there a built-in .NET class that can replace or work like WinHttp.WinHttpRequest? Thanks!
1
vote
1answer
237 views

WinHttp Gets 404 File Not Found

I am grabbing a webpage with WinHttp and the resulting page is the site's 404 file not found page. I know that the code works as I have tested it with other websites. The page in question is a ...
0
votes
1answer
59 views

Is WinHTTP downloading null bytes or am I copying the results buffer incorrectly?

I recently ported a fully working WinInet program to WinHTTP. Here's a function I wrote to wrap an entire GET request in to a single line of code: bool Get(Url url, std::vector<char>& data, ...
0
votes
1answer
22 views

How can a synchronous WinHttp request be cancelled?

My service has a thread that may potentially be executing a WinHttpSendRequest when someone tries to stop my service. The WinHttpCloseHandle documentation says: An application can terminate an ...
0
votes
1answer
39 views

WinHttpOpenRequest with leading slash in pwszObjectName

When I use pwszObjectName with full net path: WinHttpOpenRequest(hConnect, L"POST", L"http:\\....... this function send to server not "http:\\..." but "\http:\\..." with leading slash. ...
0
votes
1answer
49 views

Credential Provider communicating over network

First let me explain my desired solution: I'm making a custom Credential Provider to authenticate a user by sending logon credentials to an external authentication server, then passing the same ...
0
votes
1answer
75 views

WinHTTP: using proxy with authentication

guys! I have to use proxy with authentication in my app where I connect to the server. (MFC app, WinHTTP lib). There is no problem to use simple proxy without username/pass. But how to specify auth ...
0
votes
0answers
66 views

MS winInit proxy credentials

I'm trying to use VBScript with WinHTTP to emulate basic curl functionality (HTTP communication and pages retrieval). I'm not using curl because I should use Internet Explorer proxy settings ...
0
votes
2answers
76 views

C++ WinHTTP API reading data

I'm trying to download data from a webpage then parse it, the problem is that I cant obtain the value of pszoutbuffer (ZeroMemory function deletes it) i took the code from MSDN example void ...
0
votes
0answers
153 views

Posting binary file using WinHTTP with jscript

All, I have been trying for days to POST a JPG file to a WebServer using a form. However, for some reason i am unable to do it using WinHTTP. In fact, I can properly set all the headers but when ...
0
votes
1answer
49 views

How to upload photo to Facebook via graph api

i am having a desktop application. My requirement is to upload photo to facebook using graph api. I am able to post message to user wall via application. But i am not able to upload photo. i am ...

1 2