I'm using OpenRasta 2.0.3214.437 in an ASP.NET 4 web application. I'm registering a custom dependency in the internal container using:

ResourceSpace.Uses.CustomDependency<IRepository, Repository>(DependencyLifetime.PerRequest);

This works perfectly for the first request; the second request throws an OpenRasta.DI.DependencyResolutionException after logging the message:

Ignoring constructor, following dependencies didn't have a registration: IRepository

DependencyLifetime.Singleton and DependencyLifetime.Transient work fine, just the PerRequest seems to have the issue. I'm running in Cassini. Am I doing something wrong?

link|improve this question

67% accept rate
Can you post an email on the mailing list with some test code so we can investigate the issue? – serialseb Mar 2 '11 at 10:53
Was this ever fixed, I'm seeing the same thing? – Neil Mosafi Sep 5 '11 at 9:20
Not to my knowledge. Registering the dependency in a pipeline contributor was my workaround. Also, are you using the right version of the code - I believe it's openrasta-core on github (not openrasta-stable). – Sam Sep 5 '11 at 13:50
Registering the dependency in a pipeline contributor? Can you explain more? Thanks – Neil Mosafi Sep 7 '11 at 19:54
1  
Implement IPipelineContributor on a class, take a dependency on IDependencyResolver, then call resolver.AddDependencyInstance<T>() at the start of each request. Register the pipeline contributor in your IConfigurationSource using ResourceSpace.Uses.PipelineContributor<T>(). See github.com/openrasta/openrasta-stable/wiki/… for more details on how to build a pipeline contributor. – Sam Sep 9 '11 at 2:21
show 1 more comment
feedback

1 Answer

Workaround to this issue:

Implement an IPipelineContributor:

public class RepositoryPipelineContributor : IPipelineContributor
{
    private readonly IDependencyResolver resolver;

    public RepositoryPipelineContributor(IDependencyResolver resolver)
    {
        this.resolver = resolver;
    }

    public void Initialize(IPipeline pipelineRunner)
    {
        pipelineRunner.Notify(CreateRepository)
            .Before<KnownStages.IOperationExecution>();
    }

    private PipelineContinuation CreateRepository(ICommunicationContext arg)
    {
        resolver.AddDependencyInstance<IRepository>(new Repository(), DependencyLifetime.PerRequest);
        return PipelineContinuation.Continue;
    }

}

Then register the contributor in your IConfigurationSource:

ResourceSpace.Uses.PipelineContributor<RepositoryPipelineContributor>();
link|improve this answer
+1 Thanks Sam, I had the same issue using the default internal dependency manager (with InMemoryHost, not ASP) and this workaround works for me, too. – Eugene Beresovksy Nov 14 '11 at 3:53
feedback

Your Answer

 
or
required, but never shown

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