Hi all, I have an application server with several services. One of these services, I call it security-service, is responsible for configuring the shiro realm and instantiates a SecurityManager (for now lets assume it's a web security manager). This service enables getting the realm instance as well as the SecurityManager instance previously created.
The server also enables web content (through jetty). Now, what do I want to do: I want to be able to authenticate users and share sessions across different web applications. I also want to use the filters you provide in shiro-web. A good approach would be using the IniShiroFilter but in a way that I could specify my previously created SecurityManager. Is it possible to use filters with an instance of SecurityManager already created without heavy modifications? I'm really lost here, I could use a hand. Thanks in advance, Rui
