up vote 12 down vote favorite
12
share [g+] share [fb]

I'm trying to create a webapplication where I want to be able to plug-in separate assemblies. I'm using MVC preview 4 combined with Unity for dependency injection, which I use to create the controllers from my plugin assemblies. I'm using WebForms (default aspx) as my view engine.

If I want to use a view, I'm stuck on the ones that are defined in the core project, because of the dynamic compiling of the ASPX part. I'm looking for a proper way to enclose ASPX files in a different assembly, without having to go through the whole deployment step. Am I missing something obvious? Or should I resort to creating my views programmatically?


Update: I changed the accepted answer. Even though Dale's answer is very thorough, I went for the solution with a different virtual path provider. It works like a charm, and takes only about 20 lines in code altogether I think.

link|improve this question

Does using the virtual path provider still work with the routing in mvc.net ? – jmcd Oct 24 '08 at 11:35
@jmcd: it looks like it does. – Jakub Šturc May 25 '09 at 13:33
Is there any sample code you could post that allowed you to accomplish this? – steve_c Jan 11 '10 at 20:52
The project I tried it on was ditched, so I don't have example code at ready. However, the spark view engine allows this as well (sparkviewengine.com). There's a sample in there called modules I think, which separates areas in different assemblies. – Erik van Brakel Jan 11 '10 at 22:56
feedback

5 Answers

up vote 5 down vote accepted

Essentially this is the same issue as people had with WebForms and trying to compile their UserControl ASCX files into a DLL. I found this http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx that might work for you too.

link|improve this answer
feedback

This is what I would recommend. I would just structure my views in the core project in a manner to accomplish what you want. Come up with a naming convention for your views for use and then create controls or partial views for reuse.

I would then leverage the IViewLocator interface to change where to look for the views. After that, you can set your ViewLocator when you create your controller using the unity logic you put in, based on the criteria you want to use.

First, you will want to create a ViewLocator based on the structure you came up with.

public class CustomViewLocator : ViewLocator
{
        private string _area;

        public CustomViewLocator(string area)
        {
            _area = area;
        }

    	protected override string GetMasterLocation(RequestContext requestContext, string masterName)
    	{
    		RegisterMasterLocationFormats();
    		return base.GetMasterLocation(requestContext, masterName);
    	}

    	protected override string GetViewLocation(RequestContext requestContext, string viewName)
    	{
    		RegisterViewLocationFormats();
    		return base.GetViewLocation(requestContext, viewName);
    	}

    	private void RegisterViewLocationFormats()
    	{
    		if (!String.IsNullOrEmpty(_area))
    		{
    			ViewLocationFormats = new[]
                {
                    "~/Views/" + _area + "/{1}/{0}.aspx",
                    "~/Views/" + _area + "/{1}/{0}.ascx"
                };
    		}
    	}

    	private void RegisterMasterLocationFormats()
    	{
    		if (!String.IsNullOrEmpty(_area))
    		{
    			MasterLocationFormats = new[]
                {
                    "~/Views/" + _area + "/{1}/{0}.master",
                    "~/Views/" + _area + "/Layouts/{0}.master"
                };
    		}
    	}

    }

Then in your ControllerFactory, inside the CreateController method that you are using with unity, use this line to set your ViewLocator for the controller.

public IController CreateController(RequestContext context, string controllerName)
{
		var controller = null;  // Unity logic to retrieve controller.

		// Set the ViewLocator
		if (controller != null)
			((WebFormViewEngine)controller.ViewEngine).ViewLocator = new CustomViewLocator("Structure1");

		return controller;
}

Right now there really isn't a good way to implement what you want, but what I outlined above is probably the simplest route.

link|improve this answer
3  
This isn't accurate any more. There is no ViewLocator in version 1.0. – Jakub Šturc May 25 '09 at 13:18
feedback
protected void Application_Start()
{
    WebFormViewEngine engine = new WebFormViewEngine();

    engine.ViewLocationFormats = new[] { "~/bin/Views/{1}/{0}.aspx", "~/Views/Shared/{0}.aspx" };
    engine.PartialViewLocationFormats = engine.ViewLocationFormats;

    ViewEngines.Engines.Clear();
    ViewEngines.Engines.Add(engine);

    RegisterRoutes(RouteTable.Routes);
}

Set the 'Copy to output' property of your view to 'Copy always'

link|improve this answer
feedback

It took me way too long to get this working properly from the various partial samples, so here's the full code needed to get views from a Views folder in a shared library structured the same as a regular Views folder but with everything set to build as embedded resources. It will only use the embedded file if the usual file does not exist.

