Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8049461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T06:47:31+00:00 2026-06-05T06:47:31+00:00

I’m creating a CMS using ASP.NET MVC, and by design, I’ve decided that each

  • 0

I’m creating a CMS using ASP.NET MVC, and by design, I’ve decided that each plugin (add-on) should have a key in the incoming HTTP request. Thus, I have this general route in my host application:

{pluginKey}/{controller}/{action}/{id}

I’ve created a custom controller factory which implements IControllerFactory and of course, it has a method to create controllers base on the ReqeustContext and controller name. However, I want to create an artificial HttpContext (alongside all other relevant objects like HttpRequest, RequestContext, RouteData, etc.) so that controllers of plugins won’t misinterpret these URL segments wrongly. In other words, I want to cut the first part of the incoming URL, and make plugins think that they’re processing this URL:

{controller}/{action}/{id}

How can I achieve this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T06:47:33+00:00Added an answer on June 5, 2026 at 6:47 am

    While you could create a new implementation of all the context classes, it seems like a bit of overkill. Why not use a derived Route Handler that applies the filtering functionality before returning the HttpHandler? Here’s an example:

    //  To avoid conflicts with similarly named controllers, I find it to be good practice
    //  to create a route constraint with the set of all plugin names.  If you don't have 
    //  this function already, you should be able to access it with reflection (one time 
    //  per app lifecycle) or you hard-code them.  The point is to have a regex which ensures
    //  only valid plugins will get selected
    string[] pluginNames = GetPluginNames();
    string pluginNameRegex = string.Join("|",pluginNames);
    
    Route pluginRoute = new Route (
        url: "{pluginKey}/{controller}/{action}/{id}",
        defaults: null,
        constraints: new RouteValueDictionary(new { pluginKey = pluginNameRegex }),
        routeHandler: new PluginRouteHandler()
    });
    
    //  The custom route handler can modify your route data after receiving the RequestContext 
    //  and then send it to the appropriate location.  Here's an example (markdown code/untested)
    //  Note: You don't have to inherit from MvcRouteHandler (you could just implement IRouteHandler
    //  but I'm assuming you want Mvc functionality as the fallback)
    public class PluginRouteHandler : MvcRouteHandler 
    { 
        public PluginRouteHandler(IControllerFactory controllerFactory) 
          : base(controllerFactory)
        {}
    
        protected override IHttpHandler GetHttpHandler(RequestContext requestContext){
            if(ValidatePluginRoute(requestContext)) 
            {
               //  we are going to remove the pluginKey from the RequestContext, It's probably wise
               //  to go ahead and add it to HttpContext.Items, in case you need the data later
               requestContext.HttpContext.Items["pluginKey"] = requestContext.RouteData.Values["pluginKey"];
    
               //  now let's get ride of it, so your controller factory will process the 
               //  requestContext as you have described.
               requestContext.Values.Remove("pluginKey");
    
               //  the route will now be interpreted as described so let the flow go to the MvcRouteHandler's method
            }
            return base.GetHttpHandler(requestContext);
        }
        static bool ValidatePluginRoute(RequestContext requestContext){
            return requestContext.RouteData.ContainsKey("pluginKey");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I have thousands of HTML files to process using Groovy/Java and I need to
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I have a jquery bug and I've been looking for hours now, I can't
Basically, what I'm trying to create is a page of div tags, each has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.