I have a lot of programs that use INDY 9 in BDS2007.
I'm porting them to Delphi 10.4 but here there is INDY 10.
It is possible to remove INDY 10 (unused at moment) and install/compile INDY 9 in Delphi 10.4?
Before making mistakes I ask if someone…
In my application i am trying to read a new message that came to my hotmail account.
what is the best method to read email from hotmail/live.com pop3 or IMAP ?
and can any one link some demo code of best method ?
regards
I have used IdMappedPortTCP in a particular program to allow generic port-forwarding for many years. I'm testing an upgraded build/component environment, and I ran into a problem. First, here's the old & new version info:
OS: W2kSP4 --> same …
I am trying to send HTTP DELETE request using Indy 9.
Attempt (like that):
type
TIdHTTPAccess = class(TIdHTTP)
end;
TIdHTTPAccess(IdHttp).DoRequest(hmDelete, deleteURL, nil, nil);
This doesn't work, because hmDelete skipped in…
I'm trying to create folder on OneDrive. This code works OK with XE8 + Indy 10. But with Indy 9 and Delphi 7 two times from three or so I have:
"EIdHTTPProtocolException with message "http/1.1 404 not found". The folder is created anyway.
Is there a…
i want to send emoji with indy 9.00.10 on delphi 7. i use tnt VCL Controls .
i found this url http://apps.timwhitlock.info/emoji/tables/unicode for unicode and bytes code.
how to convert this codes to delphi Constants for Send with indy.
i use this…
I'm using Delphi 4, and I want to create a standard non blocking socket with out the clutter of Indy code (Pv4 and Pv6). and i want to get the computers IP address and be able to ping has any one done this. Can I do it with Indy 10 or Indy 9. And…
I want understand why the data packet received in the Wireshark program is different of the sent by my delphi application. Can anyone help me?
Here is my code:
if Pos('\x',comandoRede.Comando) > 0 then
begin
bufferS :=…
I'm building a tool that sends a request besides my browser request using TIdMappedPortTCP from Indy 9.
I want to use string #$d#$A (line breaks) by writing it in memo as %0D%0A
but it's not working fine, as you can see in the image.
What's the…
Is it possible to implement something like IdMappedPortTCP without connecting to a remote proxy server?
What I need is
a) a way to edit every HTTP header (for example change the User-Agent for each request) the for every request sent from my…
I am using Delphi 7 and Indy 9 to implement a trivial HTTP server. When I upload a file to the server using the POST method, I would like to know the content-length before the OnCommandGet event, in order to show a progress bar.
The event sequence…
I'm trying send message from delphi-code use TIdMessage. The message consists of 2 parts: text/plain and text/html.
I have html-page as a template and some large text that need to insert to the template (in special place that was marked as…
I have a Delphi 7 app using Indy 9 which connects a TIdTCPClient to a TIdTCPServer in a Delphi XE2 app using Indy 10.5.
To set the text encoding to UTF-8 in TIdTCPClient in Indy 10, I can use this:
TCPClient.IOHandler.DefStringEncoding :=…
When i inject the DLL, the ShowMessage work fine, but when i use IdFtp the remote Process crash.
library FTP_DLL;
uses
SysUtils,Classes,IdFTP,Dialogs;
{$R *.res}
var
IdFTP1: TIdFtp = nil;
begin
IdFTP1.Host := 'My ftp server';
…
I see that Delphi 2007 comes with Indy 9 and Indy 10 integrated.
Both are included in the same search path.
C:\Program Files (x86)\CodeGear\RAD Studio\5.0\source\
I did not find a way to configure Delphi to take Indy 9.
It always takes Indy 10.
Is…