Re: Action path matching [BUG]

2005-06-30 Thread Laurie Harper
Oops, never mind, error between keyboard and chair... Laurie Harper wrote: Extending the test cases listed below, I believe I've found a bug in the path matching logic. Given the following pair of action mappings: Struts allways matches the latter. That is, it matches with

Re: Action path matching [BUG]

2005-06-30 Thread Laurie Harper
Extending the test cases listed below, I believe I've found a bug in the path matching logic. Given the following pair of action mappings: Struts allways matches the latter. That is, it matches with "/pathtest/**/suffix" whether the submitted URL ends with "/suffix" or not.

Action path matching

2005-06-28 Thread Laurie Harper
Given the following action mappings, I can reach every JSP bar one: The problem mapping is "/pathtest/one/*/two/" (or "/pathtest/one/*/two/**", depending on how you look at it...) Basically, the former is never matched. Reque