When trying to create a sandbox project using WebAPI (on MVC4), I was struggling with a weird problem: My data wasn't being received in the server. I had the following jQuery call
$.post("api/Values", {value1:1, value2:2}, function(result){ console.log(result); })
and the WebAPI...