Indy 10 is a reference to a specific version of Indy.
11
votes
3answers
454 views
How to use a dll outside of the system path
I made an application that uses the openssl dlls (libeay32.dll and ssleay32.dll).
It is indy using them, I don't call the dlls directly.
The simplest workaround i found to avoid an installer (i just ...
11
votes
1answer
2k views
Step by step upgrade of Indy 10 in Delphi 2009
Can someone help in telling the details on how to uninstall Indy 10 and install the latest build? I found it http://indy.fulgan.com/ZIP/IndyTiburon.zip
There is a similar question, but not a ...
10
votes
2answers
992 views
TCP connection timeout is 20 or 21 seconds on *some* PCs when set to 500ms
I was given 10 new PCs, all (supposedly) with Windows 7 Pro freshly installed and nothing else done to them.
I have a program, coded in Delphi XE2, using Indy 10 components for the networking. I set ...
8
votes
1answer
160 views
How to configure Indy v10 to support IPv4 + IPv6?
With the following code I can get the content of an IPv4 website:
uses
IdHttp;
IdHttp1 := TIdHttp.Create(nil);
try
Result := IdHttp1.Get('http://www.heise.de/')
finally
IdHttp1.Free;
end;
...
8
votes
2answers
535 views
Is Indy for FreePascal stable?
I'm starting to play with FreePascal/Lazarus and there appears to be an Indy port available. Is this a recent port and is it stable enough to use in production use? (Standard HTTP post/get client type ...
7
votes
4answers
4k views
Is it possible to use Indy 10.5.8.0 in Delphi XE and DataSnap?
The case
I'm trying to update the INDY to the latest version for my Delphi XE (Update 1), so I downloaded the latest INDY10 file (Indy_4545.zip) from indy.fulgan.com/ZIP.
The packages compiles ...
7
votes
6answers
6k views
Indy TCP Client/Server with the client acting as a server
How can Indy's TIdTCPClient and TIdTCPServer be used in the following scenario:
Client ---------- initate connection -----------> Server
...
Client <---------------command------------------- ...
7
votes
1answer
576 views
How to deal with network drops and Indy IdTCPServer
I have created a Client/Server application with the IdTCPServer component. The clients connect and maintain a persistent connection through the life of the application. If the network connection is ...
6
votes
4answers
225 views
HTTP continuous packeted stream with Indy
I have a JSON-RPC service which for one of the requests returns a continuous stream of JSON objects.
I.e. :
{id:'1'}
{id:'2'}
//30 minutes of no data
{id:'3'}
//...
Of course, there's no ...
6
votes
0answers
402 views
Seeking simple INDY demo [closed]
I want a simple client server communication which I can use an underlying framework and never have to look at again. I want to concentrate on my application and have a simple functional API along the ...
5
votes
3answers
1k views
TIdHTTPServer file upload
I'm trying to upload files to a Indy(ver. 10.5.5) TIdHTTPServer.
I've been searching for solutions but no luck thus far, what I've found was for older versions of Indy which were not compatible with ...
5
votes
3answers
1k views
Delphi indy10 http server and ExtJS form submit
I have a problem I don't know how to solve.
I have an Indy10 HTTP server. I have used both Indy9 and Indy10 HTTP servers in many applications and never had any problems. But now I am using Indy10 ...
5
votes
2answers
452 views
Indy TCPClient and rogue byte in InputBuffer
I am using the following few lines of code to write and read from an external Modem/Router (aka device) via IP.
TCPClient.IOHandler.Write(MsgStr);
TCPClient.IOHandler.InputBuffer.Clear;
...
5
votes
1answer
1k views
SSL support for smtp.live.com and TIdSmtp (Indy, Delphi)
I am trying to connect to smtp.live.com to send emails (live.com supports free pop3/smtp since 2009 apparently but this is totally news for me).
Here is what happens when I try to connect to ...
5
votes
1answer
172 views
Accessing Ubuntu One API results in “401 UNAUTHORIZED” or “400 BAD REQUEST”
I am using Delphi XE2 with Indy 10 to access the Ubuntu One API. So far so good. I was able to get the OAuth Token from the Cloud as described. Now I want to start using the API (like described):
...
5
votes
1answer
2k views
Delphi XE2 HTTPRIO Unable to retrieve the URL endpoint for Service/Port
I am converting a Delphi 2007 program to Delphi XE2 and having a problem with the following error message:
Unable to retrieve the URL endpoint for service/port "/" from WSDL 'http://.....'
The ...
4
votes
5answers
1k views
Best practise: Keep TCP/IP connection open or close it after each transfer?
My Server-App uses a TIdTCPServer, several Client apps use TIdTCPClients to connect to the server (all computers are in the same LAN).
Some of the clients only need to contact the server every ...
4
votes
2answers
445 views
Why in some conditions an email sent with idSMTP doesn't go properly to new line?
I am sending a text only email using TIdMessage and TIdSMTP.
For the Body I use a simple concatenated string like
Body := SomeText + #13#10 +
SomeOtherText + #13#10 +
...
4
votes
4answers
1k views
E-mail arrival notification with Indy IMAP client (Delphi 2009)
I am working on a deamon application that uses e-mail inbox as its input queue. Response times should be as high as possible with server overhead kept to minimum, so polling e-mail inbox is out of ...
4
votes
2answers
960 views
How to make a simple proxy server?
I wanted to create a simple proxy to my localhost(xampp). I've looked into IdHTTPProxyServer but there is no available example of how to use it.
my intention is to monitor the Post/Get request of my ...
4
votes
1answer
999 views
Incorrect boundary string in multipart/mixed message
I'm using Delphi 2006 to create and send an email message with an attachment in a personal-use-only application. I send the message with an instance of TIdSMTP, and then also put a copy into a ...
4
votes
2answers
1k views
The connection does not timeout while using Indy
I want to download a file from internet and I imagine this should be a simple task. Trying several different approaches I have found that each one has its own drawback.
The main issues are:
...
4
votes
3answers
699 views
indy GET dowloading speed
Welcome,
I have to create caption with information about downloading speed in my application using indy http get compontent.
In my mind i found simple solution.
At onwork event i will get actual ...
3
votes
5answers
869 views
Indy10 File Transfer Causes 100% CPU Usage
i managed to fix some errors with disconnecting, now whenever a file is transferring the CPU Usage becomes 100%, i dunno what im doing wrong :S.....
const
MaxBufferSize = 1024;
type
TClient = ...
3
votes
2answers
1k views
Indy FTP Client rising error, after trying to start another upload?
IdFTP: TIdFTP;
...
procedure TForm1.IdFTPWorkEnd(ASender: TObject; AWorkMode: TWorkMode);
begin
IdFTP.Disconnect;
try
IdFTP.Connect;
IdFTP.ChangeDir( directory );
IdFTP.Put( ...
3
votes
1answer
393 views
Is it possible to replace the Indy version supplied with Delphi XE3?
This has come up in the past, in particular reference questions on Delphi XE: Is it possible to use Indy 10.5.8.0 in Delphi XE and DataSnap? and Is it possible to recompile the DataSnap packages in ...
3
votes
1answer
1k views
Using Indy Server's multiple bindings as separate sockets?
I'm still getting used to Indy, being a multi-threaded socket system with vast capabilities. One of the big things I've seen is how a server socket can have a number of different bindings. For ...
3
votes
2answers
210 views
How do I send a command to a single client instead of all of them?
I am writing a simple client/server chat program with Indy 10. My server (idtcpserver) sends a command to the client, and the client answers, but when more than one client is connected and the server ...
3
votes
1answer
507 views
Problems with authorization after upgrading from Delphi 2005 to 2010 using Indy http (idHTTP1.Get)
I'm upgrading from Delphi 2005 to Delphi 2010.
I'm having this problem : the following procedure works well on D2005 but on D2010 I got always the result :
<HTML><HEAD><TITLE>401 ...
3
votes
1answer
359 views
Indy returning odd content-type for certain messages. How solve?
There is this particular kind of Amazon message that seems to throw Indy's MessagePart parser.
The message is structured (strongly abridged version, of course) as such:
Content-Type: ...
3
votes
1answer
294 views
Full size assigned right from the start when downloading a file using Indy
I have this delphi code that basically download a file (using Delphi 2010 + Indy 10.5.8 r4743), everything works just fine, except that when I download 100Mb (for example), it seems that Indy assign ...
3
votes
3answers
1k views
Twitter OAUTH and a Win32 EXE Desktop Application
I have been coding against a Delphi EXE (win32 desktop app) to access twitter and do certain functions. It used to use Basic authentication with the api limitation. I know I have to convert this to ...
3
votes
2answers
1k views
IdFtp.List throws socket-error #10054 occasionally
When I call the function
IdFtp.List(myList, '', false);
afterwards I have logged in and changed the ftp directory, I get a socket-error #10054 exception ("Connection reset by peer.") occesionally.
...
3
votes
2answers
3k views
How to send an email with a calendar request (content type: text/calendar)
I have tried to embed the icalendar code in a email to be sent via indy with a content type text/calendar but it just hangs on the encoding of the email when I add as an attachment it just arrives as ...
3
votes
1answer
741 views
Transferring Data Directly between 2 Connections in Indy (TIdContext)
ive a sever running TIdTCPServer, and Client Using Web Browser (or any other software) to Communicate, i dunno the protocol, but what im trying to do is to Send The Data between the client and another ...
3
votes
2answers
481 views
How to read all bytes from server using Indy Client in Delphi?
I am using Indy client to read the message the server is sending to me (client). It sends 512 bytes of data to me in one go. This 512 bytes of data is composed of two datatypes (Word and String). For ...
3
votes
1answer
195 views
Indy SMTP Connect handled differently on different PCs
In a Delphi Sports Club membership program, I send bulk emails to the members using the club's BTConnect account, which has been migrated to Office365. Recently, BT upped the authentication and I ...
3
votes
2answers
699 views
Indy 10 TCP Client Server - testing for open communication channel
I am modifying an Indy10 TCP/IP application and I would like your suggestions/opinions/sample code on implementing a client side function that does the following
a) on application startup when the ...
3
votes
1answer
325 views
Indy - Know when modem has sent a RESET [RST] flag
I have noticed that I receive an EIdSocketError with LastError = 10054 or 10053 when the device I'm talking to sends a RESET response. Which makes sense, given 10054 is Connection Reset By Peer.
...
3
votes
1answer
378 views
Indy 10 + SSL = works in Windows 7, does not work on XP
I'm using the Indy 10 Http Client (latest SVN build) and a SSL Handler (Delphi 7) to get the content of the https://www.webtide.com/choose/jetty.jsp website.
It works fine on Windows 7 x64 (tested on ...
3
votes
2answers
290 views
How to redirect Post requests using TIdHTTPProxyServer
Currently I want to redirect specific Post requests using Indy10 TIdHTTPProxyServer. I followed the page
...
3
votes
1answer
114 views
Progress event for TAzureBlobService and TAmazonStorageService
When uploading or downloading data to the cloud services (using TAzureBlobService or TAmazonStorageService), there doesn't appear to be any way to get feedback on the upload/download progress.
I can ...
3
votes
3answers
2k views
Delphi. Show gotten with idHTTP.Get Unicode text in multilanguage Windows
I need your help. Please help me.
I have Delphi 2010
I try to idHTTP.Get a file with Unicode text (Russian) from site into MemoryStream on English version of Windows 7.
Then I load this ...
3
votes
0answers
561 views
Indy TIdFTP - EIdReplyRFCError - “Can't open data connection”
We are using Indy TIdFTP with FileZilla 0.9.39 beta FTP Server.
Frequently (not always) our client is receiving the following exception:
exception class : EIdReplyRFCError
exception message : Can't ...
2
votes
3answers
422 views
Better Indy for Dephi 2007
Which better is using default indy10 that's comes with Delphi 2007 or upgrade it to latest snapshot version and why ?
Thank you
2
votes
3answers
3k views
STARTTLS error while sending email using Indy in Delphi XE
I'm trying to send email from my application using the following code:
Var
MailMessage : TIdMessage;
SMTP : TIdSMTP
.
.
.
//setup SMTP
SMTP.Host := 'smtp.gmail.com';
...
2
votes
2answers
882 views
How to check URL with IdHTTP?
How can I check for the target URL for specific response code like 200 OK without Indy throwing all sorts of exceptions out. ConnectionTimeout,ConnectionClosedGracefully, etc...
For example if URL is ...
2
votes
2answers
665 views
sending mail but no message-id
I am getting interesting rejections from my clients mail server when sending a mail with indy-10's tidMessage component saying:
550 Rejected: Message does not contain a Message-ID
I get this even ...
2
votes
5answers
2k views
Why can't I fetch an AOL captcha image in my Delphi program?
New demo code:
I am trying to get the captcha image from a AOL, and i keep getting an error 418.
unit imageunit;
///
/// h t t p s://new.aol.com/productsweb/
///
interface
uses
Windows, ...
2
votes
2answers
87 views
Does an Indy HTTP server have a built-in way to assign security to certain files/extensions?
In Delphi XE2 / Indy 10, I've been doing some work on a few Web Broker projects which include a web module capturing particular http requests, and if there's no particular matching request, it ...
