I ended up replacing the <meta> tag refresh method with javascript that
parses the "url" variable and recreates a <form> element on the fly to
submit via POST.
On Fri, Nov 20, 2020 at 4:19 PM Burton Rhodes <burtonrhodes@gmail.com>
wrote:
> I have a page that submits a form via POST and uses the ExecuteAndWait
> interceptor. On the "wait" jsp I have:
>
> <meta http-equiv="refresh" content="5;url=<s:url
> includeParams="all"/>"/>
>
> However, the includeParams "all" is including all the POST form variables
> (which there are many), and as a result, I am getting a "URI too long"
> exception. Is there an easy fix for this? Can't believe I've never run
> into this issue before.
>
> Many thanks.
>
|