Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / C#

TCP Application Protocol – TCP/IP Based Inter-process Communication

Rate me:
Please Sign up or sign in to vote.
3.33/5 (5 votes)
8 Sep 2019MIT5 min read 15.7K   1.3K   14   6
TCP Application Protocol is an IPC (Inter-process Communication) created to provide common remote interface for between applications.

Latest code and release package available at GitHub and NuGet.

Introduction

TCP Application Protocol is server/client text message protocol created on top of TCP (Transmission Control Protocol). TCP Application Protocol is a high level communication protocol to provide a common remote interface between applications which can be easily integrated to any application with minimum coding effort from developer on both server and client application.

Why TCP?

Communication between two applications is generally called as IPC (Inter-Process Communication). There are many ways of IPC. TCP/IP is one of them. The advantage of TCP/IP is that the communicating applications can be running on different computers and different locations. Since Internet also works on TCP/IP, remote applications can communicate over the internet. TCP/IP is completely platform independent, standard, and implemented by all operationg systems (and many other devices). (Reference: Code Project - A Complete TCP Server/Client Communication and RMI Framework in C# .NET – Implementation)

Advantage of TCP Application Protocol

TCP Application Protocol is server/client implementation where server application will response to request initiate from client application. With TCP Application Protocol, application specific commands can be easily defined by server application. Each registered command keyword can include with one or more optional or mandatory parameter as needed. Incoming message from client will be verified against registered command set and have defined parameters parse and assigned. Developer can focus on implementation of each of the command.

As human readable text message based protocol, no translation and interpretation of machine code is required on message passed between server and client. Furthermore, registered commands on server application can be easily retrieved by client application without the need to refer to user manual or code.

With TcpAppServerPlugin class, command set for plugin components can be developed and added to host application easily at a later stage without the requirement to rebuild the host application. Moreover, client application may instantiate objects on server application remotely. Number of clients allowed to connect to server at a time can also be configured.

About TCP Application Protocol

Any TCP client including realterm can be use to interact with application which implement TCP Application protocol since the protocol is implemented in human readable text message.

In general, the command between client and server is defined as follows:

  • Command sent from client starts with command keyword followed by parameters of the defined command if any and terminated with carriage return (\r, 0x0D). Extra parameters will be ignored.
    <Command Keyword> [Parameter0] … [ParameterN]
  • Response from server to client is also begun with command keyword follow by status and response message. Status flag is either OK or ERR.
    <Command Keyword> <Status> <Response Message / Return Value>

TCP Application Server has predefined command set which is created to retrieve information about server application, registered commands and plugins which are intended to ease the integration process between client and server application. Simply send Help command to server will return list of registered commands. Other commands such as FunctionList?, ApplicationName?, ApplicationVersion? are created to return information from server application to connected client.

TCPAppClientTerminal is an example of TCP client implementation. Compiled binary and source is available for download. The screenshot below shows a simple TCP Application Client Terminal in action.

Image 1

Architecture of TCP Application

TcpAppServer (TCP Application Server) and TcpAppClient (TCP Application Client) are derived from TcpServer and TcpClient respectively which is a general TCP communication object.

Image 2

Getting Started with TCP Application Server

  • Install NuGet Package CodeArtEng.Tcp to project.
  • Create an object of TcpAppServer.
  • (Optional) Define welcome message which returns to client on connect.
  • (Optional) Subscribe to ClientConnected and ClientDisconnected event.
  • Start server.
  • Server shall be stopped and disposed on application exit to release executing thread.
C#
//Setup
AppServer = new TcpAppServer(this);
AppServer.WelcomeMessage = "Welcome to TCP Application Server";
AppServer.ClientConnected += AppServer_ClientConnected;
AppServer.ClientDisconnected += AppServer_ClientDisconnected;
AppServer.Start(12000);
C#
//Termination
AppServer.Stop();
AppServer.Dispose();

Register Application Specific Command

  • Command can be registered to server application with RegisterCommand method.
  • Optional and Mandatory argument can be added to command as TcpAppParameter object.
  • Each command shall associate with a callback function which defined its implementation.
C#
//TCP Application Server Customization Test
AppServer.RegisterCommand("CustomFunction", 
                          "Dummy Custom Function", customFunctionCallback);
AppServer.RegisterCommand("CustomFunction2", "Dummy Custom Function with Parameter", 
                           customFunction2Callback,
    new TcpAppParameter("P1", "Parameter 1"),
    new TcpAppParameter("P2", "Parameter 2, optional.", "10"));

Working with Plugin

Plugin provides great extensibility to application where new feature and components can be added at a later stage. TCP Application Protocol is equipped with capability to handle and extend command set in plugin components as well as instantiate object in server application, let’s see how.

Preparation on Plugin Components

  • Install NuGet Package CodeArtEng.Tcp to plugin project.
  • Implement ITcpAppServerPlugin interface on plugin class.
  • Create plugin implementation class with TcpAppServerPlugin as base class or private object in plugin class. The TcpAppServerPlugin class will interact with TcpAppServer for command registration and execution.
  • Register commands from plugin components to host application using TcpAppServerPlugin object.
  • Make sure ExecutePluginCommand and ShowHelp methods are calling the corresponding method in TcpAppServerPlugin object.
C#
//Example plugin implementation
public class TcpAppServerSamplePlugin : ITcpAppServerPlugin
{
    private readonly TcpAppServerPlugin TcpAppPlugin;

    public string Name { get; set; }

    public string Alias { get => Name; set => Name = value; }

    public void ExecutePluginCommand(TcpAppInputCommand sender)
    {
        TcpAppPlugin.ExecutePluginCommand(sender);
    }

    public TcpAppServerSamplePlugin()
    {
        TcpAppPlugin = new TcpAppServerPlugin();
        TcpAppPlugin.RegisterCommand("PluginCommand1", "Plugin Command 1", 
                                      delegate (TcpAppInputCommand sender)
            {
                sender.Status = TcpAppCommandStatus.OK;
                sender.OutputMessage = "Command 1 Executed!";
            });
    }

    public bool DisposeRequest() { return true; }

    public void ShowHelp(TcpAppInputCommand sender)
    {
        TcpAppPlugin.ShowHelp(sender);
    }
}

Add Plugin Component to Server Application

On server application, include plugin component object to TcpAppServer upon created with AddPlugin method. It’s important to ensure the Alias name for each plugin component is unique. This method is designed for object which instantiates by server application.

Alternatively, plugin object can be instantiated by client application. To do so, the allowed plugin type must be first registered with TcpAppServer using RegisterPluginType method. Only ITcpAppServerPlugin object type is allowed to register.

C#
//Example
TcpAppServerSamplePlugin SamplePlugin = new TcpAppServerSamplePlugin();
AppServer.RegisterPluginType("SamplePlugin", typeof(TcpAppServerSamplePlugin));

Commands registered with plugin object can be retrieved by sending Help <Alias> command from client to server. To execute command in plugin object, just send Execute <Alias> <Command Keyword> [Parameters].

Managing Connected Clients

If your server applications have no restriction on numbers of client connected at a time, nothing needs to be done. Otherwise, you may use the MaxClients property to limit number of connected clients. Alternatively, we can also subscribe to ClientConnected event to accept or reject an incoming connection.

History

  • 8th September, 2019 - First release

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Technical Lead
Malaysia Malaysia
Official Page: www.codearteng.com

Comments and Discussions

 
SuggestionNice idea, but limited Pin
David Maw9-Sep-19 8:45
David Maw9-Sep-19 8:45 
GeneralRe: Nice idea, but limited Pin
Code Artist10-Sep-19 1:53
professionalCode Artist10-Sep-19 1:53 
GeneralMy vote of 3 Pin
sx20089-Sep-19 2:03
sx20089-Sep-19 2:03 
GeneralRe: My vote of 3 Pin
Code Artist9-Sep-19 4:47
professionalCode Artist9-Sep-19 4:47 
PraiseMy vote of 5 Pin
User 2623528-Sep-19 4:11
User 2623528-Sep-19 4:11 
GeneralRe: My vote of 5 Pin
Code Artist8-Sep-19 5:30
professionalCode Artist8-Sep-19 5:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.