I have a webservice which is written in mvc. In controller, I return json object without any view page. Like;
return Json(model, JsonRequestBehavior.AllowGet);
It just print the json object to the browser. now, i need to reach that json object from another mvc project.
I may try to get the source code of that page and parse it to json. Is that way sufficient?
or Is there any other efficient way to reach and parse that json object?