Using VirtualPathProvider to load ASP.NET MVC views from DLLs - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T06:15:36Zhttp://stackoverflow.com/feeds/question/236972http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/236972/using-virtualpathprovider-to-load-asp-net-mvc-views-from-dlls4Using VirtualPathProvider to load ASP.NET MVC views from DLLsjmcd2008-10-25T20:24:12Z2009-07-08T21:59:43Z
<p>Based on this question <a href="http://stackoverflow.com/questions/19746/views-in-seperate-assemblies-in-aspnet-mvc">here</a> and using code found <a href="http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx" rel="nofollow">here</a> I'm trying to load views that are embedded resources in a separate DLL project, and the original question's author says he has had success doing this - but I can't get it to work as it seems the MVC view engine is intercepting the request and still looking at the file system for the view. Exception:</p>
<pre><code>Server Error in '/' Application.
The view 'Index' or its master could not be found. The following locations were searched:
~/Views/admin/Index.aspx
~/Views/admin/Index.ascx
~/Views/Shared/Index.aspx
~/Views/Shared/Index.ascx
~/App/Views/admin/Index.aspx
~/App/Views/admin/Index.ascx
~/App/Views/Shared/Index.aspx
~/App/Views/Shared/Index.ascx
</code></pre>
<p>I am using a CustomViewEngine, like Rob Connery's /App structure one as follows:</p>
<pre><code>public class CustomViewEngine : WebFormViewEngine
{
public CustomViewEngine()
{
MasterLocationFormats = new[] {
"~/App/Views/{1}/{0}.master",
"~/App/Views/Shared/{0}.master"
};
ViewLocationFormats = new[] {
"~/App/Views/{1}/{0}.aspx",
"~/App/Views/{1}/{0}.ascx",
"~/App/Views/Shared/{0}.aspx",
"~/App/Views/Shared/{0}.ascx"
};
PartialViewLocationFormats = ViewLocationFormats;
}
}
</code></pre>
<p>Here are my routes:</p>
<pre><code> routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute("Home", "", new {controller = "Page", action = "Index", id = "Default"});
routes.MapRoute("Default", "Page/{id}", new { controller = "Page", action = "Index", id = "" });
routes.MapRoute("Plugins", "plugin/{controller}/{action}", new { controller = "", action = "Index", id = "" });
routes.MapRoute("Error", "{*url}", new { controller = "Error", action = "ResourceNotFound404" });
</code></pre>
<p>In my <a href="http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx" rel="nofollow">AssemblyResourceProvider</a> I'm checking to see if the path starts "~/plugin/" and then using the dll filename convention plugin.{controller}.dll</p>
<p>Any suggestions?</p>
<p>UPDATE: By the time the routed request for say <a href="http://localhost/plugin/admin" rel="nofollow">http://localhost/plugin/admin</a> is getting to the VirtualFileProvider it doesn't have any View attached at the end. So in the VirtualFileProvider's Open method the virtual path of "~/plugin/admin" is being passed in when it should be "~/plugin/admin/Index.aspx" as defined in my route above. Have I messed up my routes or am I right to be expecting this to happen?</p>
http://stackoverflow.com/questions/236972/using-virtualpathprovider-to-load-asp-net-mvc-views-from-dlls/238131#2381310Answer by Brad Wilson for Using VirtualPathProvider to load ASP.NET MVC views from DLLsBrad Wilson2008-10-26T15:07:48Z2008-10-26T15:07:48Z<p>The built-in WebFormsViewEngine uses VirtualPathProviders, so if you write a VPP and register it, you won't need to make any changes to the view engine.</p>
http://stackoverflow.com/questions/236972/using-virtualpathprovider-to-load-asp-net-mvc-views-from-dlls/238363#2383633Answer by jmcd for Using VirtualPathProvider to load ASP.NET MVC views from DLLsjmcd2008-10-26T17:58:22Z2009-07-08T21:58:02Z<ol>
<li>You must register your VirtualPathProvider within the Global.asax Application_Start handler.</li>
<li>You must call the view in your DLL using the special path like so: return View("~/Plugin/YOURDLL.dll/FULLNAME_YOUR_VIEW.aspx");</li>
</ol>
<p>Here's an article with downloadable code sample that demonstrates this:</p>
<p><a href="http://www.wynia.org/wordpress/2008/12/05/aspnet-mvc-plugins/" rel="nofollow">http://www.wynia.org/wordpress/2008/12/05/aspnet-mvc-plugins/</a></p>