2
votes
1answer
69 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 serve …
0
votes
2answers
45 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 o …
0
votes
0answers
29 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 e …
2
votes
1answer
357 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 application …
1
vote
1answer
60 views
WinHTTP IWinHttpRequest iface - cookie handling - how to get cookies from response?
Hello
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. Th …
0
votes
2answers
31 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?
0
votes
1answer
42 views
In the windows API, is there a generic method which will give you the appropriate HTTP proxy for a URL?
I'm writing an application intended for distribution around the world. I recently discovered a method of WinHTTP:
http://msdn.microsoft.com/en-us/library/aa384097(VS.85).aspx
Thi …
0
votes
1answer
88 views
How to retrieve cookies for a specific site and path in winhttp
I would like to retrieve the cookies stored in the winhttp session cache based upon a specific host and path that I am about to send a request to. I want to retrieve those cookies …
0
votes
1answer
77 views
Progress indication with HTTP file download using WinHTTP
Hi, 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 WinHttpSetStatusCallb …
0
votes
2answers
110 views
WinHTTP Connect
I am trying to have WinHttp make a “CONNECT” calls (as opposed to a “GET” or “POST”) that looks as follows:
CONNECT www.etrade.com:443 HTTP/1.0
Host: www.etrade.com
However, win …
0
votes
1answer
192 views
Mantis BT export request via “WinHttp.WinHttpRequest.5.1”
Hello,
My boss asked me to export the corp's Mantis bugs database to Excel, but he can't give me access to the SQL Server, and the process has to be automated.
The ONLY thing I c …
1
vote
2answers
194 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 a …
0
votes
0answers
82 views
Why doesn’t WinHTTP work while debugging?
I am using WinHTTP (WinAPI interface) in a C program. When I'm running the relase build from outside the ide (that is, without any debugger. IDE is VS2008) it works fine.
However, …
0
votes
1answer
91 views
How can I get response information from IE programatically?
I want to know what are different ways to get the response code information when we visit any page in IE by using Windows API or some interfaces using C++?
I think some ways inclu …
0
votes
1answer
582 views
VBA and WinHttp: how to submit to a page that may redirect to a login page
I am using a macro in outlook VBA to submit a file via POST to a URL:
Set http = New WinHttp.WinHttpRequest
http.Open "POST", UrlToPostTo, False 'True …
