We are trying to make mock service to serve JSON. We have plain JSON strings stored in static files and want to serve them to client as they are, without any additional wrappers.
E.g. we have json string {"result_code":200,{"name":"John", "lastName": "Doe"}} and we want to get json response on client just like this without any Content or Data wrappers.
We have solution where we use data contracts and deserialize json to C# objects, but that's a bit complicated and we don't need it.
Thank you
IMyServiceReturningJsonin test's process), real server i.e. written with ASP.Net MVC (as Jededuah +1 suggests) or some other technology/language like node.js? Something else altogether?