We are using the Struts framework, wherein we post from one page to
another page (all the values).
We are seeing a weird problem. When a user uses AOL dial-up, no matter
which browser is used, the values are not being posted and the control
returns back to the first page.
For example -
Page 1 requires user to enter their profile information and a
'Continue' button takes them to Page 2 (verification page). When a
user uses AOL dial-up, the Continue button takes them back to an empty
Page 1 as if they did not type in anything. The Validate framework is
not even invoked and there are no errors on data validation.
This does not happen if AOL is not used.
Any help is greatly appreciated....
Oliver Wong - 05 Jul 2006 22:58 GMT
> We are using the Struts framework, wherein we post from one page to
> another page (all the values).
[quoted text clipped - 13 lines]
>
> Any help is greatly appreciated....
How are you persisting the session? Via IP address? Cookies? Something
else?
- Oliver
Larry - 06 Jul 2006 20:06 GMT
> We are using the Struts framework, wherein we post from one page to
> another page (all the values).
[quoted text clipped - 13 lines]
>
> Any help is greatly appreciated....
Since you are using STRUTS, I'm assuming that you are using an
action-mapping in your struts_config.xml to forward from your JSP to an
Action class, and then to the target JSP? If so, set some debug
break-points in your Action class and follow the logic thru...I think
that may shed some light on the issue.
Larry