2

StructureMap is configured to inject HttpContext.Current.User when an IPrincipal is requested for any ASP.NET MVC web request, like so:

For<IPrincipal>().Use(x => HttpContext.Current.User);

But when my SignalR hub asks for a service that depends on an IPrincipal, injection fails because HttpContext.Current is null. Instead, SignalR already has a HubCallerContext property that exposes the current IPrincipal via Context.User.

How do I configure StructureMap to always inject a valid IPrincipal into the services my SignalR hub relies on?

Petrus Theron
  • 27,855
  • 36
  • 153
  • 287

1 Answers1

1

Just do this:

For<IPrincipal>().Use(x => Thread.CurrentPrincipal);
Steven
  • 166,672
  • 24
  • 332
  • 435