Re: Problem setting up a basic JSP with actions

2005-02-08 Thread Soaring Eagle
Thanks for the reply. Turns out, that i was facing the class not found exceptions because somehow, my J2EE container (weblogic) was not picking up struts.jar from the lib directory or the WAR file. my WAR file was inside an EAR file. When I placed the struts.jar and other library jars in the EAR fi

Re: Problem setting up a basic JSP with actions

2005-02-07 Thread Max Cooper
className="ui.action.TestAction" should be: type="ui.action.TestAction" -Max On Mon, 2005-02-07 at 14:21 -0500, Soaring Eagle wrote: > Hello, > > I have a simple struts-config.xml like below. This keeps throwing > wierd class not found exceptions. Here is the struts-config and the > exception.

Problem setting up a basic JSP with actions

2005-02-07 Thread Soaring Eagle
Hello, I have a simple struts-config.xml like below. This keeps throwing wierd class not found exceptions. Here is the struts-config and the exception. I cannot understand whats wrong here. Note that the struts.jar file is in the WEB-INF/lib/ folder inside the WAR file. Now, this may not be a func