The Windows Internet (WinINet) API enables Windows applications to interact with FTP, and HTTP protocols to access Internet resources.
0
votes
0answers
16 views
Wininet error 12003 ftpOpenFile
I am trying to write a file to a drivehq.com server. The file does not exist on local disk, nor on the ftp server, so does FtpOpenFile Create a file for me automatically?
I am getting error 12003 and ...
0
votes
0answers
34 views
MFC WinInet Post Parameters
I'm writing a program in MFC and using WinInet to post data over http, but I'm facing a problem when posting parameter, in the server side the http parameters are empty, here is my code:
[code]
...
0
votes
0answers
27 views
HttpSendRequest not running synchronously
It seems like HttpSendRequest is running asynchronously, because I get an ERROR_IO_PENDING error, which is odd since I've told InternetOpen not to do asynchronous calls. I have no callback function ...
0
votes
0answers
31 views
Does the Microsoft WebBrowser control ever delete cookies on its own?
I have a Win32 application that uses the Microsoft WebBrowser control to connect to a web site which requires a session cookie to log in. It's common for this application to have multiple windows ...
0
votes
0answers
31 views
url not working when using wininet functions
I try connect to the following url below(look further for code):
I get 12007 error, but when I open this url on browser it work.
I have no idea what I do wrong.
It happens in more urls just cant ...
0
votes
1answer
54 views
block internet using wininet
currently i am using wininet in my c# application to check internet connection it is working fine
[DllImport("wininet.dll", SetLastError = true)]
public extern static bool ...
1
vote
0answers
35 views
InternetReadFileEx doesn't read full HTML
My program runs through a list of 500 websites and reads and prints the bytes read and the status code. InternetReadFileEx works fine on the very first website and reads all 50,000 bytes for ...
0
votes
0answers
31 views
C++ and WININET - WAN FTP Upload Error
I made this in V C++ with wininet. It just supposed to send a file to Filezilla FTP Server.
When I configure it to send file to the my own FTP server at the same computer(loalhost/127.0.0.1) it ...
0
votes
1answer
25 views
Access violation using FtpFindFirstFile unicode version in async mode
Let's say I have very simple little code sample which uses async WinInet:
#include "stdafx.h"
#include "WinInet.h"
#pragma comment(lib, "wininet.lib")
DWORD LatestResult = 0;
HANDLE MayContinue = 0;
...
1
vote
0answers
72 views
Errors in wininet.h
I am getting a bunch of errors in WinInet.h, mostly about missing semicolons and unidentified variables. If I include WinInet.h in a header file for a class that is going to use it, it complains. ...
2
votes
1answer
62 views
Why socket does not set to non blocking mode?
I try to set my socket to non-blocking mode using ioctlsocket, but it returns -1 and WSAGetLastError returns 10045 - Operation not supported. Why could that happen?
The code I write is rather ...
1
vote
1answer
28 views
Linking trouble with wininit libary (LNK1120)
I have this function:
void send(char* log, char* pas, char* ser, char* plik)
{
HINTERNET hInternet;
HINTERNET hFtpSession;
hInternet = ...
1
vote
0answers
16 views
How can i determine if the server uses IWA?
I have a client app that needs to connect to servers that may or not use IWA. It needs to behave differently in each case.
I'd like to determine if the server uses IWA.
WinINet handles IWA ...
0
votes
1answer
73 views
WinInet::InternetSetOption(…) always returns 0 and GetLastError() returns 12018
I am trying to set user name and password for proxy using InternetSetOption(...) method. However, it always returns zero and Last error is set to 12018.
Below is my code snippet.
#include "stdafx.h"
...
1
vote
1answer
58 views
data type mismatch in FtpFindFirstFile
I am enumerating an ftp directory using the following function:
Public Sub EnumFiles(hConnect As Long)
Const cstrProcedure = "EnumFiles"
Dim pData As WIN32_FIND_DATA, hFind As Long, lRet As Long
Dim ...
0
votes
1answer
44 views
Correct way to use InternetReadFile() asynchronously
I've got code that's performing HTTP requests using WinInet API's asynchronously. In general, my code works, but I'm confused about the 'right' way to do things. In the documentation for ...
0
votes
2answers
423 views
VB6 — using POST & GET from URL and displaying in VB6 Form
How can my VB6 form POST 2 vars, pull the results from a URL and then assign a VB6 var to the results?
I need someone to show me VERY basic VB6 sample code or point me in the right direction. This is ...
0
votes
1answer
104 views
InternetQueryOption, INTERNET_PER_CONN_OPTION and the INTERNET_PER_CONN_FLAGS_UI flag
I am writing a program which queries proxy settings using the InternetQueryOption API.
Looking through the Windows docs for INTERNET_PER_CONN_OPTION
...
2
votes
1answer
220 views
How can I download a huge file via TIdHTTP?
I use this code to download small files:
Var
ms:TMemoryStream;
begin
ms:=TMemoryStream.Create;
Idhttp1.get('http://mydomain.com/myfile.zip',ms);
ms.SaveToFile('myfile.zip');
ms.Free;
end;
...
3
votes
1answer
226 views
Have WinInet share sessions/cookies with Internet Explorer
What I want is the following:
1)
Login at a page using Internet Explorer
2)
Have my software which uses WinInet API to crawl a site reuse the same cookies/session (i.e. so the crawler is "logged ...
0
votes
0answers
97 views
InternetQueryOption returns empty with INTERNET_OPTION_PROXY_USERNAME
I am trying to get the proxy details including UserName and password from an application running behind a proxy server. I use InternetQueryOption() with INTERNET_OPTION_PROXY_USERNAME option. I see ...
-5
votes
1answer
210 views
How To Use InternetOpen, InternetOpenUrl and InternetReadFile [closed]
How I Download The WebPage Content Using winInet.dll
Code (from the comments):
url="http://links.casemakerlegal.com/states/TX/books/Case_Law/results?search[Cite]=359%20S.W.3d.%20856" Uri urlCheck ...
1
vote
0answers
116 views
WinInet call HttpSendRequest doesn't pass auth information next time when I call it with the same connection handle
I'm confused by the following problem I experience. We use Windows 2008 R2 machine with IE 8.0 installed. Next I try programmatically to connect to a server with InternetConnect call(auth credentials ...
0
votes
0answers
134 views
Wininet call Fails with last error ERROR_INTERNET_TIMEOUT. But the file gets uploaded
I have an MFC application that uses to upload files to our web service.
I am uploading the file as form data
I am using HttpSendRequestEx , InternetWriteFile and HttpEndRequest to upload the ...
1
vote
1answer
184 views
Delphi - File size by URL - error 12150
Delphi 6 Prof, Win7 OS.
I have this code to get the file size by URL:
function TDDWIToolObject.GetFileSize(out Size: Int64): boolean;
var
hInet: HINTERNET;
hRequest : HINTERNET;
...
0
votes
0answers
90 views
How to POST a file with <WinInet.h>?
I have the following sequence of code
the buffer is file data is that correct ?
HINTERNET hInternet = InternetOpenA("dummy", NULL, NULL, NULL, NULL);
HINTERNET hConnect = ...
0
votes
0answers
265 views
An unknown error occurred while processing the request on the server. The status code returned from the server was: 12031
We have web application which has AJAX calls. If I run the application in my Dev it works perfectly without any issues. But in our Prod machines, we are getting below error. I know there are lot of ...
1
vote
1answer
314 views
InternetReadFile() does not seem to read internet data
I'm a new guy on the website here, so forgive me if I do anything wrong in this post.
I'm working with WinINet and trying to download a binary file from the internet but, for some reason when I get ...
2
votes
3answers
222 views
How to check for internet availability in c++ [closed]
I wrote one small function to check internet connection availability
void cis()
{
if(InternetCheckConnection(NULL,FLAG_ICC_FORCE_CONNECTION,0))
{
cout << "internet alive";
...
0
votes
0answers
45 views
PHP scripts work in different ways for WinIten and browsers requests
Issue : PHP script doesn't read(write? flush?) file properly.
platform : windows7
web server : apache with php-5.4.6
c++ toolset : msvc10
browser(s) : chrome, ie
Here is minimal example that ...
0
votes
1answer
64 views
IPv6 for WinINet APIs
WinINet provides functions such as InternetCanonicalizeUrl, InternetConnect.
I would like to know if these calls work with IPv6 addresses?
In my application, which is using WinINet api for connection ...
0
votes
1answer
92 views
Use wininet to read cookies on ASP.NET
My ASP.NET application requires a cookies check function. The application will check if a cookies from external site (SharePoint Online site) exists in Internet Explorer.
I followed the wininet.dll ...
0
votes
1answer
173 views
Delphi - Can I use InternetReadFile for local file?
I need to use WinInet for download files.
I want to test it, but as I checked it first, it isn't working for local files.
(file://*)
This is needed for test the program without internet, or debug ...
0
votes
1answer
143 views
Wininet SSL with client certificate smart card access for each request
I'm using Wininet library to establish SSL connection with client certificate (stored on the smart card).
The problem is that I see smart card is accessed for each HttpRequest that has been sent.
...
1
vote
1answer
187 views
OpenSSL WinINET client
I have a working client and a server which, once finished would have a valid SSL certificate.
At the moment, for the mean of testing, I'm just disabling the need of SSL verification in the client by ...
1
vote
0answers
58 views
static library is missing on other computer
I have written program that sends files to ftp server. In my computer, where I have VC++ 2008 express edition, it works fine, but when I tried it on the others computers it hadn't worked. I figured ...
3
votes
1answer
168 views
Delphi: how I can determine the downloading speed in kbps?
I use to download the files some functions of wininet:
Url := source_file;
destinationfilename := destination_file;
hInet := InternetOpen(PChar(application.title), INTERNET_OPEN_TYPE_PRECONFIG,
...
2
votes
1answer
117 views
InternetErrorDlg does not save password
I use InternetErrorDlg to request login/password( it's delphi, but i think it's clear)
function ShowLoginDlg(Request: HINTERNET): boolean;
var
DlgError: Cardinal;
begin
DlgError := ...
1
vote
1answer
242 views
Send binary data as parameter to a method in Web Service?
In server side (C#.NET,Windows 2003) I have a web service with a method and in client side (Visual C++ v6, WinINet, POST) I want to call that method and pass binary data as a parameter to it.
when I ...
0
votes
0answers
108 views
What other reasons for error 122 in HttpSendRequest
I have some simple Win32 API WinInet code to retrieve the header from a webpage and check the responding status. Once I have done the appropriate connections to the site 192.168.111.222 I run these ...
0
votes
0answers
104 views
cannot post variables with HttpSendRequest ,WM 6.5, c#, wininet call
trying to make a Smart Device app on WM 6.5, what would POST data to Apache using wininet -> because using HttpWebRequest cause problems even with extended exception handling (randomly hangs the ...
1
vote
2answers
297 views
Delphi - XE2 code to Delphi7 needed. Using wininet to download a file
Note: I only want to use wininet, not urlmon-urldownloadtofile.
Well, I have the following code which works perfectly in XE2 to download a file:
procedure DownloadFile(URL: string; Path: string);
...
1
vote
1answer
628 views
Delphi - Downloading a File Using Wininet?
Note:
This code is in Delphi XE2.
I am trying to download a file without using UrlMon.dll.
I would like to use only wininet. This is what I have come up with so far:
uses Windows, Wininet;
...
1
vote
1answer
167 views
Dial-up using wininet.dll Windows API issue (C#)
I'm calling the following function on wininet.dll in order to get online (C# pinvoke):
[DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
static extern int InternetDial(IntPtr ...
0
votes
0answers
61 views
File lessthan 32 bytes not getting uploaded to https server
I have an application that upload file(s) to our own server.
The server side has provided appropriate urls to upload files.
The file is sent as multipart form data.
it is working fine in our old ...
1
vote
2answers
204 views
How can I find if a webpage exists using WinINet
I am trying to connect and ensure various pages exist on a webserver provided by an instrument we design. I am trying to do this through C++ Win32 using WinInet commands.
I am happy that I have ...
0
votes
0answers
69 views
Check if connected to internet fails even though I'm able to post this Querstion
I'm trying to check if I'm connected to the net with:
bool connected = InternetCheckConnection("http://www.google.com",0,0);
and unfortunately the result is false? What am I doing wrong?
0
votes
0answers
181 views
Use wininet and InternetOpenUrl failed with error INVALID_HANDLE on some windows xp
It's a MFC project and links to static MFC library. I use wininet to send request to webservice and get response. It works well on win7 and some winxp machines, but on some other winxp machines it ...
0
votes
0answers
147 views
WinInet async HTTP request returns OK on some machines, but returns empty on others
I've created a simple framework to send asynchronous HTTP requests via WinInet, and while it runs OK on some computers, the requests return empty on the computer in my university computer lab, and I ...
0
votes
0answers
29 views
Having local file specified instead of remote
Is there a way to specify local file (on my hardDrive) to WinInet functions, like for example, FtpGetFile? I would like to do it as I have limited broadband and as I expect lots of hits and misses ...



