Home > Uncategorized > Getting Started with Microsoft Orleans

Getting Started with Microsoft Orleans

We .NET developers already know that .NET is rich on the client side development. A lot of library and framework on this space. However .NET community is lack of the highly scalable server side application or distributed computing. However Microsoft Orleans and Akka .NET comes into .NET world to bring hope and make .NET exciting again. We will dive in into how to setup client and server application with Microsoft Orleans in this blog post.

Microsoft Orleans is framework for building distributed system with Actor model. It have a simple programming approach that make it easier for all level of developer to build the software. It also has a great documentation and step by step tutorial. However i have difficulties on setting the orleans silo ( server ) to be accessed from the remote computer. Here’s how we can do that.

I assume that you have already follow the tutorial on Step by step tutorial especially the first three post.

My First Orleans Application

Minimal Orleans Application

Running in a Stand alone silo

This blog post is the companion on how to setup the configuration for server and client so it can communicate from different node/computer. Here’s the example setup on my development machine.

2016-07-26_6-30-02

 

Let’s get started with Visual Studio. I assume that you have already follow the step by step on Running in a Stand alone silo. Here’s the solution on my Visual studio.

2016-07-26_6-34-49

The HelloGrain.cs only contains the simple implementation of the grain.

2016-07-26_6-37-29

Add nuget package Orleans Server to GrainCollection project. Build the project so it copy the OrleansHost.exe to the Debug folder

2016-07-26_6-39-05

 

Now set the external program into OrleansHost.exe. You can do that by Right Click properties and choose Debug tab.

 

2016-07-26_6-41-46

 

Let’s take a look at the OrleansConfiguration.xml in GrainCollection project ( server ). Make sure that it will refer to the server ip address (in this case 192.168.1.7)

 

2016-07-26_6-43-32

 

Now you can run the GrainCollection project. Please wait until the console output the following text.

 

2016-07-26_6-46-50

 

We are done with the server. Now let see how we can setup the client to connect to the server. Please create ClientConfiguration.xml that contain the following setting. It should refer to server ip address

2016-07-26_6-50-35

 

Here’s how the client connect to the server and say greetings from Actor.

 

2016-07-26_6-52-26

Now you can run the client and interact with the server.

 

2016-07-26_6-56-32

I hope this tutorial can help setting up server and client on Microsoft Orleans.

You can find the source code here

Cheers

 

Advertisement
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: