| Author |
ActionError history is not clearing automatically
|
Meet Gaurav
Ranch Hand
Joined: Oct 08, 2008
Posts: 492
|
|
Hi
I have a small struts application in the login form I have the validate() to validate the userId and pwd whether is null or not and displaying the action error messages.
struts-config.xml
-------------------
<action path="/Login" parameter="/Login/login.jsp" type="org.apache.struts.actions.ForwardAction" />
In JSP
-------
<div style="color:red">
<html:errors />
</div>
Everytime while accessing the /Login.do am getting the validation errors also like(user is required and password is required). After refreshing the page is disappears.
I tried adding
<%
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", -1);
%>
but no use.. Everytime at first login I got the validation errors. Please assist me to resolve this.
|
 |
Meet Gaurav
Ranch Hand
Joined: Oct 08, 2008
Posts: 492
|
|
|
Please assist
|
 |
vijay saraf
Ranch Hand
Joined: Jan 08, 2005
Posts: 141
|
|
Dear Meet,
I think that is not because of chached errors...
that may be because , you are directly going to the Login Action without going thru JSP and as you have validatation hrnce it is fired and you are having Action Errors on the page...
|
Thanks
Vijay Saraf.
|
 |
Meet Gaurav
Ranch Hand
Joined: Oct 08, 2008
Posts: 492
|
|
Saraf,
Could you please assist me.. How to resolve this issue...
You are Rite. I put some System.out.println in the validate method, yes it's firing the validate method ont he first hit.
Thanks
|
 |
vijay saraf
Ranch Hand
Joined: Jan 08, 2005
Posts: 141
|
|
ok...
i think ,you can break your action in to 2 action
1st for, just to redirect to Login.jsp,when user just click on Login Link.
2nd for, to validate and forward on action,when user enter userid/pass and hits submit button.
|
 |
 |
|
|
subject: ActionError history is not clearing automatically
|
|
|