Possible Duplicate:
call struts2 action through html action
My HTML code is
<form action="login">
<input type="Submit"/>
</form>
My ActionClass code is
package com.action;
public class LoginAction {
public String execute()
{
return "s";
}
}
strtus.xml is
<package name="default" extends="struts-default">
<action name="login" class="com.action.LoginAction">
<result name="s">/success.jsp</result>
</action>
</package>
web.xml is
<filter>
<filter-name>ExFilter1</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>ExFilter1</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
but when I execute that it gives "The requested resource is not available." error. I don't know what my mistake is; can anyone explain to me what I've got wrong?