Hi; I'm looking at the v1.0.2 ActionServlet's addServletMapping() method, and I'm noticing that it only handles the case where the ActionServlet has one servlet mapping associated with it. But it's legal (is it not?) to establish several servlet mappings for a Servlet under the 2.2 spec, right?
In our case, we have an ActionServlet that is currently set up to handle several different paths. These paths are not really important to the Actions per se, but (depending on various factors) may be important for reporting purposes (i.e. did the person get into the website via path A, path B or path C, even though all will route him to ActionA). The Form tag seems to be the only Struts tag that uses the servletMapping attribute. Because the addServletMapping() method only ever takes the last mapping it finds, it will always look (if I'm reading the code right) like all requests that make use of the Form tag were submitted to path C. Is there a simple workaround for this, or should I look into submitting a patch? Or should I just not worry about it? :-) Thanks kindly and happy Friday. Laird -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
