Thanks for this.  I would like to add one thing.  After dealing with the 
same symptoms with the same cause as you, I had to think about how will the 
container managed resources be cleaned up.  I am sure you considered this 
but it was not specifically called out in this thread so here's what I did:

protected void Application_End() {
    _container.Dispose();
}

It cured my self-inflicted pain as well.  I should also note that I found 
the answer here:

http://docs.castleproject.org/Windsor.Windsor-tutorial-part-four-putting-it-all-together.ashx

Cheers!
Bryan

On Sunday, February 3, 2013 12:50:01 PM UTC-7, mbergal wrote:
>
> Thank you guys, 
>
> Of course it was self-induced problem. Somehow the Global application 
> class contained:
>
>  public override void Dispose()
>              {
>              _container.Dispose();
>              base.Dispose();
>              }
>

-- 
You received this message because you are subscribed to the Google Groups 
"Castle Project Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/castle-project-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to