Tagged Questions
The wininet tag has no wiki summary.
7
votes
4answers
704 views
Downloading a file from the Internet while being able to abort the download any time
I'd like to download a file from my Delphi program in a separate thread dedicated to the download.
The problem is that the main program can be closed any time (thus the download thread can be ...
5
votes
2answers
240 views
Delphi 2010 - Wininet running out of handles
I have an app that makes intensively uses of Wininet functions to get some data from internet. I am getting a very odd handle related error messages sometimes:
Internal error in ConnectToHost when ...
5
votes
1answer
129 views
Determine the name of a file to download
I need to download a file from a url which has format similar to http://server.com/settings/files/1 when I paste this url in a web-browser this can determine the name of the file to download in this ...
5
votes
2answers
644 views
Soap Delphi Client end with a timeout for a 1MB call
we are developing a SOAP webservice (Apache/PHP). All run well for small size calls, but with a 1Mb soap call (the HTTPS call size is 1MB) our Delphi Soap client stop with a timeout on all PC but one, ...
5
votes
1answer
2k views
WinInet POST via SSL (HTTPS) with pure C?
I'm stuck trying to get a WinInet HTTP POST via SSL using ONLY C. I know it's possible.
Any good sample code?
Thanks so much!
EDIT: the following code seems to be working OK under C++ using WinHTTP ...
4
votes
2answers
143 views
Delphi soap https authentication failure pops up a dialog box
We have a delphi XE application that uses SOAP (THTTPRIO etc) communications which (in delphi) works over WinInet.dll, by default. We fixed the authentication code so that it works, using https ...
4
votes
2answers
329 views
How i can retrieve the error description for a WinInet error code from delphi
I need to obtain the description of an WinInet function error code, The MSDN documentation about the WinInet functions says which I must use the GetLastError function to retrieve the last error code ...
4
votes
4answers
167 views
Is it safe to assume InternetCloseHandle() won't fail, thereby allowing cleaner code?
Here's a routine to do an HTTP request using WinINet and either return the fetched string or raise an exception:
function Request(const pConnection: HINTERNET; const localpath: string): string;
var ...
4
votes
3answers
997 views
How to Prevent dialog (Basic Authentication prompt) during call of Webservice
In a delphi program (running as a service) i need to call some webservices.
The calls works fine if basic Authentications is not requerired. The calls also works fine if Basic Authentication is ...
4
votes
5answers
5k views
Detect an internet connection activation with Delphi
I've been using a 3G wireless card for a while and every time I connect, my anti-virus fires up the updates.
I'm wondering what is the Win32 API set of functions that I can use to, either, get ...
3
votes
1answer
106 views
Document Mode menu functionality in Web Browser Control
I'm writing my own MFC app that uses WebBrowser control (uses IE9). I wonder how can I use the API similar for "the document mode menu" in IE Developer tools : ...
3
votes
2answers
375 views
InternetReadFile reads only 10kb
i'm trying to download file from http server using WinINet library calls. It works perfectly fine on my local web server. but when i'm trying download something from the internet, InternetReadFile ...
3
votes
1answer
209 views
Why does GetErrorMessage return “wrong password”, when the user name is wrong?
GetErrorMessage (from CInternetException) gives me the following:
With the incorrect ftp server name:
"ERROR! The server name or address could not be resolved"
With the incorrect password:
ERROR! ...
3
votes
1answer
413 views
Why is FormatMessage() failing to find a message for WinINet errors?
I'm running this to test FormatMessage:
LPVOID lpMsgBuf;
errCode=12163;
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM ,
0,
errCode,
0,
(LPTSTR) ...
3
votes
4answers
6k views
How to send a HTTP POST Request in Delphi using WinInet api
I am trying to make HTTP Requests from Delphi using the WinInet functions.
So far I have:
function request:string;
var
hNet,hURL,hRequest: HINTERNET;
begin
hNet := InternetOpen(PChar('User ...
3
votes
5answers
645 views
Browser Cache API for non IE browsers
IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache.
Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info?
...
3
votes
3answers
2k views
How do I transfer a file using wininet that is readable by a php script?
I would like to transfer a text file to a webserver using wininet as if the file was being transferred using a web form that posts the file to the server.
Based on answers I've received I've tried ...
2
votes
2answers
55 views
Missing HTML code/tags when downloading page with C++
I've finally succeeded in downloading a webpage to disk using the wininet library. I'm currently using the following c++ code:
#include <windows.h>
#include <wininet.h>
...
2
votes
1answer
297 views
MFC + Wininet + proxy authentication = problems
I have some code (its actually for sending SMS messages via a web interface, but that's not relevant). The code works fine in the absence of a proxy server, but one customer wants to use this ...
2
votes
2answers
171 views
WinInet HttpQuery Info returning Invalid Status Codes
I am working on a program that needs to check the existence of a page before it loads (so nothing too exotic).
Everything is working OK, but I cannot get HttpQueryInfo to return a valid status code ...
2
votes
1answer
179 views
Are there HTTP client libraries for Delphi which suport NTLMSSP authentication?
We recently started using a Squid HTTP proxy server which provides squid-2.5-ntlmssp authentification.
Does somebody know if NTLMSSP is supported by one of the popular HTTP client libraries for ...
2
votes
2answers
282 views
Which is the common-average buffer size for InternetReadFile?
I use WinInet.h in Delphi to download files over HTTP with the average size between 30 KB and 1.5 MB.
var
Buf: array[0..BUFFER_SIZE - 1] of Byte;
while BOOL(InternetReadFile(hUrl, @Buf, ...
2
votes
1answer
290 views
How to I get Fiddler to NOT automaticaly proxy WinINET Connections?
I want to use Fiddler for a specific application that will manually turn the proxy on and off for (Firefox 3.6 using FiddlerHook). That is the only application I want proxied, but I can't seem to find ...
2
votes
1answer
804 views
InternetOpenUrl only returns after entire HTTP response is downloaded
I am writing a download file utility using WinINET, and have noticed (especially on large downloads), that the WinINET InternetOpenUrl() call only returns after the entire HTTP response has been ...
2
votes
1answer
349 views
C++ wininet, connect to weblogin, how to set cookies?
Hey all i want to login onto my works webpage with wininet, this is my current code:
int main()
{
HINTERNET hInet = InternetOpenA("UserAgent/1.0", INTERNET_OPEN_TYPE_PRECONFIG,0, 0, 0 );
...
2
votes
1answer
138 views
SSL Certificate Context - How to get it using NPAPI
How to get the SSL certificate context of the website using NPAPI ? Can I use libnss (Network Security Services) or should I stick to WinINet's InternetQueryOption() to get the context.
Thanks,
Saleh
...
2
votes
4answers
518 views
Why would InternetOpenURL report error 2 (the system cannot find the file specified)?
The internet access code in our product works perfectly for 99.99% of people. However, for a few of them, it just doesn't work at all. We've been adding some trace code to try and figure out what the ...
2
votes
4answers
2k views
How to send a HTTP Post Request in Delphi 2010 using WinInet
I want to send a HTTP Post Request in Delphi 2010 using WinInet, but my script doesn't work ;/
It's my Delphi script:
uses WinInet;
procedure TForm1.Button1Click(Sender: TObject);
var
...
2
votes
2answers
1k views
Unable to query proxy “Automatically Detect Settings” on windows 7
I am trying to capture proxy setting ("Automatically Detect Settings"). My code works on XP and Vista.
But it is NOT working on Windows 7
Please see the details of target platform
Windows 7 ...
2
votes
3answers
5k views
Dev C++ Wininet Upload file using HTTP
I want to upload "C:\test.txt" to webserver, when I am running program, file is not uploading and I am not getting any error.
the complete C++ code can be find here
and php code on webserver can be ...
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
2answers
1k 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 WinInet API with the ...
2
votes
2answers
820 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 two threads already ...
1
vote
2answers
181 views
WinInet wrapper for FTP in Delphi
Give advice, please. I want to develop FTP / SFTP / FTPS client download manager in Delphi on WinInet. On what better to do (Indy, ISC Components, WinInet ...)? May already have solutions?
1
vote
2answers
132 views
HTTP post and wininet
I implement sending POST request by using the wininet library. I tried to use the different flags both in the "HttpOpenRequest" and in the "PostInitWinInetHandle" functions. The generated request ...
1
vote
2answers
150 views
How to avoid full CPU utilisation, or terminate, while InternetOpenURL is trying (and failing) to connect?
I have a fairly simple application which downloads files in a thread. This thread uses the WinINet APIs, and begins like so:
HINTERNET hInternet = InternetOpen(strUserAgent.c_str(), ...
1
vote
1answer
299 views
Downloading Binary Files With Wininet
I am currently programming a simple program, I want to distribute to my friends. What I am trying to accomplish, is to write some external binary files to a buffer from the internet, upon starting the ...
1
vote
2answers
158 views
WinInet and SessionCookies
Hello and good evening to all.
I have my app that uses InternetSetCookie to create (session) cookies needed for its job. However I want to remove the cookie named for ex. 'badcookie' after each ...
1
vote
0answers
222 views
How to set proxy settings of a specific Internet Explorer 8 instance in C# .NET?
I would like to set proxy settings of a specific Internet Explorer 8 instance. Here is my code:
static Process RunNewIE8Instance(string proxySettings)
{
ProcessStartInfo IEStartInfo = new ...
1
vote
1answer
290 views
Delete IE9 Cache and Cookies
My app works with Web Browser Control embedding IE9.
I have changed the registry of IE to write it's cache/cookies into some own temp folder (I wanted that every instance will write it's cache and ...
1
vote
3answers
118 views
Problem in downloading twitter search pages
I am trying a small program to download webpages and collect some data.
The program works fine for most webpages. However, there is problem in downloading Twitter search results.
The download program ...
1
vote
1answer
124 views
Using wininet to exchange data with server
I'm using WinInet to download file from web. But not I need the following:
Post id to the script;
Download the file bound to this id;
I know how to download some file:
hConnection = ...
1
vote
0answers
462 views
FTP Last file write time - wininet.dll C# wrapper - Date is one year previous
Im using the following library http://ftplib.codeplex.com/ which is a wrapper around wininet.dll to perform some FTP commands.
The resultant app is working perfectly on 3 Windows XP machines. However ...
1
vote
1answer
426 views
TCP Keep Alive on idHttpServer (server) and wininet (client)
I have a webserver application developed using idHttpServer. When a client connects do my webserver and, for some unknown reason, got disconnect (not a gracefully disconnect) my webserver does not get ...
1
vote
1answer
321 views
Integrated Windows Authentication Wininet
Hi experts
I need to send an http request from C++ application using wininet API.
User is behind ISA proxy server that is configured to use Integrated Windows Authentication.
When I get error 407 ...
1
vote
2answers
410 views
WebBrowser Control and Wininet APIs
Is it possible to get the exact all Http Request Header and Http Response Header details from WebBrowser control?
Also is there any means of getting WinInet related HINTERNET handle from WebBrowser ...
1
vote
1answer
355 views
using wininet in C++
I Have a server that if I sent it "https://MyDomain/Dir1/Dir2/login.html?u=1234&t=5678" will respond with an xml document. Does anyone know how I can do this in wininet?
Here is what I have done ...
1
vote
1answer
759 views
POST form data using WinInet c++
I'm trying to make this program connect to a website and submit form data in order to login, but I don't know what I'm doing wrong. I have heard of others like curl and Winsock but I chose the WinINet ...
1
vote
2answers
262 views
HttpSendRequest not waiting for PHP script to finish
I'm sending an HTTP POST request from my C++ app to a PHP script on a server. Using HttpOpenRequest/HttpSendRequest/etc. Currently it waits for the PHP script to finish executing before ...
1
vote
3answers
251 views
How to use the WinInet API from Java?
According to this answer to an earlier question of mine, the WinInet Windows API is the correct way to read and write internet connection settings in Windows. How can I use this API from Java? I'd ...