0
votes
2answers
43 views

delphi, send image with indy10 from client to server

how i can send from a Timage (clientside) to another Timage(serverside)? I'm using delphi XE3 with idtcpclient1, idtcpserver1 (indy10 component). I already tried to do something but i had some ...
1
vote
1answer
83 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
157 views

Indy10, 400ms for a simple TCP/IP request and response

I can't figure out why a simple request and response is taking 400 ms to complete. It only needs under 1 ms to complete on localhost (loopback). When I make a request from my virtual machine to my ...
3
votes
2answers
208 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
2answers
696 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 ...
10
votes
2answers
991 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 ...
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. ...
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; ...
1
vote
3answers
1k views

Two-way TCP communication in Indy 10?

I am using TIdCmdTCPClient and TIdCmdTCPServer. Suddenly I find that I might like to have bi-directional communication. What would be best? Should I possibly use some other components? If so, which? ...
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 ...
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 ...