Questions tagged [indy-9]

Indy 9 is a reference to a specific version of Indy.

Indy 9 is a reference to a specific version of .

57 questions
0
votes
1 answer

Delphi 10.4 and INDY 9

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…
0
votes
1 answer

how to read a message from hotmail/live delphi

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
NOP
  • 95
  • 1
  • 1
  • 5
0
votes
1 answer

IdMappedPortTCP now requires "prodding" after telnet connection

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 …
0
votes
1 answer

How to send a DELETE request with Indy 9?

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…
0
votes
0 answers

Indy 9 + OneDrive create folder error

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…
0
votes
1 answer

Send emoji with indy delphi7

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…
0
votes
1 answer

Delphi Using Indy 10

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…
lexdean
  • 151
  • 1
  • 2
  • 13
0
votes
1 answer

Delphi - Why udp data packet is different?

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 :=…
pedro.olimpio
  • 1,478
  • 2
  • 22
  • 43
0
votes
1 answer

Memo Line Breaks

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…
Daywalker
  • 11
  • 1
  • 3
0
votes
0 answers

delphi 7, indy tcp proxy without remote server

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…
Wanyiri
  • 1
  • 5
0
votes
1 answer

TIdHTTPServer Getting content-length when receiving the PostStream

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…
mabi
  • 522
  • 1
  • 6
  • 20
0
votes
2 answers

Maximum length of message using Indy components

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…
Roman Marusyk
  • 23,328
  • 24
  • 73
  • 116
0
votes
2 answers

Indy 9 TCP client text encoding

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 :=…
Claudio Ferreira
  • 171
  • 2
  • 12
0
votes
1 answer

How to use IdFTP inside a DLL Delphi

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'; …
bestyasser
  • 103
  • 1
  • 11
0
votes
1 answer

Delphi 2007 with Indy 9

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…
StefanG
  • 1,234
  • 2
  • 22
  • 46