Tagged Questions
0
votes
1answer
57 views
Send Files with TCP from client to server knowing file size Delphi
Hello im trying to send a file Via TCP with delphi using Indy Components with a Client/Server
i manage to send and recieve the files correctly, the problem is before sending the file i would like to ...
-1
votes
1answer
498 views
Delphi TcpClient(Sockets) and TcpServer(Sockets) connection? [closed]
I am trying to connect from a PC to another PC in Delphi using TcpClient(Sockets) and TcpServer(Sockets).
Is it possible to connect like this? And if possible, how do I connect them to each other?
1
vote
1answer
151 views
Difference between .net TcpClient and Delphi2010 IdTCPClient
I have the following code written in delphi2010:
TCPClient := TidTcpClient.Create;
TCPClient.Host := '192.168.12.131';
TCPClient.Port := 1312;
TCPClient.Connect;
...
0
votes
1answer
236 views
Synapse TBlockSocket occasionally freezes
I've createdan application which communicates with external device using TCP/IP as a client. I'm using Synapse library (v40) for communication. Sometimes however communication freezes. I managed to ...
3
votes
1answer
186 views
Apple IOS application and Delphi TidCmdTcpServer
I have a server process written in Delphi which has been in production for several years. It is using the TidCmdTcpServer to communicate with the client (also written in Delphi and using the ...
1
vote
1answer
1k views
Indy TCPServer doesn't receive all packages from TCPClient when sending packages too frequently
I have a problem with Indy TCP connection. I use Turbo Delphi 2006 with Indy 10.
I want to send multiple TCP packages from idTCPClient to idTCPServer.
It works finely, when I want to send only one ...
1
vote
3answers
951 views
empty buffer but IdTCPClient.IOHandler.InputBufferIsEmpty is false
I have problem in below code with idTCPClient for reading buffer from a telnet server:
procedure TForm2.ReadTimerTimer(Sender: TObject);
var
S: String;
begin
if ...
0
votes
1answer
2k views
How can I wait for a string from a server with IdTCPClient?
I have a problem with IdTelnet (indy 10.1). I can't read the data from a server in Unicode mode. and now I want to write the telnet terminal with IdTCPClient.
The server sometimes send one line and ...
0
votes
1answer
524 views
Delphi/Indy. Long delay in procedure TIdStackWindows.Connect
My app is hanging in the call to procedure TIdStackWindows.Connect. When the TCP/IP address exists there is no problem, but if it doesn't, I get the hang. The IP address is a literal- there is no ...
1
vote
2answers
1k views
Indy TCPClient OnDisconnect event not working
type
TForm8 = class(TForm)
idtcpclnt1: TIdTCPClient;
idtcpsrvr1: TIdTCPServer;
procedure FormCreate(Sender: TObject);
procedure idtcpsrvr1Execute(AContext: TIdContext);
procedure ...
1
vote
1answer
996 views
About TCPClient receive data from TCPServer problem
Hello everyone~
I have a problem to solve~
I have created a server that every one can connect to this server.
The function of The server is in order to transfer message from one client to another ...
0
votes
1answer
2k views
TCPclient.connected problem in Delphi - Indy
I am having problem with IdTCPclient.connected function from Indy in Delphi. I am using Indy10 and Delphi2010 environment. My problem is every time i check the TCP connection with ...
0
votes
2answers
2k views
Sending binary data with Indy through TCP\IP, how?
How to send a binary data with Indy components? Which of them is most suitable for this task? I've tried to use TIdTcpClient but it allows only to send strings.
I've found one reponce for that ...
1
vote
2answers
591 views
How to pass a cstring from Delphi
I'm writing a tcp client in Delphi for a server that has a series of messages defined as c structs. Below is an example conversion of one of the messages:
struct {
int32 Reserved;
...
1
vote
2answers
1k views
Connect with TTcpClient through a http proxy
How can i connect to a server through a http proxy server in delphi?
What about SOCKS5 proxy?
Google doesn't have any suggestion!