I want to send an image using HttpSendRequest API. Basically I want to Post the request with some string parameters and after those params I need to send raw image data.
This question already has answers here: How to send a HTTP POST Request in Delphi using WinInet api (3 answers)
I am trying to capture proxy setting (\"Automatically Detect Settings\"). My code works on XP and Vista.
According to the MSDN, you can specify an access type parameter to InternetOpen. Two of the options for the dwAccessType parameter are:
The following code will log in my application to a server. That server will return an authentication token if the login is successful. I need to use that token to query the server for information.
we are developing a SOAP webservice (Apache/PHP). All run w开发者_运维百科ell 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
I am having an issue with my HTTP requests in my app, such that if the remote file is the same size as the local file (even though its modified time is different, as its contents have been changed), a
I want to download all file from ftp directory iwant use for that FtpFindFirstFile and FtpGetFile; LPWIN32_FIND_DATA FileData;
I have a request that works fine when I use the WinInet API. I now want to make that request with the WinHTTP API as I already use it in my project and as it is simply better. My request is used for c
What am I doing wrong? I\'m trying to get redirect information from a server that I use for authenticating a user. This works good with my C# code but I cannot make my C++ code working.