Do you try to implement the IWebApplicationFactory interface
or what is the place where a Servlet class is passed in?
You could build a custom version of the HiveMindFilter class
that stores the registry reference in an attribute of the ServletContext
instead of the ServletRequest.
The ServletContext can be retrieved from the Servlet reference then.
As alternative you could ignore HiveMindFilter, setup the HiveMind
registry in your implementation of IWebApplicationFactory and then store it
in your application class.
Achim
Am Tue, 19 Dec 2006 19:37:00 +0100 schrieb joeltt <[EMAIL PROTECTED]>:
I'm trying to find out how to integrate Wicket with Hivemind. I'd like to
instantiate the Wicket Application class using Hivemind, but to do so
Wicket
only passes in the Servlet class not an HttpServletRequest. Is there a
way I
can accomplish this?
Joel