public interface MultipartRequestHandler {
/** * After constructed, this is the first method called on * by ActionServlet. Use this method for all your * data-parsing of the ServletInputStream in the request * * @exception ServletException thrown if something goes wrong */ public void handleRequest(HttpServletRequest request) throws ServletException; }
This would not, would it (?), keep people or Struts developers from putting in their own solution but yet would leave the way clear for other developers to use their solutions while keeping ActionForm in the mix? Or, am I making a dreadful mistake here?
Michael McGrady