I've planning to develop a web application using Java and based on some MVC framework. This application should support plugins.
So, I planning to create plugin using OSGI container(apache felix) and expose plugin as a service (using service registry feature of OSGI).
Both(web application and OSGI service) will be running in same JVM.
So, I need help on how can I use the OSGI service(plugin) outside OSGI container ?
I basically want to invoke exposed OSGI service outside OSGI, in this case in my web application.
Thanks in advance !