The other night I had the opportunity to head down to Columiba SC to speak at their Enterprise Guild about Web API. First I would like to thank everyone who showed up, I had a great time and I hope everyone found the information useful. Below is the content from the session: Slides IISHosted Self Host...
When working on a demo application recently I was trying to get an ajax call to hit one of my Web API routes and I was immediately hit with the following exception. XMLHttpRequest cannot load http://localhost:33884/api/ToDo/ . Origin http://localhost:3462 is not allowed by Access-Control-Allow-Orig Of...
Today I was trying to publish a Asp.net 4.5 site to our server and I received the following error; The Application pool that you are trying to use has the ‘managedRuntimeVersion’ property set to v4.0. This application requires ‘v4.5’ I thought this was odd so I went to change the App pool, only to see...
***** If there is any type of built in MVC support for helping find these issues please let me know ***** Ok, this may be common sense to everyone else on the net and if so… Oh Well. Tonight I was working on the MVC3 rewrite of the Dimecasts.net website and after a bit of refactoring my search feature...
As I keep doing this on MVC projects, thought I may as well blog it, so the next time I need it I can find it myself :) To keep ASP.NET MVC controllers clean and organised, I find it much easier to split them so they handle only a single action each. This helps significantly with maintaining some semblance...