RE: No bean found under attribute key - any config problem?

2002-12-09 Thread shirishchandra . sakhare
What do u mean by executing the jsp? The way u have done configuration, there will not be any problem if u are calling the CustomerAction and the CustomerAction action is doing a forward to the jsp. BEcause then only the form bean will be available. How u are executing the jsp? -Original

Re: No bean found under attribute key - any config problem?

2002-12-09 Thread Satyanarayana M
Thanks - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, December 09, 2002 6:27 PM Subject: RE: No bean found under attribute key - any config problem? What do u mean by executing the jsp? The way u have done configuration

RE: Re: No bean found under attribute key - any config problem?

2002-12-09 Thread shirishchandra . sakhare
of bean attributes.i.e. form bean is not referred. regards, Shirish -Original Message- From: satyanarayana [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 2:13 PM To: struts-user Cc: satyanarayana Subject: Re: No bean found under attribute key - any config problem? Hi, I am

RE: No bean found under attribute key - any config problem?

2002-12-09 Thread Justin Ashworth
Hi Satya, From what you've included of your JSP file, it looks like the problem is that the page has no reference to the customrForm bean by the time you go to use it. The html:form.../ tag makes this bean available, but since you are using the logic tags inside your header rather than within an

RE: No Bean found under attribute key

2001-06-28 Thread Niall Pemberton
Your referring to a bean of name indexPage but the only thing in the code you've shown named indexPage is a forward. This will not create a bean named indexPage - try setting up an ActionForm and doing something along the follwoing lines: logic:equal name=myForm property=action scope=request

Re: No Bean found under attribute key

2001-06-27 Thread Martin Cooper
In your logic:equal tag, you are using 'name' and 'property'. In your html:text tag, you are using only 'property'. The second case will work only if this code is inside an html:form tag and the form bean has a property with that name. -- Martin Cooper - Original Message - From: Rama

Re: No Bean found under attribute key

2001-06-27 Thread Rama Krishna
: No Bean found under attribute key In your logic:equal tag, you are using 'name' and 'property'. In your html:text tag, you are using only 'property'. The second case will work only if this code is inside an html:form tag and the form bean has a property with that name. -- Martin Cooper

Re: No Bean found under attribute key

2001-06-27 Thread Martin Cooper
the property name as Server instead of server. -- Martin Cooper - Original Message - From: Rama Krishna [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 27, 2001 5:43 PM Subject: Re: No Bean found under attribute key thanx much martin, html:form action=indexPage html:text name