Search This Blog

Saturday, December 26, 2020

Eneter goes Open-Source

Eneter has transformed to the open-source project. Therefore, the source code for all platforms including accessory libraries (like special serializers and Secure Remote Password protocol) is now available under the MIT license on the GitHub portal here: Projects for particular Eneter related accessories can be found here:

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, March 5, 2016

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, May 11, 2014

HTML5: Request-Response Communication Using WebSockets

Simple example showing request-'multiple response' communication between HTML5 JavaScript and .NET using the WebSocket protocol.

Saturday, May 3, 2014

HTML5: Real-Time Push Notifications from .NET Application

Simple example showing publish-subscribe scenario between HTML5 JavaScript and .NET without using polling or long-polling mechanisms.

Friday, April 25, 2014

Eneter JSON Serializer for Java

Implementation of JSON serializer that can be used with Eneter Messaging Framework for Java.

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.