Search This Blog

Showing posts with label Communication. Show all posts
Showing posts with label Communication. Show all posts

Tuesday, June 21, 2016

Authenticated and Encrypted RPC

This example shows how to implement Remote Procedure Calls which are authenticated and encrypted individually for each user and connection session.
The example also shows how to retrieve the user name from within the called method.

Sunday, May 22, 2016

Xamarin: Simple Client Service Communication

A very simple example showing how to implement a client-service communication between Xamarin Android client and a .NET service.

Tuesday, March 29, 2016

Discovering Service within Network

A simple example showing how to implement a mechanism allowing clients to connect a service within a network if clients do not know the service address.

Saturday, February 27, 2016

Wednesday, July 29, 2015

RPC from Windows Phone 8.1 client to .NET service

Simple example showing how to call remote methods exposed by a .NET service application from Windows Phone 8.1 (Silverlight).

Saturday, May 23, 2015

Live Video Streaming from Windows Phone 8.1

Simple example showing how to implement live video streaming from Windows Phone 8.1 (Silverlight) to a standalone desktop application.

Sunday, December 21, 2014

Communication via WiFi without an External Wireless Router

Short explanation how to configure virtual wireless router on a Windows machine and how to use it for the interporcess communication.

Sunday, December 7, 2014

Monday, August 18, 2014

Live Video from Raspberry Pi to .NET

Simple example showing how to implement video streaming from Raspberry Pi camera to a .NET application.

Saturday, May 17, 2014

WinForm Application as Service

Simple example showing WinForm application as a service. It also shows how to set the threading model so that Eneter dispatches messages in main UI thread.

Sunday, March 23, 2014

Remote Procedure Calls between Android and .NET

Simple example showing Remote Procedure Calls between Android and .NET based on TCP.
And few words about RPC vs. Messaging.

Sunday, December 15, 2013

Native C++: How to communicate with .NET application

Simple example showing how to implement the interprocess communicate between an unmanaged (native) C++ application and a managed .NET application using Eneter Messaging Framework.

Wednesday, August 14, 2013

Protocol Buffers Serialization in .NET Communication

Using Protocol Buffers is much faster than BinaryFormatter. This is a short example how to use Protocol Buffers serialization for the communication between .NET applications.

Monday, August 12, 2013

Android: Fast Communication with .NET Using Protocol Buffers

Improve the performance of interprocess communication between Android and .NET using fast binary serialization (Protocol Buffers) instead of XML or JSON.

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.

Saturday, March 23, 2013

Synchronous Client Service Communication

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

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.

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.