newtostruts allu

Greenhorn
+ Follow
since Feb 04, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by newtostruts allu

Yes i have the validaiton xml with the same name.
i need the interceptors for database connectivity.Is there any other way that i can get things working.
15 years ago
hi,
I have the validation file name in the same format.
I still have the problem.
when i clicke on the that particular tab in the scree, it displays a form with default values from database.when i modify some or all values and click on save it should actually validate.But it is not.
Thanks,
Unaren
15 years ago
Hi,
Am trying to implement "edit profile" screen.I have a tabbed panel.In one of the divs i have a jsp form which takes these "edit profile" details.i have some default values populated from DB, after that user can change the values.i have validation xml for this action which is not getting called.that is am not able to do basic validations which am able to in other jsp pages.this is what i have in my struts.xml
<action name="doLogin" class="com.xyz.admin.Login">
<interceptor-ref name="params" />
<interceptor-ref name="validation" />
<interceptor-ref name="resourceInterceptor" />
<result name="input">/pages/login.jsp</result>
<result name="error">/pages/login.jsp</result>
<result name="superuserPage" type="redirect">
superuser.action
</result>
</result>
<result type="chain" name="adminPage">
<param name="actionName">doEditProfile</param>
</result>
<result>/pages/login.jsp</result>
</action>
<action name="doEditProfile" method="showData"
class="com.xyz.admin.EditProfile">
<interceptor-ref name="params" />
<interceptor-ref name="resourceInterceptor" />
<!-- <interceptor-ref name="validation" /> -->
<result name="input">/pages/login.jsp</result>
<result name="error">/pages/login.jsp</result>
<result>/pages/employeehomepage.jsp</result>
</action>

<action name="editProfile_save"
class="com.xyz.admin.EditProfile">
<interceptor-ref name="validation" />
<interceptor-ref name="params" />
<interceptor-ref name="resourceInterceptor" />
<result name="error">/pages/login.jsp</result>
<result>/pages/editProfileSuccess.jsp</result>
</action>

I have 2 methods in my action class.One for showing default data in the screen,other one is for saving the modified details to DB.

Can anyone help how to get the validations work from validation-xml

Regards,
Unaren


15 years ago