perry arora
Posts: 22
Nickname: perry
Registered: Sep, 2003
|
|
Re: !!Error using struts [INFO] PropertyMessageResources - -Initializing
|
Posted: Sep 22, 2003 11:03 PM
|
|
hi following is the code for MyProcessor...
c if any 1 can help me
public void process(HttpServletRequest request,HttpServletResponse response) throws IOException,ServletException { request=processMultipart(request); String path=processPath(request,response); ActionMapping mapping=processMapping(request,response,path); ActionForm actionform=processActionForm(request,response,mapping); Action action=processActionCreate(request,response,mapping); ActionForward actionforward=processActionPerform(request,response,action,actionform,mapping);
processForwardConfig(request,response,actionforward); }
public ActionForward processActionPerform(HttpServletRequest request,HttpServletResponse response, Action action,ActionForm actionform,ActionMapping mapping) throws IOException,ServletException { try{ return (action.execute(mapping,actionform,request,response)); } catch(Exception e){ return (processException(request, response, e, actionform, mapping)); } }
}// end of the
|
|