From: "Caroline Jen" <[EMAIL PROTECTED]> > Where (in which directory) do you put this action > class? In the directory where all classes that > processes the account information reside? For > example: AppName\WEB-INF\classes\org\ProjName\account\ > ?
This is not an action class, it is a *form* class. Put it wherever it makes sense in your package structure. If you don't have a preference, then just stick it in the same package as your Actions. Did you ever have a plain old ActionForm, or did you go directly to dynamic forms when you started using Struts? Think of your dynamic form as an ActionForm, only instead of writing all those get/set methods, you put that part in struts-config.xml. The validate and reset methods work the same in either case. -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

