Hello everyone I am looking at the felix servicebinding interceptors with a certain amount of enthusiasm, but i am having trouble figuring out if they can solve a specific task.
http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/service-binding-interceptors.html What i would like to do is the following: Whenever a ServiceReference is requested for an interface (No matter which one), i want an interceptor to examine it. If the interface meets some criteria, the an interceptor should create a proxy for that interface, regardless of a matching implementation being registered. So: Even if no object is actually registered as a service to that interface, i want the interceptor to return a proxy anyway. Is that possible to do in any way? Thank you in advance. -Martin

