Tag Archives: restful api

ASP.NET Web API Multiple parameters binding

The above is the default POST request which only accept one value and the value must be passed in from the body of the POST request as suggested from the parameter [FromBody]. In order to accept parameter directly from the … Continue reading

Posted in Uncategorized | Tagged , | 1 Comment

Creating ASP.NET Web API in Azure Project

When porting ASP.NET Web API to Azure Project, you may encounter error 404 when trying to call the restful api. To solve this problem, add a Global Application Class (Global.asax) in your Azure Project. Lastly replace the Application_Start method in … Continue reading

Posted in Azure | Tagged , , , , | Leave a comment