Search code examples
asp.net-mvcinversion-of-controlcastle-windsormvccontribresolve

How to resolve an user repository using Windsor IoC at the start of the application?


I get an error message "Object reference not set to an instance of an object." when I try to use an UserRepos repository. Question is how can I resolve user repository at the start of the application (ASP.NET MVC) What is wrong here?

public class MyApplication : HttpApplication
{
    public IUserRepository UserRepos;
    public IWindsorContainer Container;

    protected void Application_Start()
    {
        Container = new WindsorContainer();

        // Application services
        Container.Register(
            Component.For<IUserRepository>().ImplementedBy<UserRepository>()
        );
        UserRepos = Container.Resolve<IUserRepository>();
    }

    private void OnAuthentication(object sender, EventArgs e)
    {
        if (Context.User != null)
        {
            if (Context.User.Identity.IsAuthenticated)
            {
                //Error here "Object reference not set to an instance of an object."
                var user = UserRepos.GetUserByName(Context.User.Identity.Name);

                var principal = new MyPrincipal(user);
                Thread.CurrentPrincipal = Context.User = principal;
                return;
            }
        }
    }
}

Thank you for helping me!


Solution

  • The cause of this exception is a misunderstanding of the HttpApplication lifecycle. These articles explain it quite well:

    in your case, this would be the correct container usage:

    public class MyApplication: HttpApplication {
        private static IWindsorContainer container;
    
        protected void Application_Start()     {
                container = new WindsorContainer();
                ... registrations
        }
    
        private void OnAuthentication(object sender, EventArgs e) {
            var userRepo = container.Resolve<IUserRepository>();
            ... code that uses userRepo
        }
    }