From what I understand about Windsor Container and MVC applications, is that there should only be one instance of the container and it's usually registered in Global.asax for the running life of the application.
I've separated out my business layer in to a separate assembly from the web application and obviously I can't get to that instance unless I register the web application in the other assembly which would create a circular reference.
How do I use the container throughout my application? User a global static reference in my business layer assembly?