Logo

Maarten Balliauw {blog}

ASP.NET, ASP.NET MVC, Azure, PHP, OpenXML, VSTS, ...

About the author

Maarten Balliauw is currently employed as .NET Technical Consultant at RealDolmen. His interests are mainly web applications developed in ASP.NET (C#) or PHP and the Windows Azure cloud platform.
More about me More about me
Send mail E-mail me


ASP.NET MVC Quickly Subscribe to my RSS feed Follow me on Twitter! View Maarten Balliauw's profile on LinkedIn
View Maarten Balliauw's MVP profile

Search

Latest Twitter

    Follow me on Twitter...

    My projects

    Disclaimer

    The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

    © Copyright Maarten Balliauw 2010

    MvcSiteMapProvider 2.1.0 released!

    MvcSiteMapProvider The release for MvcSiteMapProvider 2.1.0 has just been posted on CodePlex. MvcSiteMapProvider is, as the name implies, an ASP.NET MVC SiteMapProvider implementation for the ASP.NET MVC framework. Targeted at ASP.NET MVC 2, it provides sitemap XML functionality and interoperability with the classic ASP.NET sitemap controls, like the SiteMapPath control for rendering breadcrumbs and the Menu control.

    Next to a brand new logo, the component has been patched up with several bugfixes, the visibility attribute is back (in a slightly cooler reincarnation) and a number of new extension points have been introduced. Let’s give you a quick overview…

    kick it on DotNetKicks.com

    Extension points

    MvcSiteMapProvider is built wih extensibility in mind. All extension point contracts are defined in the MvcSiteMapProvider.Extensibility namespace. The sample application on the downloads page contains several custom implementations of these extension points.

    Global extension points (valid for the entire provider and all nodes)

    These extension points can be defined when Registering the provider.

      Node key generator

    Keys for sitemap nodes are usually automatically generated by the MvcSiteMapProvider core. If, for reasons of accessing sitemap nodes from code, the generated keys should follow other naming rules, a custom MvcSiteMapProvider.Extensibility.INodeKeyGenerator implementation can be written.

      Controller type resolver

    In order to resolve a controller type and action method related to a specific sitemap node, a MvcSiteMapProvider.Extensibility.IControllerTypeResolver is used. This should normally not be extended, however if you want to make use of other systems for resolving controller types and action methods, this is the logical extension point.

      Action method parameter resolver

    Action method parameters are resolved by using ASP.NET MVC's ActionDescriptor class. If you want to use a custom system for this, a MvcSiteMapProvider.Extensibility.IActionMethodParameterResolver implementation can be specified.

      ACL module

    To determine whether a sitemap node is accessible to a specific user, a MvcSiteMapProvider.Extensibility.IAclModule implementation is used. MvcSiteMapProvider uses two of these modules by default: access is granted or denied by checking for [Authorize] attributes on action methods, followed by the roles attribute that can be specified in the sitemap XML.

      URL resolver

    URLs are generated by leveraging a MvcSiteMapProvider.Extensibility.ISiteMapNodeUrlResolver implementation. If, for example, you want all URLs generated by MvcSiteMapProvider to be in lowercase text, a custom implementation can be created.

      Visibility provider

    In some situations, nodes should be visible in the breadcrumb trail but not in a complete sitemap. This can be solved using the MvcSiteMapProvider.Extensibility.ISiteMapNodeVisibilityProvider extension point that can be specified globally for every node in the sitemap or granularly on a specific sitemap node. A sample is available on the Advanced node visibility page.

    Node-specific extenion points (valid for a single node)

    These extension points can be defined when Creating a first sitemap.

      Dynamic node provider

    In many web applications, sitemap nodes are directly related to content in a persistent store like a database.For example, in an e-commerce application, a list of product details pages in the sitemap maps directly to the list of products in the database. Using dynamic sitemaps, a small class implementing MvcSiteMapProvider.Extensibility.IDynamicNodeProvider or extending MvcSiteMapProvider.Extensibility.DynamicNodeProviderBase can be provided to the MvcSiteMapProvider offering a list of dynamic nodes that should be incldued in the sitemap. This ensures the product pages do not have to be specified by hand in the sitemap XML.

    A sample can be found on the Dynamic sitemaps page.

      URL resolver

    URLs are generated by leveraging a MvcSiteMapProvider.Extensibility.ISiteMapNodeUrlResolver implementation. If, for example, you want the URL for a sitemap node generated by MvcSiteMapProvider to be in lowercase text, a custom implementation can be created.

      Visibility provider

    In some situations, nodes should be visible in the breadcrumb trail but not in a complete sitemap. This can be solved using the MvcSiteMapProvider.Extensibility.ISiteMapNodeVisibilityProvider extension point that can be specified globally for every node in the sitemap or granularly on a specific sitemap node. A sample is available on the Advanced node visibility page.

    Conclusion

    Only one conclusion: grab the latest bits and start playing with them! And feel free to bug me with feature requests and issues found.

    Also, follow me on Twitter for updates on this project.


    Categories: ASP.NET | C# | General | MVC | Projects

    ASP.NET MVC 3 and MEF sitting in a tree...

    As I stated in a previous blog post: ASP.NET MVC 3 preview 1 has been released! I talked about some of the new features and promised to do a blog post in the dependency injection part. In this post, I'll show you how to use that together with MEF.

    Download my sample code: Mvc3WithMEF.zip (256.21 kb)

    kick it on DotNetKicks.com

    Dependency injection in ASP.NET MVC 3

    First of all, there’s 4 new hooks for injecting dependencies:

    • When creating controller factories
    • When creating controllers
    • When creating views (might be interesting!)
    • When using action filters

    In ASP.NET MVC 2, only one of these hooks was used for dependency injection: a controller factory was implemented, using a dependency injection framework under the covers. I did this once, creating a controller factory that wired up MEF and made sure everything in the application was composed through a MEF container. That is, everything that is a controller or part thereof. No easy options for DI-ing things like action filters or views…

    ASP.NET MVC 3 shuffled the cards a bit. ASP.NET MVC 3 now contains and uses the Common Service Locator’s IServiceLocator interface, which is used for resolving services required by the ASP.NET MVC framework. The IServiceLocator implementation should be registered in Global.asax using just one line of code:

    MvcServiceLocator.SetCurrent(new SomeServiceLocator());

    This is, since ASP.NET MVC 3 preview 1, the only thing required to make DI work. In controllers, in action filters and in views. Cool, eh?

    Leveraging MEF with ASP.NET MVC 3

    First of all: a disclaimer. I already did posts on MEF and ASP.NET MVC before, and in all these posts, I required you to explicitly export your controller types for composition. In this example, again, I will require that, just for keeping code a bit easier to understand. Do note that are some variants of a convention based registration model available.

    As stated before, the only thing to build here is a MefServiceLocator that is suited for web (which means: an application-wide catalog and a per-request container). I’ll still have to create my own controller factory as well, because otherwise I would not be able to dynamically compose my controllers. Here goes…

    Implementing ServiceLocatorControllerFactory

    Starting in reverse, but this thing is the simple part :-)

    [Export(typeof(IControllerFactory))]
    [PartCreationPolicy(CreationPolicy.Shared)]
    public class ServiceLocatorControllerFactory
        : DefaultControllerFactory
    {
        private IMvcServiceLocator serviceLocator;

        [ImportingConstructor]
        public ServiceLocatorControllerFactory(IMvcServiceLocator serviceLocator)
        {
            this.serviceLocator = serviceLocator;
        }

        public override IController CreateController(RequestContext requestContext, string controllerName)
        {
            var controllerType = GetControllerType(requestContext, controllerName);
            if (controllerType != null)
            {
                return this.serviceLocator.GetInstance(controllerType) as IController;
            }

            return base.CreateController(requestContext, controllerName);
        }

        public override void ReleaseController(IController controller)
        {
            this.serviceLocator.Release(controller);
        }
    }

    Did you see that? A simple, MEF enabled controller factory that uses an IMvcServiceLocator. This thing can be used with other service locators as well.

    Implementing MefServiceLocator

    Like I said, this is the most important part, allowing us to use MEF for resolving almost any component in the ASP.NET MVC pipeline. Here’s my take on that:

    [Export(typeof(IMvcServiceLocator))]
    [PartCreationPolicy(CreationPolicy.Shared)]
    public class MefServiceLocator
        : IMvcServiceLocator
    {
        const string HttpContextKey = "__MefServiceLocator_Container";

        private ComposablePartCatalog catalog;
        private IMvcServiceLocator defaultLocator;

        [ImportingConstructor]
        public MefServiceLocator()
        {
            // Get the catalog from the MvcServiceLocator.
            // This is a bit dirty, but currently
            // the only way to ensure one application-wide catalog
            // and a per-request container.
            MefServiceLocator mefServiceLocator = MvcServiceLocator.Current as MefServiceLocator;
            if (mefServiceLocator != null)
            {
                this.catalog = mefServiceLocator.catalog;
            }

            // And the fallback locator...
            this.defaultLocator = MvcServiceLocator.Default;
        }

        public MefServiceLocator(ComposablePartCatalog catalog)
            : this(catalog, MvcServiceLocator.Default)
        {
        }

        public MefServiceLocator(ComposablePartCatalog catalog, IMvcServiceLocator defaultLocator)
        {
            this.catalog = catalog;
            this.defaultLocator = defaultLocator;
        }

        protected CompositionContainer Container
        {
            get
            {
                if (!HttpContext.Current.Items.Contains(HttpContextKey))
                {
                    HttpContext.Current.Items.Add(HttpContextKey, new CompositionContainer(catalog));
                }

                return (CompositionContainer)HttpContext.Current.Items[HttpContextKey];
            }
        }

        private object Resolve(Type serviceType, string key = null)
        {
            var exports = this.Container.GetExports(serviceType, null, null);
            if (exports.Any())
            {
                return exports.First().Value;
            }

            var instance = defaultLocator.GetInstance(serviceType, key);
            if (instance != null)
            {
                return instance;
            }

            throw new ActivationException(string.Format("Could not resolve service type {0}.", serviceType.FullName));
        }

        private IEnumerable<object> ResolveAll(Type serviceType)
        {
            var exports = this.Container.GetExports(serviceType, null, null);
            if (exports.Any())
            {
                return exports.Select(e => e.Value).AsEnumerable();
            }

            var instances = defaultLocator.GetAllInstances(serviceType);
            if (instances != null)
            {
                return instances;
            }

            throw new ActivationException(string.Format("Could not resolve service type {0}.", serviceType.FullName));
        }

        #region IMvcServiceLocator Members

        public void Release(object instance)
        {
            var export = instance as Lazy<object>;
            if (export != null)
            {
                this.Container.ReleaseExport(export);
            }

            defaultLocator.Release(export);
        }

        #endregion

        #region IServiceLocator Members

        public IEnumerable<object> GetAllInstances(Type serviceType)
        {
            return ResolveAll(serviceType);
        }

        public IEnumerable<TService> GetAllInstances<TService>()
        {
            var instances = ResolveAll(typeof(TService));
            foreach (TService instance in instances)
            {
                yield return (TService)instance;
            }
        }

        public TService GetInstance<TService>(string key)
        {
            return (TService)Resolve(typeof(TService), key);
        }

        public object GetInstance(Type serviceType)
        {
            return Resolve(serviceType);
        }

        public object GetInstance(Type serviceType, string key)
        {
            return Resolve(serviceType, key);
        }

        public TService GetInstance<TService>()
        {
            return (TService)Resolve(typeof(TService));
        }

        #endregion

        #region IServiceProvider Members

        public object GetService(Type serviceType)
        {
            return Resolve(serviceType);
        }

        #endregion
    }

    HOLY SCHMOLEY! That is a lot of code. Let’s break it down…

    First of all, I have 3 constructors. 2 for convenience, one for MEF. Since the MefServiceLocator will be instantiated in Global.asax and I only want one instance of it to live in the application, I have to do a dirty trick: whenever MEF wants to create a new MefServiceLocator for some reason (should in theory only happen once per request, but I want this thing to live application-wide), I’m giving it indeed a new instance which at least shares the part catalog with the one I originally created. Don’t shoot me for doing this…

    Next, you will also notice that I’m using a “fallback” locator, which in theory will be the instance stored in MvcServiceLocator.Default, which is ASP.NET MVC 3’s default MvcServiceLocator. I’m doing this for a reason though… read my disclaimer again: I stated that everything should be decorated with the [Export] attribute when I’m relying on MEF. Now since the services exposed by ASP.NET MVC 3, like the IFilterProvider, are not decorated with this attribute, MEF will not be able to find those. When I find myself in that situation, the MefServiceLocator is simply asking the default service locator for it. Not a beauty, but it works and makes my life easy.

    Wiring things

    To wire this thing, all it takes is adding 3 lines of code to my Global.asax. For clarity, I’m giving you my entire Global.asax Application_Start method:

    protected void Application_Start()
    {
        // Register areas

        AreaRegistration.RegisterAllAreas();

        // Register filters and routes

        RegisterGlobalFilters(GlobalFilters.Filters);
        RegisterRoutes(RouteTable.Routes);

        // Register MEF catalogs

        var catalog = new DirectoryCatalog(
            Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "bin"));
        MvcServiceLocator.SetCurrent(new MefServiceLocator(catalog, MvcServiceLocator.Default));
    }

    Can you spot the 3 lines of code? This is really all it takes to make the complete application use MEF where appropriate. (Ok, that is a bit of a lie since you would still have to implement a very small IFilterProvider if you want MEF in your action filters, but still.)

    Hooks

    The cool thing is: a lot of things are now requested in the service locator we just created. When browsing to my site index, here’s all the things that are requested:

    • Resolve called for serviceType: System.Web.Mvc.IControllerFactory
    • Resolve called for serviceType: Mvc3WithMEF.Controllers.HomeController
    • Resolve called for serviceType: System.Web.Mvc.IFilterProvider
    • Resolve called for serviceType: System.Web.Mvc.IFilterProvider
    • Resolve called for serviceType: System.Web.Mvc.IFilterProvider
    • Resolve called for serviceType: System.Web.Mvc.IFilterProvider
    • Resolve called for serviceType: System.Web.Mvc.IViewEngine
    • Resolve called for serviceType: System.Web.Mvc.IViewEngine
    • Resolve called for serviceType: ASP.Index_cshtml
    • Resolve called for serviceType: System.Web.Mvc.IViewEngine
    • Resolve called for serviceType: System.Web.Mvc.IViewEngine
    • Resolve called for serviceType: ASP._LogOnPartial_cshtml

    Which means that you can now even inject stuff into views or compose their parts dynamically.

    Conclusion

    I have a strong sense of a power in here… ASP.NET MVC 3 will support DI natively if you want to use it, and I’ll be one of the users happily making use of it. There’s use cases for injecting/composing something in all of the above components, and ASP.NET MVC 3 made this just simpler and more straightforward.

    Here’s my sample code with some more examples in it: Mvc3WithMEF.zip (256.21 kb)


    ASP.NET MVC 3 preview 1 is out! Quick review...

    I just noticed a very interesting download: ASP.NET MVC 3 preview 1. Yes, you are reading this correctly, the first bits for v3.0 are there! Let’s have a quick look around and see what’s new...

    kick it on DotNetKicks.com

    Razor Syntax View Engine

    ScottGu blogged about Razor before. ASP.NET MVC has always supported the concept of “view engines”, pluggable modules that allow you to have your views rendered by different engines like for example the WebForms engine, Spark, NHAML, …

    Razor is a new view engine, focused on less code clutter and shorter code-expressions for generating HTML dynamically. As an example, have a look at the following view:

    <ul>
      <% foreach (var c in Model.Customers) { %>
        <li><%:c.DisplayName%></li>
      <% } %>
    </ul>

    In Razor syntax, this becomes:

    <ul>
      @foreach (var c in Model.Customers) {
        <li>@c.DisplayName</li>
      }
    </ul>

    Perhaps not the best example to show the strengths of this new engine, but do bear in mind that Razor simply puts code literally in your HTML, making it develop faster (did I mention perfect IntelliSense support in the Razor view editor?).

    Also, there’s a nice addition to the “Add View” dialog in Visual Studio: you can now choose for which view engine you want to generate a view.

    Razor view engine - Add view dialog

    ViewData dictionary “dynamic” support

    .NET 4 introduced the “dynamic” keyword, which is abstracting away a lot of reflection code you’d normally have to write yourself. The fun thing is, that the MVC guys abused this thing in a very nice way.

    Controller action method, ASP.NET MVC 2:

    public ActionResult Index()
    {
        ViewModel["Message"] = "Welcome to ASP.NET MVC!";

        return View();
    }

    Controller action method, ASP.NET MVC 3:

    public ActionResult Index()
    {
        ViewModel.Message = "Welcome to ASP.NET MVC!";

        return View();
    }

    “Isn’t that the same?” – Yes, in essence it is exactly the same concept at work. However, by using the dynamic keyword, there’s less “string pollution” in my code. Do note that in most situations, you would create a custom “View Model” and pass that to the view instead of using this ugly dictionary or dynamic object. Nevertheless: I do prefer reading code that uses less dictionaries.

    So far for the controller side, there’s also the view side. Have a look at this:

    @inherits System.Web.Mvc.WebViewPage

    @{
        View.Title = "Home Page";
        LayoutPage = "~/Views/Shared/_Layout.cshtml";
    }

    <h2>@View.Message</h2>
    <p>
        To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>.
    </p>

    A lot of new stuff there, right? First of all the Razor syntax, but secondly… There’s just something like @View.Message in this view, and this is rendering something from the ViewData dictionary/dynamic object. Again: very readable and understandable.

    It’s a small change on the surface, but I do like it. In my opinion, it’s more readable than using the ViewData dictionary when you are not using a custom view model.

    Global action filters

    Imagine you have a team of developers, all writing controllers. Imagine that they have to add the [HandleError] action filter to every controller, and they sometimes tend to forget… That’s where global action filters come to the rescue! Add this line to Global.asax:

    GlobalFilters.Filters.Add(new HandleErrorAttribute());

    This will automatically register that action filter attribute for every controller and action method.

    Fun fact: I blogged about exactly this feature about a year ago: Application-wide action filters in ASP.NET MVC. Want it in ASP.NET MVC 2? Go and get it :-)

    Cool, eh? Well… I do have mixed feelings about this… I can imagine there are situations where you want to do this more selectively. Here’s my call-out to the ASP.NET MVC team:

    • At least allow to specify action filters on a per-area level, so I can have my “Administration” area have other filters than my default area.
    • In an ideal world, I’d prefer something where I can specify global action filters even more granularly. This can be done using some customizing, but it would be useful to have it out-of-the-box. Here's an example of the ideal world:

    GlobalFilters.Filters.AddTo<HomeController>(new HandleErrorAttribute()) 
                         .AddTo<AccountController>(c => c.ChangePassword(), new AuthorizeAttribute());

    Dependency injection support

    I’m going to be short on this one: there’s 4 new hooks for injecting dependencies:

    • When creating controller factories
    • When creating controllers
    • When creating views (might be interesting!)
    • When using action filters

    More on that in my next post on ASP.NET MVC 3, as I think it deserves a full post rather than jut some smaller paragraphs.

    Update: Here's that next post on ASP.NET MVC 3 and dependency injection / MEF

    New action result types

    Not very ground-skaing news, but there's a new set of ActionResult variants available which will make your life easier:

    • HttpNotFoundResult - Speaks for itself, right :-)
    • HttpStatusCodeResult - How about new HttpStatusCodeResult(418, "I'm a teapot");
    • RedirectPermanent, RedirectToRoutePermanent, RedirectToActionPermanent - Writes a permanent redirect header

    Conclusion

    I only touched the tip of the iceberg. There’s more to ASP.NET MVC 3 preview 1, described in the release notes.

    In short, I’m very positive about the amount of progress being made in this framework! Very pleased with the DI portion of it, on which I’ll do a blog post later.

    Update: Here's that next post on ASP.NET MVC 3 and dependency injection / MEF


    Categories: ASP.NET | C# | General | MVC

    Renewed MVP ASP.NET for 2010!

    Just got the best e-mail a Microsoft community member can receive in his mailbox:MVPLogo

    Dear Maarten Balliauw,

    Congratulations! We are pleased to present you with the 2010 Microsoft® MVP Award! This award is given to exceptional technical community leaders who actively share their high quality, real world expertise with others. We appreciate your outstanding contributions in ASP/ASP.NET technical communities during the past year.

    (...)

    Toby Richards
    General Manager
    Community Support Services

    I wish to thank everyone who has been supporting me, encouraging me, challenging me and thus bringing me to a second year of MVP duty. I will try to achieve the same for next year: do a lot of sessions, work on open-source, do blog posts, …

    With that: if you are not yet at lest challenging me, please do start doing this. It only helps me to learn from your problems which will in turn help the whole community to learn from it.

    I can almost copy my blog post from last year on the next part: I will leave the community for the next weeks to enjoy a nice vacation in Austria. No, not traveling for work this time. My next two weeks community will be a community of mountains, sun, große Bier and rest (not REST!). See you!


    Categories: ASP.NET | C# | General | MVP | Personal

    ASP.NET MVC - MvcSiteMapProvider 2.0 is out!

    I’m very proud to announce the release of the ASP.NET MVC MvcSiteMapProvider 2.0! I’m also proud that the name of this product now exceeds the average length of Microsoft product names. In this blog post, I will give you a feel of what you can (and can not) do with this ASP.NET-specific SiteMapProvider.

    As a warning: if you’ve used version 1 of this library, you will notice that I have not thought of backwards compatibility. A lot of principles have also changed. For good reasons though: this release is a rewrite of the original version with improved features, extensibility and stability.

    The example code is all based on the excellent ASP.NET MVC Music Store sample application by Jon Galloway.

    Getting the bits

    As always, the bits are available on CodePlex: MvcSiteMapProvider 2.0.0
    If you prefer to have the full source code, download the example application or check the source code tab on CodePlex.

    Introduction

    MvcSiteMapProvider is, as the name implies, an ASP.NET MVC SiteMapProvider implementation for the ASP.NET MVC framework. Targeted at ASP.NET MVC 2, it provides sitemap XML functionality and interoperability with the classic ASP.NET sitemap controls, like the SiteMapPath control for rendering breadcrumbs and the Menu control.

    Based on areas, controller and action method names rather than hardcoded URL references, sitemap nodes are completely dynamic based on the routing engine used in an application. The dynamic character of ASP.NET MVC is followed in the MvcSiteMapProvider: there are numerous extensibility points that allow you to extend the basic functionality offered.

    Registering the provider

    After downloading the MvcSiteMapProvider, you will have to add a reference to the assembly in your project. Also, you will have to register the provider in your Web.config file. Add the following code somewhere in the <system.web> section:

    <siteMap defaultProvider="MvcSiteMapProvider" enabled="true">
      <providers>
        <clear />
        <add name="MvcSiteMapProvider"
             type="MvcSiteMapProvider.DefaultSiteMapProvider, MvcSiteMapProvider"
             siteMapFile="~/Mvc.Sitemap"
             securityTrimmingEnabled="true"
             enableLocalization="true"
             scanAssembliesForSiteMapNodes="true"
             skipAssemblyScanOn=""
             attributesToIgnore="bling"
             nodeKeyGenerator="MvcSiteMapProvider.DefaultNodeKeyGenerator, MvcSiteMapProvider"
             controllerTypeResolver="MvcSiteMapProvider.DefaultControllerTypeResolver, MvcSiteMapProvider"
             actionMethodParameterResolver="MvcSiteMapProvider.DefaultActionMethodParameterResolver, MvcSiteMapProvider"
             aclModule="MvcSiteMapProvider.DefaultAclModule, MvcSiteMapProvider"
             />
      </providers>
    </siteMap>

    The following configuration directives can be specified:

    Directive Required? Default Description
    siteMapFile No ~/Web.sitemap The sitemap XML file to use.
    securityTrimmingEnabled No false Use security trimming? When enabled, nodes that the user can not access will not be displayed in any sitemap control.
    enableLocalization No false Enables localization of sitemap nodes.
    scanAssembliesForSiteMapNodes No false Scan assemblies for sitemap nodes defined in code?
    skipAssemblyScanOn No (empty) Comma-separated list of assemblies that should be skipped when scanAssembliesForSiteMapNodes is enabled.
    attributesToIgnore No (empty) Comma-separated list of attributes defined on a sitemap node that should be ignored by the MvcSiteMapProvider.
    nodeKeyGenerator No MvcSiteMapProvider.DefaultNodeKeyGenerator, MvcSiteMapProvider Class that will be used to generate sitemap node keys.
    controllerTypeResolver No MvcSiteMapProvider.DefaultControllerTypeResolver, MvcSiteMapProvider Class that will be used to resolve the controller for a specific sitemap node.
    actionMethodParameterResolver No MvcSiteMapProvider.DefaultActionMethodParameterResolver, MvcSiteMapProvider Class that will be used to determine the list of parameters on a sitemap node.
    aclModule No MvcSiteMapProvider.DefaultAclModule, MvcSiteMapProvider Class that will be used to verify security and access rules for sitemap nodes.

     

    Creating a first sitemap

    The following is a simple sitemap XML file that can be used with the MvcSiteMapProvider:

    <?xml version="1.0" encoding="utf-8" ?>
    <mvcSiteMap xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-2.0" enableLocalization="true">
      <mvcSiteMapNode title="Home" controller="Home" action="Index" changeFrequency="Always" updatePriority="Normal">
        <mvcSiteMapNode title="Browse Store" controller="Store" action="Index" />
        <mvcSiteMapNode title="Checkout" controller="Checkout" />
      </mvcSiteMapNode>
    </mvcSiteMap>

    The following attributes can be given on an XML node element:

    Attribute Required? Default Description
    title Yes (empty) The title of the node.
    description No (empty) Description of the node.
    area No (empty) The MVC area for the sitemap node. If not specified, it will be inherited from a node higher in the hierarchy.
    controller Yes (empty) The MVC controller for the sitemap node. If not specified, it will be inherited from a node higher in the hierarchy.
    action Yes (empty) The MVC action method for the sitemap node. If not specified, it will be inherited from a node higher in the hierarchy.
    key No (autogenerated) The unique identifier for the node.
    url No (autogenerated based on routes) The URL represented by the node.
    roles No (empty) Comma-separated list of roles allowed to access the node and its child nodes.
    resourceKey No (empty) Optional resource key.
    clickable No True Is the node clickable or just a grouping node?
    targetFrame No (empty) Optional target frame for the node link.
    imageUrl No (empty) Optional image to be shown by supported HtmlHelpers.
    lastModifiedDate No (empty) Last modified date for the node.
    changeFrequency No Undefined Change frequency for the node.
    updatePriority No Undefined Update priority for the node.
    dynamicNodeProvider No (empty) A class name implementing MvcSiteMapProvider.Extensibility.IDynamicNodeProvider and providing dynamic nodes for the site map.

     

    Defining sitemap nodes in code

    In some cases, defining a sitemap node in code is more convenient than defining it in a sitemap xml file. To do this, decorate an action method with the MvcSiteMapNodeAttribute attribute. For example:

    // GET: /Checkout/Complete
    [MvcSiteMapNodeAttribute(Title = "Checkout complete", ParentKey = "Checkout")]
    public ActionResult Complete(int id)
    {
        // ...
    }

    Note that the ParentKey property should be specified to ensure the MvcSiteMapProvider  can determine the hierarchy for all nodes.

    Dynamic sitemaps

    In many web applications, sitemap nodes are directly related to content in a persistent store like a database.For example, in an e-commerce application, a list of product details pages in the sitemap maps directly to the list of products in the database. Using dynamic sitemaps, a small class can be provided to the MvcSiteMapProvider offering a list of dynamic nodes that should be incldued in the sitemap. This ensures the product pages do not have to be specified by hand in the sitemap XML.

    First of all, a sitemap node should be defined in XML. This node will serve as a template and tell the MvcSiteMapProvider infrastructure to use a custom dynamic node procider:

    <mvcSiteMapNode title="Details" action="Details" dynamicNodeProvider="MvcMusicStore.Code.StoreDetailsDynamicNodeProvider, MvcMusicStore" />

    Next, a class implementing MvcSiteMapProvider.Extensibility.IDynamicNodeProvider or extending MvcSiteMapProvider.Extensibility.DynamicNodeProviderBase should be created in your application code. Here’s an example:

    public class StoreDetailsDynamicNodeProvider
        : DynamicNodeProviderBase
    {
        MusicStoreEntities storeDB = new MusicStoreEntities();

        public override IEnumerable<DynamicNode> GetDynamicNodeCollection()
        {
            // Build value
            var returnValue = new List<DynamicNode>();

            // Create a node for each album
            foreach (var album in storeDB.Albums.Include("Genre"))
            {
                DynamicNode node = new DynamicNode();
                node.Title = album.Title;
                node.ParentKey = "Genre_" + album.Genre.Name;
                node.RouteValues.Add("id", album.AlbumId);

                returnValue.Add(node);
            }

            // Return
            return returnValue;
        }
    }

    Cache dependency

    When providing dynamic sitemap nodes to the MvcSiteMapProvider, chances are that the hierarchy of nodes will become stale, for example when adding products in an e-commerce website. This can be solved by specifying a CacheDescriptor on your MvcSiteMapProvider.Extensibility.IDynamicNodeProvider implementation:

    public class StoreDetailsDynamicNodeProvider
        : DynamicNodeProviderBase
    {
        MusicStoreEntities storeDB = new MusicStoreEntities();

        public override IEnumerable<DynamicNode> GetDynamicNodeCollection()
        {
            // ...
        }

        public override CacheDescription GetCacheDescription()
        {
            return new CacheDescription("StoreDetailsDynamicNodeProvider")
            {
                SlidingExpiration = TimeSpan.FromMinutes(1)
            };
        }
    }

    HtmlHelper functions

    The MvcSiteMapProvider provides different HtmlHelper extension methods which you can use to generate SiteMap-specific HTML code on your ASP.NET MVC views. Here's a list of available HtmlHelper extension methods.

    • Html.MvcSiteMap().Menu() - Can be used to generate a menu
    • Html.MvcSiteMap().SubMenu() - Can be used to generate a submenu
    • Html.MvcSiteMap().SiteMap() - Can be used to generate a list of all pages in your sitemap
    • Html.MvcSiteMap().SiteMapPath() - Can be used to generate a so-called "breadcrumb trail"
    • Html.MvcSiteMap().SiteMapTitle() - Can be used to render the current SiteMap node's title

    Note that these should be registered in Web.config, i.e. under <pages> add the following:

    <pages>
        <controls>
            <! -- ... -->
        </controls>
        <namespaces>
            <! -- ... -->
            <add namespace="MvcSiteMapProvider.Web.Html" />
        </namespaces>
    </pages>

    Action Filter Attributes

    SiteMapTitle

    In some situations, you may want to dynamically change the SiteMap.CurrentNode.Title in an action method. This can be done manually by setting SiteMap.CurrentNode.Title, or by adding the SiteMapTitle action filter attribute.

    Imagine you are building a blog and want to use the Blog's Headline property as the site map node title. You can use the following snippet:

    [SiteMapTitle("Headline")]
    public ViewResult Show(int blogId) {
       var blog = _repository.Find(blogIdId);
       return blog;
    }

    You can also use a non-strong typed ViewData value as the site map node title:

    [SiteMapTitle("SomeKey")]
    public ViewResult Show(int blogId) {
       ViewData["SomeKey"] = "This will be the title";

       var blog = _repository.Find(blogIdId);
       return blog;
    }

    Exporting the sitemap for search engine indexing

    When building a website, chances are that you want to provide an XML sitemap used for search engine indexing. The XmlSiteMapResult class creates an XML sitemap that can be submitted to Google, Yahoo and other search engines to help them crawl your website better. The usage is very straightforward:

    public class HomeController
    {
        public ActionResult SiteMapXml()
        {
            return new XmlSiteMapResult();
        }
    }

    Optionally, a starting node can also be specified in the constructor of theXmlSiteMapResult .

    Conclusion

    Get it while it’s hot! MvcSiteMapProvider 2.0.0 is available on CodePlex.

    kick it on DotNetKicks.com


    Categories: ASP.NET | C# | General | MVC | Projects | Software | XML

    Running on Windows Azure - ChronoRace - Autoscaling

    image At RealDolmen, we had the luck of doing the first (known) project on Windows Azure in Belgium. Together with Microsoft, we had the opportunity to make the ChronoRace website robust enough to withstand large sports events like the 20km through Brussels.

    ChronoRace is a Belgian company based in Malmédy, specialised in electronic timing for large sports events (around 340 per year) troughout Europe in different disciplines like jogging, cycling, sailing, … Each participant is registered through the website, can consult their results and can view a high-definition video of their arrival at the finish line. Of course, these results and videos are also used to brag to co-workers and family members, resulting in about 10 result and video views per participant. Imagine 20.000 or more participants on large events… No wonder their current 1 webserver – 1 database server setup could not handle all load.

    Extra investments in hardware, WAN connection upgrades and video streaming were considered, however found too expensive to have these running for 365 days a year while on average this extra capacity would only be needed for 14 days a year. Ideal for cloud computing! Especially with an expected 30.000 participants for the 20km through Brussels... (which would mean 3 TB of data transfers for the videos on 1 day!!!)

    Microsoft selected RealDolmen as a partner for this project, mainly because of the knowledge we built over the past year, since the first Azure CTP. Together with ChronoRace, we gradually moved the existing SQL Server databse to SQL Azure. After that, we started moving the video streaming to blob storage, implemented extra caching and automatic scaling.

    You probably have seen the following slides in various presentations on cloud computing:

    Capacity cloud computing

    All marketing gibberish, right? Nope! We actually managed to get very close to this model using our custom autoscaling mechanism. Here are some figures we collected during the peak of the 20km through Brussels:

    Windows Azure Auto Scaling

    More information on the technical challenges we encountered can be found in my slide deck I presented at KAHOSL last week:

    If you want more information on scalability and automatic scaling, feel free to come to the Belgian Community Day 2010 where I will be presenting a session on this topic.

    Oh and for the record: I’m not planning on writing marketing posts. I just was so impressed by our actual autoscaling graph that I had to blog this :-)


    Slides of our VISUG session

    As promised, here are the slides of the VISUG session me and Kris van der Mast did yesterday.

    Being a pimp without Silverlight!

    Abstract: “Don't tell us you're jealous of those Silverlight fanboys! We'll show you that applications with bling can be developed using ASP.NET MVC and jQuery. We're talking MVC, template helpers, AJAX, JSON, transitions, live bindings, ...”


    Using Windows Azure Drive in PHP (or Ruby)

    At the JumpIn Camp in Zürich this week, we are trying to get some of the more popular PHP applications running on Windows Azure. As you may know, Windows Azure has different storage options like blobs, tables, queues and drives. There’s the Windows Azure SDK for PHP for most of this, except for drives. Which is normal: drives are at the operating system level and have nothing to do with the REST calls that are used for the other storage types. By the way: I did a post on using Windows Azure Drive (or “XDrive”) a while ago if you want more info.

    Unfortunately, .NET code is currently the only way to create and mount these virtual hard drives from Windows Azure. But luckily, IIS7 has this integrated pipeline model which Windows Azure is also using. Among other things, this means that services provided by managed modules (written in .NET) can now be applied to all requests to the server, not just ones handled by ASP.NET! In even other words: you can have some .NET code running in the same request pipeline as the FastCGI process running PHP (or Ruby). Which made me think: it should be possible to create and mount a Windows Azure Drive in a .NET HTTP module and pass the drive letter of this thing to PHP through a server variable. And here’s how...

    Note: I’ll start with the implementation part first, the usage part comes after that. If you don’t care about the implementation, scroll down...

    Download source code and binaries at http://phpazurecontrib.codeplex.com.

    kick it on DotNetKicks.com

    Building the Windows Azure Drive HTTP module

    Building HTTP modules in .NET is easy! Simply reference the System.Web assembly and create a class implementing IHttpModule:

    public class AzureDriveModule : IHttpModule
    {
        void IHttpModule.Dispose()
        {
            throw new NotImplementedException();
        }

        void IHttpModule.Init(HttpApplication context)
        {
            throw new NotImplementedException();
        }
    }

    There’s our skeleton! Now for the implementation… (Note: insane amount of code coming!)

    public class AzureDriveModule : IHttpModule
    {
        #region IHttpModule Members

        public void Init(HttpApplication context)
        {
            // Initialize config environment
            CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
            {
                configSetter(RoleEnvironment.GetConfigurationSettingValue(configName));
            });

            // Initialize local cache
            CloudDrive.InitializeCache(
                RoleEnvironment.GetLocalResource("cloudDriveCache").RootPath,
                RoleEnvironment.GetLocalResource("cloudDriveCache").MaximumSizeInMegabytes);

            // Determine drives to map
            for (int i = 0; i < 10; i++)
            {
                string driveConnectionString = null;
                try
                {
                    driveConnectionString = RoleEnvironment.GetConfigurationSettingValue("CloudDrive" + i);
                }
                catch (RoleEnvironmentException) { }

                if (string.IsNullOrEmpty(driveConnectionString))
                {
                    continue;
                }

                string[] driveConnection = driveConnectionString.Split(new char[] { ';' });

                // Create storage account
                CloudStorageAccount storageAccount = CloudStorageAccount.FromConfigurationSetting(driveConnection[0]);
                CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

                // Mount requested drive
                blobClient.GetContainerReference(driveConnection[1]).CreateIfNotExist();

                var drive = storageAccount.CreateCloudDrive(
                    blobClient
                        .GetContainerReference(driveConnection[1])
                        .GetPageBlobReference(driveConnection[2])
                        .Uri.ToString()
                );

                try
                {
                    drive.Create(int.Parse(driveConnection[3]));
                }
                catch (CloudDriveException ex)
                {
                    // handle exception here
                    // exception is also thrown if all is well but the drive already exists
                }

                string driveLetter = drive.Mount(
                    RoleEnvironment.GetLocalResource("cloudDriveCache").MaximumSizeInMegabytes, DriveMountOptions.None);

                // Add the drive letter to the environment
                Environment.SetEnvironmentVariable("CloudDrive" + i, driveLetter);
            }
        }

        public void Dispose()
        {
        }

        #endregion
    }

    Configuring and using Windows Azure Drive

    There are 4 steps involved in using the Windows Azure Drive HTTP module:

    1. Copy the .NET assemblies into your project
    2. Edit ServiceConfiguration.cscfg (and ServiceDefinition.csdef)
    3. Edit Web.config
    4. Use the thing!

    The Windows Azure tooling for Eclipse will be used in the following example.

    Copy the .NET assemblies into your project

    Create a /bin folder in your web role project and copy in all .DLL files provided. Here’s a screenshot of how this looks:

    .NET assemblies for XDrive in PHP on Azure

    Edit ServiceConfiguration.cscfg (and ServiceDefinition.csdef)

    In order to be able to mount, some modifications to ServiceConfiguration.cscfg (and ServiceDefinition.csdef) are required. The ServiceDefinition.csdef file should contain the following additional entries:

    <?xml version="1.0" encoding="utf-8"?>
    <ServiceDefinition name="TestCustomModules" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
      <WebRole name="WebRole" enableNativeCodeExecution="true">
        <ConfigurationSettings>
          <Setting name="CloudDriveConnectionString" />  
          <Setting name="CloudDrive0" />   
        </ConfigurationSettings>
        <InputEndpoints>
          <!-- Must use port 80 for http and port 443 for https when running in the cloud -->
          <InputEndpoint name="HttpIn" protocol="http" port="80" />
        </InputEndpoints>
        <LocalStorage name="cloudDriveCache" sizeInMB="128"/>
      </WebRole>
    </ServiceDefinition>

    Things to note are the cloudDriveCache local storage entry, which is needed for caching access to the virtual drive. The configuration settings are defined for use in ServiceConfiguration.csdef:

    <?xml version="1.0"?>
    <ServiceConfiguration serviceName="TestCustomModules" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration">
      <Role name="WebRole">
        <Instances count="1"/>
        <ConfigurationSettings>
          <Setting name="CloudDriveConnectionString" value="UseDevelopmentStorage=true" />
          <Setting name="CloudDrive0" value="CloudDriveConnectionString;drives;sampledrive.vhd;64" />
        </ConfigurationSettings>
      </Role>
    </ServiceConfiguration>

    The configuration specifies that a cloud drive “CloudDrive0” (up to “CloudDrive9”) should be mounted using the storage account in “CloudDriveConnectionString”, a storage container named “drives” and a virtual hard disk file named “sampledrive.vhd”. Oh, and the drive should be 64 MB in size.

    Edit Web.config

    Before the HTTP module is used by IIS7 or Windows Azure, the following should be added to Web.config:

    <modules>
      <add name="AzureDriveModule" type="PhpAzureExtensions.AzureDriveModule, PhpAzureExtensions"/>
    </modules>

    Here’s my complete Web.config:

    <?xml version="1.0"?>
    <configuration>
      <system.webServer>
        <!-- DO NOT REMOVE: PHP FastCGI Module Handler -->
        <handlers>
          <clear />
          <add name="PHP via FastCGI"
               path="*.php"
               verb="*"
               modules="FastCgiModule"
               scriptProcessor="%RoleRoot%\approot\php\php-cgi.exe"
               resourceType="Unspecified" />
          <add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read" />
        </handlers>
        <!-- Example WebRole IIS 7 Configation -->
        <defaultDocument>
          <files>
            <clear />
            <add value="index.php" />
          </files>
        </defaultDocument>

        <modules>
          <add name="AzureDriveModule" type="PhpAzureExtensions.AzureDriveModule, PhpAzureExtensions"/>
        </modules>
      </system.webServer>
    </configuration>

    Use the thing!

    Next thing to do is use your virtual Windows Azure Drive. The HTTP module adds an entry in the $_SERVER variable, named after the CloudDrive0-9 settings defined earlier. The following code example stores a file on a virtual Windows Azure Drive and reads it back afterwards:

    <?php
    file_put_contents($_SERVER['CloudDrive0'] . '\sample.txt', 'Hello World!');

    echo file_get_contents($_SERVER['CloudDrive0'] . '\sample.txt');

    Source code in PHPAzureContrib (CodePlex)

    Since there already is a project for PHP and Azure contributions, I decided to add this module to that project. The binaries and source code can be found on http://phpazurecontrib.codeplex.com.

    Other possible usages

    The approach I demonstrated above may be used for other scenarios as well:

    • Modifying php.ini before PHP runs. The module you can access would run before FastCGI runs, an ideal moment to modigy php.ini settings and such.
    • Using .NET authentication modules in PHP, check this site for an example.
    • Download updates to PHP automatically if a new version is available and deploy it into your application at runtime. Probably needs some performance tuning but this trick may work. The same goes for static content and script updates by the way. Imagine pulling a website dynamically from blob storage and deploy it onto your web role without any hassle…

    In short: endless possibilities!

    kick it on DotNetKicks.com


    Categories: ASP.NET | Azure | C# | General | PHP | Projects

    Introducing RealDolmenBlogs.com

    RealDolmenBlogs.com Here’s something I would like to share with you. A few months ago, our company (RealDolmen) started a new website, RealDolmenBlogs.com. This site syndicates content from employee blogs, people with lots of experience in their range of topics. These guys have lots of knowledge to share, but sometimes their blog does not have a lot of attention from, well, you. Since we would really love to share employee knowledge, RealDolmenBlogs.com was born.

    The following topics are covered:

    • .NET
    • Application Lifecycle Management
    • Architecture
    • ASP.NET
    • Biztalk
    • PHP
    • Sharepoint
    • Silverlight
    • Visual Studio

    Make sure to subscribe to the syndicated RSS feed and have quality content delivered to your RSS reader.

    The technical side

    Since I do not like to do blog posts on topic that do not have a technical touch, considered that the first few lines of text of this post are pure marketing in a sense, here’s the technical bit.

    RealDolmenBlogs.com is built on Windows Azure and SQL Azure. As a company we believe there is value in cloud computing, in this case we chose for cloud computing due to the fact that the setup costs for the website were very small (pay-per-use) and that we can easily scale-up the website if needed.

    The software behind the site is a customized version of BlogEngine.NET. It has been extended with a syndication feature, pulling content from employee blogs with a little help of the Argotic syndication framework. Running BlogEngine.NET on Windows Azure is not that hard, especially when you are using SQL Azure as well: the only thing to modify is the connection string to your database and you are done. Well… that is if you don’t care about images and attachments. We had to do some modifications to how BlogEngine.NET handles file uploads and made sure everything is now stored safe and sound in Windows Azure blob storage.

    That being said: enjoy the content that my colleagues are sharing, posts are definitely worth a read!


    Sharpy - an ASP.NET MVC view engine based on Smarty

    Sharpy - ASP.NET MVC View Engine based on SmartyAre you also one of those ASP.NET MVC developers who prefer a different view engine than the default Webforms view engine available? You tried Spark, NHaml, …? If you are familiar with the PHP world as well, chances are you know Smarty, a great engine for creating views that can easily be read and understood by both developers and designers. And here’s the good news: Sharpy provides the same syntax for ASP.NET MVC!

    If you want more details on Sharpy, visit Jaco Pretorius’ blog:

    kick it on DotNetKicks.com

    A simple example…

    Here’s a simple example:

    {master file='~/Views/Shared/Master.sharpy' title='Hello World sample'}

    <h1>Blog entries</h1>

    {foreach from=$Model item="entry"}
        <tr>
            <td>{$entry.Name|escape}</td>       
            <td align="right">{$entry.Date|date_format:"dd/MMM/yyyy"}</td>       
        </tr>
        <tr>
            <td colspan="2" bgcolor="#dedede">{$entry.Body|escape}</td>
        </tr>
    {foreachelse}
        <tr>
            <td colspan="2">No records</td>
        </tr>
    {/foreach}

    The above example first specifies the master page to use. Next, a foreach-loop is executed for each blog post (aliased “entry”) in the $Model. Printing the entry’s body is done using {$entry.Body|escape}. Note the pipe “|” and the word escape after it. These are variable modifiers that can be used to escape content, format dates, …

    Extensibility

    Sharpy is all about extensibility: every function in a view is actually a plugin of a specific type (there are four types, IInlineFunction, IBlockFunction, IExpressionFunction and IVariableModifier). These plugins are all exposed through MEF. This means that Sharpy will always use any of your custom functions that are exposed through MEF. For example, here’s a custom function named “content”:

    [Export(typeof(IInlineFunction))]
    public class Content : IInlineFunction
    {
        public string Name
        {
            get { return "content"; }
        }

        public string Evaluate(IDictionary<string, object> attributes, IFunctionEvaluator evaluator)
        {
            // Fetch attributes
            var file = attributes.GetRequiredAttribute<string>("file");

            // Write output
            return evaluator.EvaluateUrl(file);
        }
    }

    Here’s how to use it:

    {content file='~/Content/SomeFile.txt'}

    Sharpy uses MEF to allow developers to implement their own functions and modifiers.  All the built-in functions are also built using this exact same framework – the same functionality is available to both internal and external functions.

    Extensibility is one of the strongest features in Sharpy.  This should allow us to leverage any functionality available in a normal ASP.NET view while maintaining simple views and straightforward markup.

    Give it a spin!

    Do give Sharpy a spin, you will learn to love it.


    Categories: ASP.NET | C# | General | MVC