Re: [struts] Wildcard mapping should not suck (but does)

2008-03-16 Thread stanlick
I had been using only the method attribute on the tag until discovering it was causing to water to run uphill when it came to the validators. I started experimenting and landed on moving the method settings over to the action on the tag. I toyed around with deferring to the action attribute on

Re: [struts] Wildcard mapping should not suck (but does)

2008-03-16 Thread Dale Newfield
stanlick wrote: I discovered the method attribute of the tag ignores the validation completely! Not only this, but it's also a potential security hole, and might be going away or being made to require more configuration in the future. Why are you specifying the action in the submit tag inste

Wildcard mapping should not suck (but does)

2008-03-15 Thread stanlick
I am writing what should have been the simplest three page wizard ever. It involves a single wildcard action mapping session /pages/wizard/${currentPage}.jsp /pages/wizard/${currentPage}.jsp and four pages pageOne.jsp, pageTwo.jsp, pageThree.jsp, and thanks.jsp. Th