Indy (short for Internet Direct) is an open source library for Delphi, C++Builder, and FreePascal, supporting client and server implementations of TCP, UDP and RAW sockets as well as over 100 higher level protocols. Some of the supported protocols include: SMTP, POP3, IMAP, NNTP, HTTP.
0
votes
0answers
13 views
Indy TIdCmdTcpClient debug time losing commands
I have an application with TIdCmdTcpClient and command handlers.
What happens is that sometimes if successive calls to the same command handler (same cmd) arrive from the server (a C external app) ...
0
votes
0answers
79 views
Indy10 TCP and asynchronous data exchange
Good morning to all.I am building a Delphi TCP server/client application using Indy 10.0.52,with TIdTCPClient and TIdTCPServer. I have problem with receiving asynchronous responses from server. Here's ...
0
votes
0answers
20 views
Tcp connection exception
my server has a list of 4 TCP connected clients . if list full , next client must reject
//Server side
unit ServerUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, ...
0
votes
0answers
108 views
+50
How to parse RTSP request and response headers?
I'm in the middle of building an RTSP server, and am creating two request/response objects named TRTSPRequest and TRTSPResponse similar to TWebRequest and TWebResponse but specific to RTSP. I have a ...
-5
votes
0answers
70 views
Download a file using TIdHTTP [closed]
I have a URL in the format of http://my-site.com/go.php?id=123456789. If i browse to it in a browser, I download a file. How would I automate this using TidHTTP?
0
votes
1answer
68 views
How to go about building an RTSP server using Indy components?
I would like to provide a stream of images via RTSP using Indy 10 components. I don't need to know all the individual requests and all, that's all covered separate from what I need. But what Indy ...
1
vote
3answers
101 views
Detect TCP connection/disconnection in Delphi
My application has a server form that includes a StringGrid. The server only allows 4 clients to be connected at once. It will add any tcp connections from the client-side while the list is not full.
...
0
votes
1answer
42 views
how to get delphi Xe2 Indy 10 socket server peer host name
Here is my code...
procedure TMainForm.tsConnect(AContext: TIdContext);
var
s, INstr, adr:string;
port: Integer;
begin
with TMyContext(AContext) do
begin
Con := Now;
if ...
-1
votes
1answer
54 views
What is the idea behind loading large amount of data in a Scroll Box?
I'm using Delphi XE3, and trying to create a massaging application same as outlook type, but when I try to load the Tscroll box with data about 2000 record it's getting so slow!
How can outlook ...
0
votes
1answer
39 views
IdTCPServerExecute runs but does not receive data
i am very new to delphi and i have two projects written in delphi which must communicate - a client and a server. i have managed to get comms going for the connection and disconnection, but i can't ...
0
votes
1answer
80 views
why warning appears when sending bitmap frame into MemoryStream to client?
Before I explain my problem, I'm sorry for my bad english.
Okay, here my problem. when my Indy server sends bitmap frame to client, always appeared warning like this :
"EAccessViolation at address ...
0
votes
1answer
51 views
Client's udpserver don't response
My server form has stringgride that accept only 4 tcp connected user
For this purpose, I put udpclient in my server and udpserver in clients
In tcp-onconnect event in server form :
//Server Side ...
-1
votes
1answer
100 views
How do I ignore the response of a POST request in Indy?
How can I send a POST request with Indy (10) and then ignore the result(s) or lowlevel API recv?
I'm asking because I do not need the results and I would like to save bandwidth.
0
votes
1answer
28 views
Does IdIMAP4.UIDRetrieveEnvelope get the entire message body?
Does IdIMAP4.UIDRetrieveEnvelope method retrieve the entire message body or only the headers?
4
votes
1answer
161 views
How do I receive push notifications with Indy?
I have a device that uses restful Web services and I have used its request/response functionality whereby I send it a command via HTTP GET and it responds with the appropriate XML.
I now need to use ...
2
votes
2answers
93 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 ...
2
votes
0answers
107 views
How can I install my own copy of Indy10 from source, in Delphi XE4, if I get “not a valid win32 application” error?
Using the latest Indy10 sources from subversion, installing in to Delphi XE4,
I get this error when I try to install "dclIndyProtocols180.bpl":
Error:
Can't load package ...
0
votes
1answer
25 views
EIdReplyIMAP4Error in Indy
What are possible causes to look into for an "EIdReplyIMAP4Error" exception?
This is in regards to connecting to an IMAP4 account using SSL/TLS. sslvSSLv23 for the SSLOptions.Method and ...
1
vote
1answer
92 views
Delphi Indy 10 Disconnection issue
What i am doing:
My server sends data by going through the context list and after it locks on to the specific client it sends that client data, and it expects a reply which we handle in this ...
0
votes
1answer
73 views
Indy IMAP - which property to use for identifying new email messages?
Using: Delphi XE2, latest Indy snapshot from SVN (10.6.0.4997)
In the case of IMAP there are 2 properties - UID and MsgID which can be used to uniquely identify a message in a mailbox.
I'm writing ...
0
votes
1answer
30 views
Indy IMAPClient UIDRetrieveAllEnvelopes not getting other character set properly
Using: Delphi XE2, Windows 8 with US-English as default language
I am writing an email client with Delphi. I'm using TIdIMAP4 to connect to a GMail mailbox via IMAP and getting the message list like ...
3
votes
2answers
208 views
Delphi - MemoryStream or FileStream
I am downloading an EXE file from internet using Indy (idHTTP), and I can use memorystream or filestream to save it to disk, but I really do not know if there is any difference between them (maybe in ...
1
vote
2answers
106 views
Indy 10 and OpenSSL
I have recently upgraded my Delphi 7 to Delphi XE2 and I'm kinda new to it. I used Indy 10 with OpenSSL to receive HTTP Content. It works just fine and I would like to share my program with with other ...
1
vote
1answer
52 views
Is it possible to monitor the progress of individual TIdFTPServer client downloads?
I have a TIdFTPServer that has several clients connected simultaneously. I want to monitor the progress of each of the client downloads.
Anybody know if this is possible?
0
votes
1answer
40 views
TIdTCPServer reconnection for the same login user
My server build on TIdTCPServer should be capable for only one single connection for one user at the same time. I searched a lot but I can't find resolve.
Everything looks correct if there are no ...
3
votes
3answers
217 views
Delphi XE4 Indy compatibility issue between TBytes and TidBytes
Today I try to compile my XE3 project in XE4. First problem that I face is with Indy's FTCPClient.Socket.ReadBytes() method.
Before it was accepting TBytes type, now it insists on TidBytes.
...
1
vote
1answer
104 views
ssl httpserver throwing 'Access violation at address 00000000. Read of address 00000000' error
This code is throwing a 'Access violation at address 00000000. Read of address 00000000' error in runtime. I'm trying to get the server to accept ssl requests but am having real trouble.
I also have ...
1
vote
1answer
63 views
E2033 Types of actual and formal var parameters must be identical
I have this line of code throwing up the above error:
server:=TIdHTTPServer.Create;
server.OnQuerySSLPort(8092,true);
I've read about using the right vars/constants but that doesn't seem to work.
...
2
votes
2answers
80 views
How do I append text to a file on a Web server?
I am using Lazarus 1.0.8 (latest version) and I have installed Indy 10. I also have a website with a PHP script that saves on the server a text file (called "stats.txt"). I would like, using my ...
0
votes
1answer
79 views
How to send video converted to bitmap to Client using Indy TCPServer/Client?
By the way, I'm sorry for my bad english.
I want to create a streaming video system between client and server using Indy with this scenario, Webcam with stepper motors connected directly to the server ...
1
vote
2answers
154 views
Improve multiple synchronized access to data
At the beginning I would like to apologize for the excessive use of bold text. I wanted to simplify the understanding of the way my long questions.
I have a problem with multiple access to the data.
...
6
votes
1answer
191 views
Login to facebook with Indy
I would like to login to my facebook account with Indy. The version is 9.00.10 and I use OpenSSL with TIDHTTP and assigned a cookie manager to it. Everything works fine (I can send a POST request a ...
4
votes
2answers
85 views
How can I support SSL and non-SSL traffic on the same port using TIdTCPServer and OpenSSL in Delphi XE3?
I'm trying to set up a web server in Delphi XE3 using Indy and OpenSSL that can serve traffic over both HTTP and HTTPS connections on the same port.
I have seen two main approaches to this, and ...
1
vote
1answer
136 views
How to do NTLM Authentication using Indy 10 in Delphi 7?
I want to do NTLM Authentication with Indy 10 Components in Delphi 7 .
Here is my source code :
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs ...
1
vote
1answer
62 views
Multiple client program
I was wondering if I have a single server application and a bunch of clients connected. What if the first client asks for some data and then in the middle of that the second client asks for data. What ...
0
votes
1answer
61 views
Delphi IdNNTP: download a file from Usenet according to NZB-file
I have a NZB file, something like this:
<?xml version="1.0" encoding="utf-8" ?>
<nzb xmlns="http://www.newzbin.com/DTD/2003/nzb">
<head>
<meta type="title">Your ...
1
vote
2answers
163 views
Sending a JSON encoded object using Indy and Delphi [duplicate]
I've been working on this problem for far too many hours now without really making any headway. I have an old solution which works, but I am trying to port it to Indy to make the code a bit more ...
0
votes
1answer
171 views
Delphi XE3 indy gmail smtp
I have a problem sending gmail smtp mail with indy on delphi XE3 build (Version 17.0.4770.56661)
I can smooth send my laptop but other pc's give a error like "connection closed gracefully"
I add a ...
0
votes
0answers
102 views
Connecting to https through a browser using Indy http server as proxy
I'm sorry if this has been covered before but I've been searching all afternoon and struggling to find a working answer.
I'm trying to connect to a https website through a browser using indys http ...
1
vote
1answer
95 views
Delphis ZLib Interface not initialized
When working with Delphi XE2 I have the following problem:
When I try to compress a response from IdHTTPServer that should be sent to a client, I am not able to do this. The ...
0
votes
1answer
83 views
Using Indy httpserver to find keywords in a webpage [duplicate]
I'm trying to use Indy http server to find keywords within a webpage for a proxy filter. I've set up a proxy and the http server, which works with web browsers, but I'm struggling when it comes to ...
0
votes
1answer
233 views
Checking internet connection in delphi
How, i've made a program that uploads files on ftp server, the thing is that whenever i don't have access to the internet, it appears me an error, which stops running the program and says that i am ...
0
votes
2answers
123 views
Why does this web server return code 404 for Indy, but code 200 for every browser?
I have one URLs that works just fine in all browsers (5 tested on 2 computers), but if I try to get the page content using Get() of the Indy Http client, it returns error code 404, page not found. ...
0
votes
2answers
153 views
UTF-8 response of TIdHTTPServer with Free Pascal
This code starts a HTTP server which listens for requests on port 8080. When compiled with Delphi 2009, the Chinese text is rendered correctly. With Free Pascal 2.6.0 however, the browser displays ...
5
votes
1answer
121 views
Why does Indy Project HttpClient Get() give code 500 on some URLs which work fine in web browsers?
I have several URLs which work just fine in all browsers, but if I try to get the page content using Get() of the Indy Http client, it returns error code 500, internal server error. This is with the ...
0
votes
2answers
114 views
using curl via Indy in Delphi XE2
I am trying to use IdHTTP to equivalence this curl operation (known to work) in Delphi XE2:
curl http://hub.Healthdata.gov/api/action/datastore_search --data-urlencode '
{
"resource_id": ...
1
vote
2answers
263 views
IDHTTP.Post error
procedure Texport_plan.cxB_LoadClick(Sender: TObject);
var
HTTP: TIdHTTP;
Query: String;
Buffer: TMemoryStream;
loadData: Sting;
responseData: String;
begin
try
HTTP := ...
2
votes
1answer
95 views
In which thread is TIdThreadComponent OnTerminate and OnStopped executed?
Really simple but important question concerning TIdThreadComponent:
In which thread are OnTerminate and OnStopped executed - main thread or the worker thread?
Can I safely assume I am in main thread ...
0
votes
1answer
69 views
Indy 10 TIdHttpServer missing MaxConnectionReply property
I am using Indy10 and have created a Web server using a class derived from TIdHttpServer. In my subclass I override the DoMaxConnectionsExceeded method. And this seems to be properly firing when ...
1
vote
1answer
158 views
delphi Form with multi instance use
i've an FTP uploader project that uses a form created on run time to start uploading to multiple FTP Servers ( using Indy ) , my issue is as follows ( and i really need your help ) .
On a Form i put ...



