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?