Reputation: 4406
I always end up using my own minimalistic wrapper for JSON-RPC (because it's trivially simple): am I missing out on something compared to standard libraries?
Upvotes: 3
Views: 776
Reputation: 1746
If your looking for a .net jsonrpc2 server. Check out http://jsonrpc2.codeplex.com/
I would also add to Shekhar's list
Upvotes: 0
Reputation: 7245
Yes it's simple. In past I took similar approach as yours and had my own minimal json-rpc implementation. Now I use jsonrpc2 for a fairly complex application. What I was missing earlier
Upvotes: 3