Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A single instance of controller 'TestController' cannot be used to handle multiple requests

I have Some issues with the life time manager in unity, it uses the object like its singleton, but in the configuration I set it to "PerWebRequest".

The Error is: A single instance of controller 'TestController' cannot be used to handle multiple requests. If a custom controller factory is in use, make sure that it creates a new instance of the controller for each request.

The PerWebRequest code:

public class UnityPerWebRequestLifetimeManager : LifetimeManager
{
    private HttpContextBase _httpContext;

    public UnityPerWebRequestLifetimeManager()
        : this(new HttpContextWrapper(HttpContext.Current))
    {
    }

    public UnityPerWebRequestLifetimeManager(HttpContextBase httpContext)
    {
        _httpContext = httpContext;
    }

    private IDictionary<UnityPerWebRequestLifetimeManager, object> BackingStore
    {
        get
        {
            _httpContext = (HttpContext.Current != null) ? new HttpContextWrapper(HttpContext.Current) : _httpContext;

            return UnityPerWebRequestLifetimeModule.GetInstances(_httpContext);
        }
    }

    private object Value
    {
        [DebuggerStepThrough]
        get
        {
            IDictionary<UnityPerWebRequestLifetimeManager, object> backingStore = BackingStore;

            return backingStore.ContainsKey(this) ? backingStore[this] : null;
        }

        [DebuggerStepThrough]
        set
        {
            IDictionary<UnityPerWebRequestLifetimeManager, object> backingStore = BackingStore;

            if (backingStore.ContainsKey(this))
            {
                object oldValue = backingStore[this];

                if (!ReferenceEquals(value, oldValue))
                {
                    IDisposable disposable = oldValue as IDisposable;

                    if (disposable != null)
                    {
                        disposable.Dispose();
                    }

                    if (value == null)
                    {
                        backingStore.Remove(this);
                    }
                    else
                    {
                        backingStore[this] = value;
                    }
                }
            }
            else
            {
                if (value != null)
                {
                    backingStore.Add(this, value);
                }
            }
        }
    }

    [DebuggerStepThrough]
    public override object GetValue()
    {
        return Value;
    }

    [DebuggerStepThrough]
    public override void SetValue(object newValue)
    {
        Value = newValue;
    }

    [DebuggerStepThrough]
    public override void RemoveValue()
    {
        Value = null;
    }
}

The controller:

public class TestController : Controller
{
    //
    // GET: /Test/

    public TestController()
    {

    }

    public ActionResult Index()
    {
        return View();
    }

    public ActionResult RadioButtonList()
    {
        return View("TestControl");
    }
}

The Controller Factory:

public class ControllerFactory : DefaultControllerFactory
{
    protected override IController GetControllerInstance(System.Web.Routing.RequestContext requestContext, Type controllerType)
    {
        return (controllerType == null) ? base.GetControllerInstance(requestContext, controllerType) : IoC.Resolve<IController>(controllerType);
    }
}

And in one of the views I am trying to use it like this:

...

<% Html.RenderAction<TestController>(c => c.RadioButtonList()); %>

                        <% Html.RenderAction<TestController>(c => c.RadioButtonList()); %>

...

I don't know what wrong here?

Thanks.

like image 540
may215 Avatar asked Dec 06 '25 06:12

may215


1 Answers

Both unity controller requests are created within the same HTTP request/reply, hence you get the same instance. You need to switch so that the controllers have a Transient lifetime.

I would switch to DependencyResolver instead of using ControllerFactory since you are running MVC3.

like image 184
jgauffin Avatar answered Dec 09 '25 21:12

jgauffin