0
votes
1answer
19 views
C++/WinInet Change Proxy Settings Windows 7
[Disclaimer: this is a Windows 7 specific issue as far as I can tell]
I've got a block of code that changes the proxy settings in the Windows registry, then proceeds to call the W …
0
votes
1answer
235 views
Wininet’s INTERNET_OPTION_IGNORE_OFFLINE doesn’t work?
I'm trying to get Wininet to ignore Internet Explorer's "Work Offline" mode, for both HTTP and FTP.
So I'm trying to use InternetSetOption() with INTERNET_OPTION_IGNORE_OFFLINE. …
1
vote
1answer
39 views
If FindNextUrlCacheEntry() fails, how can I retrieve info of the failed entry again?
I got a ERROR_INSUFFICIENT_BUFFER error when invoking FindNextUrlCacheEntry(). Then I want to retrieve the failed entry again, using a enlarged buffer. But I found that when I invo …
2
votes
2answers
66 views
HttpSendRequest blocking when more than two downloads are already in progress
In our program, a new thread is created each time an HTTP request needs to be made, and there can be several running simultaneously. The problem I am having is that if I've got tw …
0
votes
1answer
18 views
Passive FTP problem using WinINet
I'm trying to ftp a file using passive ftp but I get a timeout (12002) when the "put" command is called.
I'm able to use passive ftp with other ftp sites but not this new one.
…
1
vote
1answer
245 views
WinInet: timeout management in FTP put
Hi All,
My program puts a file into a remote host using HTTP. For some unavoidable
reasons, the remote hosts needs some time to acknowledge the final packet of
the data transmis …
0
votes
2answers
41 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
2answers
53 views
Delete IE Cache Programatically in 64 bit OS
How can I delete the IE cache in a 64 bit environment?
0
votes
2answers
91 views
WinInet: Why does first ever HttpSendRequest take longer?
I promise this isn't as simple as it sounds. I'm wondering why the the first ever call to HttpSendRequest takes much longer than subsequent calls, even when the later requests are …
0
votes
2answers
528 views
InternetReadFile Problem (error 87 - The parameter is incorrect)
Hello,
I have a problem here with InternetReadFile, if I run the application in a computer without proxy, the app runs ok, but if I try to use with a computer using proxy, I recei …
0
votes
1answer
127 views
Is there any special setting of proxy server for WinInet API?
I am using the WinInet API to get to internet files using HTTP. Everything works unless the user goes through a proxy server.
I'm using InternetOpen with INTERNET_OPEN_TYPE_PRECON …
0
votes
1answer
22 views
MSXML uses wininet when loads a xml file from a \\share
We know we should not use MSXML from Classic ASP to load remote xml files, because the WinInet is not designed for server use.
Do you know if loading a xml file from \\server\shar …
0
votes
3answers
219 views
why is my program not uploading file on remote ftp server?
i coded this program to upload a file on server using ftpput api it is not working it runs but file is not delevered!
here's the code:
unit ftp3;
interface
uses
Windows, Mess …
1
vote
3answers
513 views
How can I prevent URLDownloadToFile from retrieving from the cache ?
I am using URLDownloadToFile to retrieve a file from a website. Subsequent calls return the original file rather than an updated version. I assume it is retrieving a cached versio …
0
votes
1answer
37 views
Why isn’t 2008 server R2 x64 accepting cookies.
I have http connection code that does the typical
InternetOpen -> InternetConnect -> HttpOpenRequest -> HttpSendRequest using wininet,
which worked just fine on all the prior ver …
