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 8326935
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T00:56:07+00:00 2026-06-09T00:56:07+00:00

I started working on a WPF project using Prism and MVVM, and I am

  • 0

I started working on a WPF project using Prism and MVVM, and I am trying to use the eventAggregator but, when the line below is executed an exception is raised:

IServiceLocator ob = ServiceLocator.Current; // This line causes a Null pointer exception
EventAggregator = ob.GetInstance<IEventAggregator>();

But I cant understand what I am doing wrong, maybe this is a very simple thing, but I have been struggling with this for a couple hours.

Hope someone can help me, thanks in advance

  • 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-09T00:56:08+00:00Added an answer on June 9, 2026 at 12:56 am

    You lack the initialization code of your locator.

    Either you use Prism (do you?) and you need to set up your bootstrapper correctly – http://msdn.microsoft.com/en-us/library/gg430868(PandP.40).aspx

    Or you don’t use Prism and you just set up the locator manually (in Main for example):

    IUnityContainer container = new UnityContainer();
    
    // register the singleton of your event aggregator
    container.RegisterType<IEventAggregator, EventAggregator>( new ContainerControlledLifetimeManager() ); 
    
    ServiceLocator.SetLocatorProvider( () => container );
    

    then you can call in any place of your code

    var eventAggregator = ServiceLocator.Current.GetInstance<IEventAggregator>();
    

    Edit: you have edited your question and you now mention Prism. You should then create a custom bootstrapper, register your types and run the bootstrapper.

    public class CustomBootstrapper : UnityBootstrapper 
    {
    }
    

    and call

    var bootstrapper = new CustomBootstrapper();
    bootstrapper.Run();
    

    in the starting routine of your application. From what I remember, UnityBootstrapper registers the IEventAggregator as singleton so you don’t have to repeat that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just started working in a WPF project using a Ribbon Bar, but I
I started working on a project in the mid. We are using Zend Framework,
I'm very used to working in WPF, but I have recently started building websites
I am use to working with windows forms, but recently I had started to
I am working on a very simple stopwatch using WPF but using the System.Diagnostics
I started working on a project which uses Net_URL_Mapper from PEAR (php) as the
I've just started working with Propel and I love it, but I have a
Working on a WPF application, I started working on a custom ControlTemplate . I
I'm working on a Metro app using XAML & C#. I started this using
I'm creating a basic database application in WPF, and I have started using the

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.