Behrouz.M
Behrouz.M

Reputation: 3573

What are the RPC approaches for .NET 4.0?

I am writing a Client/Server application need to communicate with each other via RPC.

I know .NET remoting as a beginner. If there is/are another alternative, please tell me.

Upvotes: 0

Views: 3890

Answers (3)

ariso
ariso

Reputation: 1443

https://github.com/Astn/JSON-RPC.NET

JSON-RPC.Net is a high-performance JSON-Rpc 2.0 server, leveraging the popular JSON.NET library. Host in ASP.NET, also supports sockets and pipes,

Requirements

dotnet 4.0 or mono

Upvotes: 0

Mahesh
Mahesh

Reputation: 1784

WCF Duplex is way to go http://msdn.microsoft.com/en-us/library/ms731064.aspx

Upvotes: 3

Myles McDonnell
Myles McDonnell

Reputation: 13335

Read up on WCF (Windows Communication Framework) and go from there.

Upvotes: 1

Related Questions