I dreamed this whole thing and implemented it on my own over a year ago.
Download and install ASP.Net MVC Framework.
See steps 7 -9 of previous post for tweaking IIS.
See the RegisterRoutes method below.
"EntryPoint" is a concrete action method on a abstract base class. It performs common parameter massaging, environment intialization and authentication stuff then routes the request to the appropriate abstract Get(), Put(), Post(), Delete() or Head() method implemented by the current Controller subclass. It does this via a switch block driven by the value of "httpMethod" obtained thusly: string httpMethod = HttpContext.Request.HttpMethod.ToUpper();
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
Route route;
route = new Route("Help", new MvcRouteHandler());
route.Defaults = new RouteValueDictionary(new { controller = "Help", action = "Index" });
RouteTable.Routes.Add(route);
route = new Route("{controller}/{id}.{format}", new MvcRouteHandler());
route.Defaults = new RouteValueDictionary(new { action = "EntryPoint" });
route.Constraints = new RouteValueDictionary(new { format = @"json|pox|xhtml" });
RouteTable.Routes.Add(route);
route = new Route("{controller}.{format}", new MvcRouteHandler());
route.Defaults = new RouteValueDictionary(new { action = "EntryPoint" });
route.Constraints = new RouteValueDictionary(new { format = @"json|pox|xhtml", id = "" });
RouteTable.Routes.Add(route);
route = new Route("{controller}/{id}", new MvcRouteHandler());
route.Defaults = new RouteValueDictionary(new { action = "EntryPoint", format = "xhtml" });
RouteTable.Routes.Add(route);
route = new Route("{controller}", new MvcRouteHandler());
route.Defaults = new RouteValueDictionary(new { action = "EntryPoint", format = "xhtml", id = "" });
RouteTable.Routes.Add(route);
route = new Route("", new MvcRouteHandler());
route.Defaults = new RouteValueDictionary(new { controller = "Home", action = "Index" });
RouteTable.Routes.Add(route);
}
Thursday, November 19, 2009
Removing Services Without Using installutil /u
If you are unable to use intallutil /u assemblyName.exe becuase the assembly no longer exists or something like that, this is the EASY WAY :
sc delete SERVICENAME
I found this on "StackOverflow" derivative called "SuperUser" :
A collaboratively edited question and answer site for computer enthusiasts – on any platform. It's 100% free, no registration required.
http://superuser.com/questions/49185/how-to-remove-a-dead-service-in-windows-xp
sc delete SERVICENAME
I found this on "StackOverflow" derivative called "SuperUser" :
A collaboratively edited question and answer site for computer enthusiasts – on any platform. It's 100% free, no registration required.
http://superuser.com/questions/49185/how-to-remove-a-dead-service-in-windows-xp
Subscribe to:
Posts (Atom)
C# Sucks!
JK!! Seriously, though, somewhere around C#-3 we should have inculcated ourselves with the question: "Does 'CAN' == 'SHOULD...
-
Today I learned that it is possible to call private and protected methods by using reflection. This is a great technique for Unit Testing su...
-
Pesky too many open cursors error from ORACLE can be investigated with the help of the following code: --total cursors open, by username ...