Have a look at HttpWhiteboardConstants#CONTEXT_ID [1]. From that it appears that to share the context you need to
1. Register a HttpContext as a service with service property 'contextId' set to some shared name say foo 2. Register your filter with property contextId to 'foo' 3. Also set property 'context.shared' to true with the filter This seems to allow sharing of the HttpContext and thus the servlet context between various servlets Chetan Mehrotra [1] https://github.com/apache/felix/blob/trunk/http/whiteboard/src/main/java/org/apache/felix/http/whiteboard/HttpWhiteboardConstants.java#L51 --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@felix.apache.org For additional commands, e-mail: users-h...@felix.apache.org