Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was using the approach recommended in various other places for implementing IDependencyResolver in an MVC3 application via StructureMap. However, I was still getting an error when the framework tried to instantiate IControllerActivator.

I think this was caused by my use of Scan.AssembliesFromApplicationBaseDirectory(), which I use in conjuction with Scan.SingleImplementationsOfInterface() and Scan.LookForRegistries(). It appears there are multiple IControllerActivator implementations inside the MVC assemblies? In which case, even TryGetInstance() throws an exception, because it sees not zero choices but more than one choice?

My solution to this problem was to do Scan.ExcludeNamespace("System.Web.Mvc"). This got me past the exception. However, I still wonder if this was the correct solution, or if I'm missing some larger issue?

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.