
import javax.servlet.http.*; import org.apache.struts.action.*;
public class ActionOne{ public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception{
ActionErrors aes = new ActionErrors();
ActionMessage am1 = new ActionMessage("first");
aes.add("e1",am1);
aes.add("e2",new ActionMessage("second"));
aes.add("e3", new ActionMessage("third"));
saveErrors(request,aes);
return mapping.findForward("errors.jsp");
} }
i set both servlet,struts jar files and i got an error in saveErrors() error
cannot find symbol in saveError(...)
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.