Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8766987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T16:41:28+00:00 2026-06-13T16:41:28+00:00

In my global.asax file I have a dependency set up between an interface and

  • 0

In my global.asax file I have a dependency set up between an interface and a class. The injection always works and there is no issue with the setup.

In a model binder, in the same solution, I am trying to get the concrete class mapped to that interface thus

IKernel kernel = new StandardKernel();
var samurai = kernel.Get<Samurai>();

For some reason this does not work and I get an error saying “object initialisation null” or something to that effect. As I understand it this makes sense since this kernel I just created is a new object not linked to the object created in the global.asax. How do I get the one in the global.asax or am I doing something else wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T16:41:29+00:00Added an answer on June 13, 2026 at 4:41 pm

    In global.asax.cs, I used static variable for this kind of situation.

    protected override IKernel CreateKernel()
    {
        return NinjectKernel;    
    }
    
    static IKernel _kernel;
    public static IKernel NinjectKernel
    {
      get
      {
          if (_kernel == null)
          {
             _kernel = new StandardKernel();
             //Configured bindings for interfaces and classes
          }
          return _kernel;
       }
    }
    

    And I think you are trying to get reference to interface i.e., ISamurai which inturn gives reference to actual object Samurai.

    var samurai = NinjectKernel.Get<ISamurai>()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have set up ninject on my project in the global.asax file... protected void
I have setup a routing table in the global.asax file for images that have
I have an Application Object. In Global.asax file i use this: Application[obj] = test;
I have 2 test and 1 production server. In my global.asax file - I
In my Global.ASAX file i have the following: void Session_End(object sender, EventArgs e) {
I have this authentication check in my global.asax file in the Session_OnStart() call: if
I have successfully created an iHttpModule to replace my Global.asax file in many Web
I can't debug global.asax file! I have some codes in Application_Start() method but when
I have the following code in my Global.asax file: Protected Sub Application_PreRequestHandlerExecute(sender As Object,
I have this in my global.asax.cs file to determine whether or not mock communication

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.