Search This Blog

Thursday, July 4, 2013

How to Design Interprocess Communication

There are many aspects and possibilities that must be considered when designing the interprocess communication. E.g. which communication protocol or transportation mechanism shall be used, how to serialize data, what is the communication behavior, what to do if the connection is broken, etc.
This article will discuss the communication between processes and will try to provide a guide how
to consider various aspects and possibilities when designing the communication between processes.

Sunday, April 28, 2013

Digital Signature

Summary: A short explanation what is digital signature and how it works.

Saturday, March 23, 2013

Synchronous Client Service Communication

Summary: Example showing how to implement synchronous request-response communication between applications.

Saturday, March 9, 2013

How to add Eneter Library into Android Project

Summary: Step-by-step procedure showing how to add Eneter library into your Android project in Eclipse.

Saturday, November 10, 2012

Server Exposing Services via one IP Address and Port

Summary: Simple example showing how to implement a server exposing multiple services via one IP address and port.
The communication is realized via TCP and the implementation is provided for .NET and Android.

Sunday, October 21, 2012

Using fastJSON serializer with Eneter

Summary: Simple example showing how to use custom serializers for interprocess communication.

Monday, July 30, 2012

Android: How to Receive Notification Messages from Multiple .NET Applications via Websockets

Summary: Simple example showing how an Android application can subscribe to receive notification messages from multiple .NET applications using Websockets.

Sunday, March 4, 2012

Sunday, February 26, 2012

Sunday, January 29, 2012

SImple Request-Response Communication using TCP

Summary: Very simple example showing how to implement request-response communication using TCP.

Sunday, January 22, 2012

How to Implement Load Balancing to Distribute Workload

Summary: Simple example showing how to implement the load balancing if you need to increase the performance by distributing the workload across multiple services.

Sunday, October 23, 2011

Silverlight: Notification Messages from Desktop Application

Summary: A simple example showing how a Silverlight application can subscribe for notification messages from a desktop application.

Friday, October 21, 2011

Sunday, May 22, 2011

Independent Startup Order of Communicating Applications

Summary: A simple example showing how to implement the communication where the client application can start to communicate before the service application is running.

Sunday, May 15, 2011

Service Listening to TCP, HTTP and Named Pipe at the same Time

Summary: A simple example showing how to implement a service listening to TCP, HTTP and Named Pipe at the same time.

Thursday, April 21, 2011

Windows Phone 7: How to Encrypt Communication with Desktop Application

Summary: Simple example showing how to implement encrypted communication between Windows Phone 7 and standalone .NET application.

Sunday, April 3, 2011

Silverlight: How to Communicate with Desktop Application via HTTP

Summary: Simple example showing how to communicate between a Silverlight application and a standalone .NET application with using HTTP.