Re: problem with html:text bean throwing exception

2003-11-19 Thread Gus Heck
Anyone else got ideas about why I am getting this exception? org.apache.jasper.JasperException: Cannot find bean org.apache.struts.taglib.html.BEAN in any scope It appears that I answered Carl's concern. I'm now on day number 2 of being completely stuck :(. I would like to officially complain

RE: problem with html:text bean throwing exception

2003-11-19 Thread Yee, Richard K,,DMDCWEST
the browser? Without your code and struts-config, everyone just has to guess. Regards, Richard -Original Message- From: Gus Heck [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 8:32 AM To: Struts Users Mailing List Subject: Re: problem with html:text bean throwing exception Anyone

Re: problem with html:text bean throwing exception

2003-11-19 Thread Daniel A. Torrey
html:text property=city maxlength=50 size= 20/ If this is what's inside your html:form tag, and the ActionForm used in the tag is an org.cs101.fdb.struts.form.AddLocationForm, does AddLocationForm have getCity() and setCity() methods? is a really unclear error message. I don't get why it

Re: problem with html:text bean throwing exception

2003-11-19 Thread Gus Heck
: Re: problem with html:text bean throwing exception Anyone else got ideas about why I am getting this exception? org.apache.jasper.JasperException: Cannot find bean org.apache.struts.taglib.html.BEAN in any scope It appears that I answered Carl's concern. I'm now on day number 2 of being

RE: problem with html:text bean throwing exception

2003-11-19 Thread Yee, Richard K,,DMDCWEST
: problem with html:text bean throwing exception Thanks, I found it... I had inadvertently typed: html:form action=prototypes/AddLocation.do scope=session/ However all the archive and google hits talked about issues in the struts-config. I really really wish that struts had a better way

Re: problem with html:text bean throwing exception

2003-11-19 Thread Gus Heck
Yee, Richard K,,DMDCWEST wrote: Gus, I'm not sure what you changed on your JSP to get it fixed. I changed html:form action=prototypes/AddLocation.do scope=session/ to html:form action=prototypes/AddLocation.do scope=session This put my html:text tags inside the form. Apparently neither

RE: problem with html:text bean throwing exception

2003-11-19 Thread Yee, Richard K,,DMDCWEST
- From: Gus Heck [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 10:27 AM To: Struts Users Mailing List Subject: Re: problem with html:text bean throwing exception Yee, Richard K,,DMDCWEST wrote: Gus, I'm not sure what you changed on your JSP to get it fixed. I changed

problem with html:text bean throwing exception

2003-11-18 Thread Gus Heck
So I have been stuck for a day or so on this exception: org.apache.jasper.JasperException: Cannot find bean org.apache.struts.taglib.html.BEAN in any scope at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254) at

Re: problem with html:text bean throwing exception

2003-11-18 Thread Carl
Have you a vaild formBean define for this html:form in your struts config file ? form-bean name=myForm type=org.myForm/ Is this bean called in your action mapping ? action path=/htmlForm type=org.myAction name=myForm scope=request validate=true input=/page.jsp forward name=success

Re: problem with html:text bean throwing exception

2003-11-18 Thread Gus Heck
I believe so... Here is my config and some of the relevant directory tree... The action for NewLocation appears to successfully take me to the AddLocation page. (it only forwards right now). form-beans form-bean name=addLocationForm type=org.cs101.fdb.struts.form.AddLocationForm /