The first line of Application_Start:

HostingEnvironment.RegisterVirtualPathProvider(new EmbeddedViewPathProvider());

The VirtualPathProvider

   public class EmbeddedVirtualFile : VirtualFile
{
    public EmbeddedVirtualFile(string virtualPath)
        : base(virtualPath)
    {
    }

    internal static string GetResourceName(string virtualPath)
    {
        if (!virtualPath.Contains("/Views/"))
        {
            return null;
        }



        var resourcename = virtualPath
            .Substring(virtualPath.IndexOf("Views/"))
            .Replace("Views/", "OrangeGuava.Common.Views.")
            .Replace("/", ".");

        return resourcename;

    }


    public override Stream Open()
    {
        Assembly assembly = Assembly.GetExecutingAssembly();


        var resourcename = GetResourceName(this.VirtualPath);
        return assembly.GetManifestResourceStream(resourcename);
    }




}

public class EmbeddedViewPathProvider : VirtualPathProvider
{


    private bool ResourceFileExists(string virtualPath)
    {

        Assembly assembly = Assembly.GetExecutingAssembly();


        var resourcename = EmbeddedVirtualFile.GetResourceName(virtualPath);
        var result = resourcename != null && assembly.GetManifestResourceNames().Contains(resourcename);
        return result;
    }

    public override bool FileExists(string virtualPath)
    {
        return base.FileExists(virtualPath) || ResourceFileExists(virtualPath);
    }


    public override VirtualFile GetFile(string virtualPath)
    {

        if (!base.FileExists(virtualPath))
        {
            return new EmbeddedVirtualFile(virtualPath);
        }
        else
        {
            return base.GetFile(virtualPath);
        }

    }

}

The final step to get it working is that the root Web.Config must contain the right settings to parse strongly typed MVC views, as the one in the views folder won't be used:

<pages
    validateRequest="false"
    pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
    pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
    userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
  <controls>
    <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
  </controls>
</pages>

A couple of additional steps are required to get it working with Mono. First, you need to implement GetDirectory, since all files in the views folder get loaded when the app starts rather than as needed:

public override VirtualDirectory GetDirectory(string virtualDir)
    {
        Log.LogInfo("GetDirectory - " + virtualDir);
        var b = base.GetDirectory(virtualDir);
        return new EmbeddedVirtualDirectory(virtualDir, b);
    }

public class EmbeddedVirtualDirectory : VirtualDirectory
{
    private VirtualDirectory FileDir { get; set; } 

    public EmbeddedVirtualDirectory(string virtualPath, VirtualDirectory filedir)
        : base(virtualPath)
    {
        FileDir = filedir;
    }

    public override System.Collections.IEnumerable Children
    {
        get { return FileDir.Children; }
    }

    public override System.Collections.IEnumerable Directories
    {
        get { return FileDir.Directories; }
    }

    public override System.Collections.IEnumerable Files
    {
        get {

            if (!VirtualPath.Contains("/Views/") || VirtualPath.EndsWith("/Views/"))
            {
                return FileDir.Files;
            }

            var fl = new List<VirtualFile>();

            foreach (VirtualFile f in FileDir.Files)
            {
                fl.Add(f);
            }


            var resourcename = VirtualPath.Substring(VirtualPath.IndexOf("Views/"))
.Replace("Views/", "OrangeGuava.Common.Views.")
.Replace("/", ".");

            Assembly assembly = Assembly.GetExecutingAssembly();

            var rfl = assembly.GetManifestResourceNames()
                .Where(s => s.StartsWith(resourcename))
                .Select(s => VirtualPath + s.Replace(resourcename, ""))
                .Select(s => new EmbeddedVirtualFile(s));
            fl.AddRange(rfl);

            return fl;
        }
    }
}

Finally, strongly typed views will almost but not quite work perfectly. Model will be treated as an untyped object, so to get strong typing back you need to start your shared views with something like

<% var Model2 = Model as IEnumerable<AppModel>;  %>
link|improve this answer
feedback

An addition to all you who are still looking for the holy grail: I've come a bit closer to finding it, if you're not too attached to the webforms viewengine.

I've recently tried out the Spark viewengine. Other than being totally awesome and I wouldn't go back to webforms even if I was threathened, it also provides some very nice hooks for modularity of an application. The example in their docs is using Windsor as an IoC container, but I can't imagine it to be a lot harder if you want to take another approach. Read it here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.