Hi all,
I have made a simple application, in which user enters login name and password, and if it correct then welcome page is forwarded else error page is forwarded.
I want to use validator plug-in. So, in struts-config.xml file I made an entry for <plug-in> :
<plug-in classname="org.apache.struts.validator.ValidatorPlugIn" >
<set-property property="pathnames"
value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />
</plug-in>
After, that when I start my application it gives me exception :
type : Status Report
message :
Servlet action is currently unavailable
description : The requested service (Servlet action is currently unavailable) is not currently available.
Can, any one help me, how to resolve this problem ?
Thanks.