Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
333 views

Testing Castle windsor Component with PerWebRequest lifestyle

I'm trying to do some testing with castle windsor involved, in one of my tests I want to check the windsor installers, so I check that the container can resolve my components given its interface. So ...
2
votes
2answers
620 views

castle PerRequestLifestyle not recognize

New to Castle/Windsor, please bear with me. I am currently using the framework System.Web.Mvc.Extensibility and in its start up code, it registered HttpContextBase like the following: ...
1
vote
3answers
385 views

Windsor PerWebRequest resolution in Application_Start

I am injecting HttpContextBase into a caching class. HttpContextBase is registered as PerWebRequest. I interact with the caching class on each web request and this works fine, but I also need to ...
1
vote
1answer
238 views

Some objects created with PerWebRequest are not garbage collected at the end of web request

Given public class a : IDisposable { public static int counter; public a() { counter++; } ~a() { counter--; ...
1
vote
2answers
1k views

Castle Windsor PerWebRequest LifeStyle and Application_EndRequest

I'm registering some components related to Linq2Sql using PerWebRequest lifestyle. I see them get created, but they get destroyed before my global's Application_EndRequest method gets called. Is ...
1
vote
1answer
552 views

Setting PerWebRequest Lifestyle In NHibernate

I have a pretty basic NHibernate setup. I am not using Castle Widnsor or anything special like that to do IoC in my code. All I want to do is set my Lifestyle to PerWebRequest, but I cannot figure ...
0
votes
0answers
29 views

castle windsor, do I need to register perwebrequestlifestylemodule Module?

I am working on Windsor Tutorial part 7. http://stw.castleproject.org/Windsor.Windsor-Tutorial-Part-Seven-Lifestyles.ashx I changed ISession lifestyle to ".LifeStyle.PerWebRequest". According to ...