I have to build small MVC3 ASP.NET based portal that will receive data in JSON form from other also MVC3 ASP.NET based web service. Service will get data from database, serialize it, and send it as JsonResult. Portal needs to capture that data and deserialize it back to model and toss it to the appropriate view.
As I'm kinda new to this, I was thinking to use WebClient for web portal, but I don't know if there is something better than that? Idea is to process data within controller.
Also, I would appreciate any examples/tutorials.
Thanks