Tagged Questions
The urlmon tag has no wiki summary.
1
vote
0answers
132 views
Why does FindMimeFromData recognize image/tiff on one host, but doesn't on another one?
I'm using FindMimeFromData from urlmon.dll for sniffing uploaded files' MIME type. According to MIME Type Detection in Internet Explorer, image/tiff is one of the recognized MIME types. It works fine ...
1
vote
1answer
469 views
Using <urlmon.h> and URLDownloadToFile to get HTTPS Web Resources
All,
I am making a programming that will be able to download content from various websites on and off of my local network.To do this, I must use the libs and c++ for compatibility reasons. So far I ...
1
vote
0answers
307 views
URLDownloadToFile and Authentication
I'm working on some old ATL OCX, that is used as "download manager".
It downloads files using URLDownloadToFile API.
Previously, it was hosted as ActiveX on web page so in case the server required ...
1
vote
1answer
700 views
How can the Accept-Encoding header be changed in IE with Url Monikers or other method?
I'm developing a browser plugin and server component system that streams content with a custom encoding type. Now I would like to be able to detect on the server side whether the client can handle the ...
0
votes
2answers
59 views
How to do “Public Declare Ansi Function” in VB6?
I'm trying to convert this VB.NET / C# Declaration into a VB6 one, having trouble. (included is C# version, converting to VB.NET not a problem)
[DllImport("urlmon.dll", CharSet = CharSet.Ansi)]
...
0
votes
4answers
698 views
Waiting for URLDownloadToFile() to end
I want to make the program that downloads page from internet and makes some parsing on it. Second part is easy, problem is first.
I want to use URLDownloadToFile() function. But by default it doesn't ...
0
votes
1answer
182 views
URLOpenPullStream and gzip content download - need uncompressed data
I am using URLOpenPullStream along with a IBindStatusCallback and IHttpNegotiate callbacks to handle the negotiate, status, and data messages. Problem that I have is when the content is gzip (e.g. ...
0
votes
2answers
615 views
how to use URLDownloadToFile on a IE8 box (no crash would be nice)?
I'got a C++ app (similar to this one) that downloads files using URLDownloadToFile method (defined in urlmon.dll).
Until IE8, it was possible to abort a download by returning E_ABORT in the progress ...