this is one example cant post whole project here
CODE
package com.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import com.form.LoginForm;
/**
* Action class to add items to the cart.
*/
public class LoginAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
HttpSession session= request.getSession();
LoginForm loginForm=(LoginForm)form;
// String result=null;
// if(loginForm.getUserName().equals("vijay") && loginForm.getPassword().equals("vijay"))
// return mapping.findForward("success");
// else
// result = "fail";
return mapping.findForward("success");
}
}
** Edit **