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? Or should I kludge and have the 'client' poll the 'server' to ask if it wishes to communciate anything?

This is a very small system. Two clients and ten servers, with a burst of one tarnscation every 30 to 60 seconds for a few minutes once a day, so overhead for polling is inconsequential.

I'm just woder if there is a 'correct' way.


Update: this really is an incredibly simple system. Very little traffic and all of it simple. All transmissions are an indication of even type an an optional single parameter.

<event type> [ <parameter>] e.g. "HERE_IS_SOME_DATA 42"

This can be sent in both directions, hover here is no "reply" as such. Just fire off a message (and hope that it got there)? Receive an Ack with no data? Non-catching of an exception indicates that message was successfully sent?)

Would it be possible (would it be overkill) to use two TIdCmdTCPServer?

link|improve this question

1  
I hope @Remy will butt in, coz I know this is possible with Indy as we do it but I don't have the details at my fingertips. Basically boils down to keeping the connection from clients alive which will allow both server and client to initiate a transfer over tcp. – Marjan Venema Jan 8 at 11:26
1  
So two clients each connect to some (one to ten) servers and have bi-directional communication with them? For example, when a client connects to four servers, at the same time, there are four TCP/IP connections, right? – mjn Jan 8 at 11:33
+1 to both. A good question, @mjn. Yes, each of the two clients can connect to any and all of the ten servers, so that's forty permanenly open connections (admittedly with very llittle traffic) – Mawg Jan 8 at 12:17
feedback

3 Answers

up vote 3 down vote accepted

Both TIdCmdTCPClient and TIdCmdTCPServer continuously poll their socket endpoints for inbound data during the lifetime of the connection. You do not have to do anything extra for that. So, as soon as a TIdCmdTCPClient connects to the TIdCmdTCPServer, both components will initially be in a reading state until one of them sends a command to the other.

Now, there is a problem with doing that - as soon as either component sends that first command, the receiving component will interpret it as a command and send back a reply, which the other component will interpret as a command and send back a reply, which will be interpretted as a command and send back a reply, and so on, causing an endless cycle of replies back and forth. For that reason, it is not wise to use TIdCmdTCPClient and TIdCmdTCPServer together. You should either use TIdTCPClient with TIdCmdTCPServer, or use TIdCmdTCPClient with TIdTCPServer. Depending on what exactly your protocol looks like, you may have to forgo using TIdCmdTCPClient and TIdCmdTCPServer altogether and just use TIdTCPClient with TIdTCPServer so you have more control over reading and writing on both ends. It is hard to answer with actual code without first knowing what the communication protocol should look like.

link|improve this answer
+1 Thanks, as always, Remy. For the coniferous command loop are you speaking of an automatic response, or programmatic? If automatic, can't I ignore it & wait for a programmatic response? – Mawg Jan 9 at 2:17
2  
Your update does not provide enough information to answer your question. Do your events need to send replies back to the sender? If not, then setting the TIdCommand.PerformReply property to False in your OnCommand event handlers may be the solution to your problem so you can continue using TIdCmdTCPClient and TIdCmdTCPServer together. It would be really helpful if you would elaborate on your protocol more and show an example of a typical bidirectioal conversation. – Remy Lebeau Jan 9 at 3:30
2  
An ACK would be a reply. That would greatly complicate things. Doable, but would require more work. – Remy Lebeau Jan 9 at 5:26
2  
When data is sent to a socket without raising an exception, it just means the data was successfully passed into the kernel's internal buffer for later transmission over the wire. There is no way to know if that buffer was actually transmitted and received without the receiver sending some kind of ACK back. For what you describe, I would switch to TIdTCPClient and TIdTCPServer to have control over the reading of inbound packets, then process and discard ACKs before passing anything else to TIdCommandHandlers.HandleCommand() manually. Your OnCommand event handlers can then send ACKs. – Remy Lebeau Jan 9 at 21:32
1  
To invoke command handlers manually, use the TIdCommandHandlers.HandleCommand() method, like I mentioned earlier. You do not have to use command handlers if you do not want to, but they are useful when dealing with line-based textual protocols. – Remy Lebeau Jan 10 at 5:41
show 7 more comments
feedback

A single TCP socket connection can be used in two directions. The server can send data asynchronously to the client at any time. It is up to the client however to read the socket, for asynchronous processing this is done in a listener thread which reads from the socket and synchronizes incoming data operations with the main worker thread.

An example use case in the Indy components is the Telnet client component (TIdTelnet) which has a receive thread listening for server messages.

But you also asked about the 'correct' way - and then the answer depends on other factors such as network stability, guaranteed delivery and how to handle temporary server outages. In enterprise environments, one central messaging hub is preferred in many use cases, so that all parties connect only to this central server which is only responsible for reliable message delivery, and keeps messages until the recipient is available.

link|improve this answer
+1 I'll check the demo and get right back to you. – Mawg Jan 8 at 12:18
I don't see an Indy 10 demo at indyproject.org/sockets/demos/index.en.aspx So I will check out the Indy 9 demos – Mawg Jan 8 at 12:21
1  
I am not sure if the demos include the Telnet client, I mentioned TIdTelnet because reading its sources helps to understand how the basic idea can be implemented with Indy – mjn Jan 8 at 12:32
|+1 thanks. I'm still reading code – Mawg Jan 9 at 2:11
feedback

You can download the INDY 10 TCP server demo sample code here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.