Re: Override form action URL

2004-06-09 Thread Niall Pemberton
al Message - From: "Eric Jain" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, June 03, 2004 3:20 PM Subject: Re: Override form action URL > > If so you can define a dummy action to which your form points. In the >

Re: Override form action URL

2004-06-09 Thread Niall Pemberton
AIL PROTECTED]> Sent: Thursday, June 03, 2004 11:25 AM Subject: Override form action URL > I have: > > > > > > > which generates: > > > > > > > This works, but I would like to avoid exposing the action URL and return > this inste

Re: Override form action URL

2004-06-03 Thread Eric Jain
If so you can define a dummy action to which your form points. In the dummy just forward to your actual action. In the rendered jsp/html page you will see the dummy action. Thanks, unfortunately the example I gave was somewhat simplified. I'd rather avoid having to configure dozens of dummy acti

Re: Override form action URL

2004-06-03 Thread brati . sankarghosh
Ghosh Tata Consultancy Services Mailto: [EMAIL PROTECTED] Website: http://www.tcs.com Eric Jain <[EMAIL PROTECTED]> 06/03/2004 03:55 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To [EMAIL PROTECTED] cc Subject Override form act

Override form action URL

2004-06-03 Thread Eric Jain
I have: which generates: This works, but I would like to avoid exposing the action URL and return this instead: There is a servlet filter that will internally forward '/test/a/' to '/test/search?dataset=a'. An obvious solution would be: Unfortunately this does not work as