Re: Form Bean problem

2002-02-25 Thread Sarah Farrell
The error sounds like it is referring to the taglib struts-bean.tld, whether or not it is a legitimate error, I'm not sure. Try taking out the line %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean % from your jsp and change the button tags back to regular HTML where html:submit

Re: ActionForm and default values

2002-02-23 Thread Sarah Farrell
All I can say is that I was really tired last night. Because this certainly does not work. So I still could use some help. At 10:34 PM 2/22/2002 -0700, you wrote: It's Friday, it's late, and I'm answering my own posts replacing newInstance() with getInstance() does the trick. At

Re: ActionForm and default values

2002-02-23 Thread Sarah Farrell
not sure if we know what you are trying to do =:o) Sarah Farrell wrote: All I can say is that I was really tired last night. Because this certainly does not work. So I still could use some help. -- Ted Husted, Husted dot Com, Fairport NY US -- Developing Java Web Applications with Struts

Re: ActionForm and default values

2002-02-23 Thread Sarah Farrell
classes. So, the ActionFormBean object tells the ActionServlet what ActionForm object to instantite. (And boy do we regret calling everything Action* =:o) -Ted. Sarah Farrell wrote: Short story: I need to retrieve existing ActionForms (ActionFormBeans?) from the Controller Servlet

Re: ActionForm and default values

2002-02-23 Thread Sarah Farrell
the ActionServlet what ActionForm object to instantite. (And boy do we regret calling everything Action* =:o) -Ted. Sarah Farrell wrote: Short story: I need to retrieve existing ActionForms (ActionFormBeans?) from the Controller Servlet or from the current Session. (I also do not understand

Re: ActionForm and default values

2002-02-23 Thread Sarah Farrell
to the perform method? This is the way we do it in our applications. Thanks Jay On Sat, 23 Feb 2002, Sarah Farrell wrote: So the answer, in code, from within my ReviewAction class is the line: ContactForm cForm = (ContactForm) request.getSession(false).getAttribute(contactForm); where

viewing email from this list

2002-02-22 Thread Sarah Farrell
Is anyone *not* having problems viewing the email from this list? And if you aren't having problems, what email program are you using? (Never mind if you're using Pine on Unix.) My email client, Eudora, hides some of the text if it looks like an HTML tag. I can only see it if I view source

Re: ActionForm and default values

2002-02-22 Thread Sarah Farrell
I was trying out Ted's code, slightly modified, in an Action class: protected ActionForm createActionForm(String path) { ActionServlet as = this.getServlet(); ActionMapping mapping = as.findMapping(path); String name = mapping.getName(); ActionForm form = null;

Re: ActionForm and default values

2002-02-22 Thread Sarah Farrell
It's Friday, it's late, and I'm answering my own posts replacing newInstance() with getInstance() does the trick. At 10:02 PM 2/22/2002 -0700, you wrote: I was trying out Ted's code, slightly modified, in an Action class: protected ActionForm createActionForm(String path) {

Re: CLASSPATH, env, lib, jars and all that

2002-02-12 Thread Sarah Farrell
This is a great question. I've been thinking about the same issues. I've been working on several projects here and I've migrated from Tomcat to IIS/ServletExec to Orion. At one point, I put most of my jar files in WEB-INF/lib which were found by IIS but not by Orion. Then I started working

Re: Pre and Post Processing

2002-02-12 Thread Sarah Farrell
like about the select implementation? I think it's cool! Dave Sarah Farrell [EMAIL PROTECTED] on 02/11/2002 10:19:26 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] cc:(bcc: David Hay/Lex/Lexmark) Subject

Re: Pre and Post Processing

2002-02-11 Thread Sarah Farrell
I'm relatively new to struts too. But I really don't like the HTML select implementation. So I use a custom tag to fill in select/option lists. In fact I have to use this tag throughout my application so I made it very generic. My select/option lists almost always come right from my database.

Re: help: %.. how do i convince them to learn JSP?

2002-02-11 Thread Sarah Farrell
Michael, Here's the best one I could find. http://java.sun.com/blueprints/guidelines/designing_enterprise_applications/ web_tier/qanda/index.html There are some other ones on java.sun.com if you search for JSP presentation logic separate. Here's another one: http://java.sun.com/products/jsp/