I think that as long as you avoid transforming documents, you'll be ok. The only thing you'll have to do is provide your own Controller base class; ThrowawayBean2 (and ThrowawayBean) passes HttpServletRequest.getParameterMap() to BeanUtils.populate(). getParameterMap() is not available in the Servlet 2.2 API.
Assuming you want the Throwaway-style bean and bean property population, just copy ThrowawayBean2 and replace the getParameterMap() call with a manually constructed map. Extending Throwaway2 from your own class is perfectly safe. Jeff Schnitzer [EMAIL PROTECTED] > -----Original Message----- > From: John-Mason P. Shackelford [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 10, 2002 11:27 AM > To: [EMAIL PROTECTED] > Subject: [Mav-user] servlet 2.2 api > > The FAQ states clearly that the the container must support the servlet > 2.3 api; however, I have no choice but to use iPlanet (prod.) and JRun > 3.0 (dev) neither of which supports servlet 2.3. I have used Maverick in > the past and have found it to be a very clean, lightweight > implementation of MVC. Is there any part of it I can use given these > limitations? Is use of Maverick going to be production stable given the > work-arounds / limitations you suggest? > > Does the statement in the Mav 1.0 FAQ also apply to Mav 2.0 and apply > more broadly to all servlet 2.2 api containers? > > >Does Maverick work with Tomcat 3.x? > > > > It is not officially supported, but it can be made to work with some > limitation. > > Due to limitations in the Servlet 2.2 API, you cannot apply a > transformation > > <pipeline> to <source-document> or <source-jsp>. So as long as you do > not > > need to transform static (or jsp) documents, it will probably work. > Don't > > bother trying the friendbook example, though :-) > > (http://mav.sourceforge.net/version1/faq.html) > > > Thanks very much. > > John-Mason Shackelford > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - > http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Mav-user mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/mav-user _______________________________________________________________ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink _______________________________________________ Mav-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/mav-user
