Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use the Cache facilities of Service Stack. These are accessed through the RequestContext, which is injected by the IOC in your Service.

This works as expected if you are using the default Funq IOC, it does not work when you hook AutoFac, RequestContext is null and I am not sure how to configure autofac to build it. Any clues here? My AutoFac configuration:

var builder = new ContainerBuilder();

//Now register all dependencies to your custom IoC container

builder.RegisterAssemblyTypes(new[] { typeof(AppHost).Assembly })
       .PropertiesAutowired(PropertyWiringFlags.AllowCircularDependencies)
       .AsImplementedInterfaces()
       .SingleInstance();

container.Register<ICacheClient>(new MemoryCacheClient());

IContainerAdapter adapter = new AutofacIocAdapter(builder.Build());
container.Adapter = adapter;

EDIT:

My Service already extends ServiceStack.ServiceInterface.Service:

public class UserDetailsService : ServiceStack.ServiceInterface.Service

which implements IRequiresRequestContext, RequestContext is null. If I remove autofac then it works as expected. With Autofac RequestContext is null

share|improve this question

1 Answer

RequestContext is not meant to be injected by an IOC, it's a special property that is set by ServiceStack if your Service requests it by implementing the IRequiresRequestContext interface. E.g.

public class MyClass : IService, IRequiresRequestContext {
    //injected by ServiceStack at run-time (per request)
    public IRequestContext RequestContext { get; set; } 
}

This is the same mechanism how the RequestContext property gets populated in the convenient default Service base class in ServiceStack.

share|improve this answer
Thanks for the answer Demis, check my update. – Luis Jan 24 at 8:32
1  
Just checked the code, I can't see how this can happen. I've added an issue here so I wont forget to create a small project to look at this when I have time. – mythz Jan 24 at 10:33
Thanks for that I had opened an issue before as well, so You might want to merge them:github.com/ServiceStack/ServiceStack/issues/414. Thanks again. And by the way ServiceStack rocks. Awesome piece of work – Luis Jan 24 at 13:46
Nevermind I got it to work!!! Not sure what happened there, nothing has changed but now it's not null....Maybe The DevServer didnt restart properly and Aphost init was not run...Sorry for the trouble – Luis Jan 26 at 8:33

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.