Reputation: 3573
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
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
Reputation: 1784
WCF Duplex is way to go http://msdn.microsoft.com/en-us/library/ms731064.aspx
Upvotes: 3
Reputation: 13335
Read up on WCF (Windows Communication Framework) and go from there.
Upvotes: 1