Dave,
this is the xml file (dtd contains 1.2 instead of 1.1)
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
         "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
         "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd";>
<struts-config>
 <form-beans>
   <form-bean name="testForm" type="testForm"/>
 </form-beans>
 <action-mappings>
   <action path="/index"
           type="insertTestAction"
           name="testForm">
     <forward name="success" path="/test.jsp"/>
   </action>
 </action-mappings>
</struts-config>


My classes are stored in webapps/tests/web-inf/classes/test
I deleted all class files to verify : I have four class files (insertTestAction, testDTO, testForm, testService) resin gives as error
loads of error starting with invocationtargetexception
a bit further caused by compileclassnotfound (however I have my class file:s) I guess this is what you expected (and I didn't :s)

Regards,
----- Original Message ----- From: "Dave Newton" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <user@struts.apache.org>
Sent: Monday, August 08, 2005 7:05 PM
Subject: Re: Resin and struts


Not really enough info to go on, but:

Simons Kevin wrote:

   <form-bean name="testForm" type="testForm"/>

Where's the testForm class in real life? Does it live in a package? Where's the compiled class end up?

Dave



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.1/64 - Release Date: 4/08/2005





--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.1/64 - Release Date: 4/08/2005


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to