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

learn more… | top users | synonyms

4
votes
2answers
625 views

how to upload file to dropbox via Delphi 7?

I try to upload file into dropbox. I use dropbox api https://www.dropbox.com/developers/reference/api#files-POST procedure TDropbox.Upload2; const URL = ...
1
vote
1answer
601 views

Using IdHTTP1.Get with Delphi and Indy 9/10 on a specific web server returns exception

I've a problem receiving a favicon.ico from a specific web server using Delphi and Indy 9/10. Other servers do work fine. The problem is not with this web server, as wget command line utility gets the ...
2
votes
1answer
232 views

Migrating from Indy 9 to 10 with Delphi, TIdSchedulerOfThreadPool initialization

I'm in the process of updating a Delphi app from Indy 9 to Indy 10. It's quite painful, as apparently a lot has changed. I'm stuck at one step. Here is the old code (working with Indy 9): A Thread ...
0
votes
1answer
174 views

Indy v9 in Delphi 7 - how to extract readable text portion of TIDMessagePart.Body when ContentType is not text/plain

I am trying to extract the readable portion of the Body.Text property of a TIDMessagePart object that is type TIDText. Something like the code below. However if ContentType of the TIDText message part ...
2
votes
1answer
483 views

Indy 9 SMTP Send with TLS causing crash

I have a strange issue sending an email via gmail. I am using Delphi 7 and Indy 9 working on Windows 7 Professionel 32-bit on a VirtualBox (4.2) Since Indy 9 doesn't support TLS out of the box I have ...
1
vote
1answer
143 views

Delphi Indy 9 Server Ports

I always worked with indy 9 and Delphi 7. I have quite experience with it now and but would like to go a little bit further. I would like to listen to multiple ports and don't know how I should do ...
3
votes
2answers
256 views

Is Indy 9 compatible with Lazarus/Free Pascal

I'm doing feasibility analysis about porting a delphi 7 app to Free Pascal. Does Indy 9 work on Free Pascal? Do you need a special build or just the latest Indy 9 from Indy's svn repository? Or would ...
2
votes
1answer
879 views

Indy 9 + Delphi 2007 latest SSL Libraries available?

When using Delphi 2007 along with Indy 9, what are the latest OpenSSL libraries that can be loaded and where are they available?
1
vote
1answer
355 views

Indy sending file and close open handle(s)

I use this code to send a file to a client. procedure TForm1.IdTCPServer1Execute(AThread: TIdPeerThread); var hFile : THandle; FileBuff : array [0..1023] of byte; dwRead : DWORD; Recieved : ...
1
vote
2answers
495 views

VirtualTreeView add roots with Threads

I would like to add roots to a VirtualTreeView http://www.delphi-gems.com/index.php/controls/virtual-treeview with a thread like this: function AddRoot ( p : TForm1 ) : Integer; stdcall; begin ...
0
votes
1answer
130 views

Is there a way to make sure an Indy 9 socket connection is truly broken (Delphi 6 application)?

I have a Delphi 6 application that exchanges audio data over a socket with an external hardware device. The hardware device has a problem internally where sometimes its internal buffer processing ...
3
votes
1answer
686 views

Adding attachments to E-mail bound for Evernote E-mail address defeats HTML content type declaration with Indy TIdSMTP component

I have a Delphi 6 application that generates E-mails that I send to my Evernote E-mail address, a special E-mail address for sending documents via E-mail so that they are stored automatically into my ...
0
votes
1answer
1k views

Indy TCP - Read data in a loop

A TCP server is sending data frames continuosly every 8ms. I want to program a client able to receive these data frames. Is there any procedure in Indy 9 to know if there is data available in the ...
1
vote
1answer
1k views

Delphi Indy IdUdpClient read operation, No data returned

I need to read the information that is sent by an electronic device (using UDP protocol). I am having problems using Indy components (version 9) in Delphi 7. Below you can see my code. procedure ...
0
votes
1answer
336 views

IndyHandle to TIDPEERTHREAD

I am using Indy9 with Delphi7. I would like to cast an Longword (Athread.Handle) back to an TIDPEERTHREAD Pointer. Is there a way how I could do this? Or is there any other way I could "store" the ...
0
votes
2answers
174 views

Indy9 Get Raw Email header?

Does Indy9 have any way to get a specific raw email header (say, "Subject" or "From") which still includes the transfer-encoding (ie: has not been mangled by DecodeHeader on older versions of Delphi ...
2
votes
1answer
674 views

Indy IdHTTPServer GET response parameters randomly missing

I'm writing a Delphi-based Windows server for a tablet-based HTML client. Most files are served out unprocessed, as you would expect of a web server, but a handful of special keywords are being ...
4
votes
1answer
410 views

Controlling a long running and critical ISAPI process

Scenario: Client makes ISAPI call with POST to IIS 7.5 server - the call will generate mission critical output to be distributed to numerous users. (using Delphi XE with Indy 9 HTTP client in this ...
0
votes
1answer
534 views

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 ...
0
votes
5answers
311 views

Can my program use Indy 10 at a customer site if I wrote it to use Indy 9?

I have written a program in Delphi 7 (includes a ModBus component that uses Indy). On my machine it uses Indy 9 and works fine. It communicates well with other machines via a ModBus protocol. However, ...
0
votes
1answer
765 views

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 ...
6
votes
3answers
2k views

Who's setting TCP window size down to 0, Indy or Windows?

We have an application server which have been observed sending headers with TCP window size 0 at times when the network had congestion (at a client's site). We would like to know if it is Indy or ...
8
votes
5answers
4k views

MultiCast Messages to multiple clients on the same machine

Im trying to write a server/service that broadcasts a message on the lan ever second or so, Kind of like a service discovery. The message needs to be received by multiple client programs that ...