In an ASP.NET MVC 3 project, I'm using ninject for dependency injection.

I created a contact form and wanted the clientside validation to be enabled. But unfortunately, validation never got triggered. I spent more than 5 hours to find out, that ninject is the reason why clientside validation did not work. After commenting out the ninject related stuff, clientside validation works like a charm.

Actually, I have no idea why ninject should have an effect on that.

Is anyone having the same issue or did I miss something?

This is how I set up DI.

    protected void Application_Start()
    {           
        AreaRegistration.RegisterAllAreas();

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

        SetupDependencyInjection();
    }

    public void SetupDependencyInjection()
    {
        NinjectModule production = new ProductionModule();
        IKernel kernel = new StandardKernel(production);

        NinjectDependencyResolver locator = new NinjectDependencyResolver(kernel);
        DependencyResolver.SetResolver(locator);
    }


public class ProductionModule : NinjectModule
{
    public override void Load()
    {
        Bind<INewsRepository>().To<NewsRepository>();
        Bind<INewsService>().To<NewsService>();
    }
}

Commenting out "SetupDependencyInjection()" makes the validation work.

Thanks for every hint.

Martin

link|improve this question
Finally I changed the DI setup according to the first approach documented on this site: link. Now the validation works! – martinoss Jun 21 '11 at 20:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.