| Author |
Reg:Struts and ejb integration
|
Yogaraj Khanal
Ranch Hand
Joined: Jun 06, 2007
Posts: 39
|
|
Hi All, I am trying to deploy struts application in Tomcat and deploy ejb appplication in weblogic but getting this error.Can any expert help me with this.Tomcat is sometime throwing same jsp code back instead of executing the code, can anyone suggest what the heck is going wrong? 500 Servlet Exception java.lang.NoSuchMethodError: org.apache.struts.action.ActionErrors.add(Ljava/lang/String;Lorg/apache/struts/action/ActionError V at ActionBean.execute(ActionBean.java:33) at org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58) at org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67) at org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51) at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190) at org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304) at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190) at org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913) at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462) at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at com.caucho.server.http.FilterChainServlet.doFilter(FilterChainServlet.java:96) at com.caucho.server.http.Invocation.service(Invocation.java:315) at com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:135) at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:253) at com.caucho.server.http.HttpRequest.handleConnection(HttpRequest.java:171) at com.caucho.server.TcpConnection.run(TcpConnection.java:139) at java.lang.Thread.run(Thread.java:534)
|
Raj
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
|
The reason you're getting this message is that the ActionErrors.add method has now changed and no longer accepts a instance of ActionError as a parameter. You must use ActionMessage for this parameter instead of ActionError.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: Reg:Struts and ejb integration
|
|
|