Drop-Down List - Cannot Retrieve Definition From Form Bean Null

2003-12-01 Thread Caroline Jen
My drop-down list got an error message: org.apache.jasper.JasperException: Cannot retrieve definition for form bean null I have tried to display the drop-down list in two ways: First: html:select size=1 property=editor multiple=false html:options collection=editors property=name labelProperty

Re: Drop-Down List - Cannot Retrieve Definition From Form Bean Null

2003-12-01 Thread Ajay Patil
() { return this.editor; } } In your JSP page, html:select property=editor html:options property=options / /html:select Hope this helps you... Ajay My drop-down list got an error message: org.apache.jasper.JasperException: Cannot retrieve definition for form bean null I have tried

Re: Cannot retrieve definition for form bean null

2003-10-08 Thread ajay brar
Mailing List [EMAIL PROTECTED] Subject: Re: Cannot retrieve definition for form bean null Date: Tue, 7 Oct 2003 22:33:54 -0700 Struts is looking for the action form defined for the /kiosk action (since that is what the html:form submits to on your page. The action or action form does not exist, so you

Cannot retrieve definition for form bean null

2003-10-08 Thread Jiri Chaloupka
:58:26,005 INFO [STDOUT] finish controler ... 22:58:27,603 ERROR [Engine] ApplicationDispatcher[/cms] Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: Cannot retrieve definition for form bean null at org.apache.jasper.servlet.JspServletWrapper.service

Cannot retrieve definition for form bean null

2003-10-07 Thread victor gusz
Hi, I got the above error when I ran my struts app. I am not using a form for this action since I only need to diaply it. And I am using Tiles framework for this. Appreciate any help. __ Do you Yahoo!? The New Yahoo! Shopping - with improved product search

Re: Cannot retrieve definition for form bean null

2003-10-07 Thread victor gusz
Is it absolutely necessary to use a form bean for every action? I will only let user to click on a link and forward it to another page while sending a value. Should I define a form bean for this? And how can I do it? regards, --- victor gusz [EMAIL PROTECTED] wrote: Hi, I got the above

Cannot retrieve definition for form bean null

2003-10-07 Thread ajay brar
hi! i had heard that a form bean for a form was optional, not sure why i am getting this error here. i have a button on a page and it goes like html:form action=/kiosk browse kiosks html:submit value=Submit//html:form in my struts-config.xml i have defined the following action mapping action

Re: Cannot retrieve definition for form bean null

2003-10-07 Thread Paul Rashidi
If you don't define a form in the struts config file how can you expect the form tag to work correctly? It's whole purpose is to reference the form attribute in your config and then reference the corresponding form in the request. Use the standard html form tag when you don't define a form for

Re: Cannot retrieve definition for form bean null

2003-10-07 Thread Max Cooper
the stuff for your /kiosk action. -Max - Original Message - From: ajay brar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 07, 2003 9:30 PM Subject: Cannot retrieve definition for form bean null hi! i had heard that a form bean for a form was optional, not sure why i am

Cannot retrieve definition for form bean null - Whats the deal?

2003-03-27 Thread White, Joshua A (CASD, IT)
is called, I receive the following error: [ServletException in:/WEB-INF/jsp/jumpCenter.jsp] Cannot retrieve definition for form bean null' What is happening here? I have several other forms setup like this that do not require me to specify the type of form bean in the html:form tag. What else could

Re: Cannot retrieve definition for form bean null - Whats the deal?

2003-03-27 Thread Nicolas De Loof
receive the following error: [ServletException in:/WEB-INF/jsp/jumpCenter.jsp] Cannot retrieve definition for form bean null' What is happening here? I have several other forms setup like this that do not require me to specify the type of form bean in the html:form tag. What else could

Re: Cannot retrieve definition for form bean null - Whats the deal?

2003-03-27 Thread Jeff Kyser
=screen.jumpCenter redirect=false / /action ... ... html:form action=insertUser method=POST ... /html:form ... When the action viewJumpCenter is called, I receive the following error: [ServletException in:/WEB-INF/jsp/jumpCenter.jsp] Cannot retrieve definition

Exception: Cannot retrieve definition for form bean null using ForwardAction

2003-03-26 Thread Alonso, Damian
Hi, I am trying to use a ForwardAction to navigate from one jsp to another. It has been suggested that every JSP Page should be fronted by an Action. I am currently trying to do this, but getting the following exception: javax.servlet.ServletException: Cannot retrieve definition

Re: Exception: Cannot retrieve definition for form bean null using Fo rwardAction

2003-03-26 Thread Stephen Smithstone
definition for form bean null at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextIm p l.java:530) at org.apache.jsp.leadDetails_jsp._jspService(leadDetails_jsp.java:657) [snip] I don't want to use a form bean because this is just a simple

RE: Error 500: Cannot retrieve definition for form bean null

2003-02-15 Thread Nadeemullah Hussain
: MarwanSalam [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 6:42 AM To: [EMAIL PROTECTED] Subject: Error 500: Cannot retrieve definition for form bean null Hi, I am getting Error 500: Cannot retrieve definition for form bean null when I use the form tag html:form

RE: Error 500: Cannot retrieve definition for form bean null

2003-02-14 Thread Joe Barefoot
without changing any of your html:form tags in your jsps. :) --joe -Original Message- From: MarwanSalam [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 5:12 PM To: [EMAIL PROTECTED] Subject: Error 500: Cannot retrieve definition for form bean null

RE: Cannot retrieve definition for form bean null

2003-02-13 Thread Joe Barefoot
even be thrown before the JSP is actually executed. peace, Joe -Original Message- From: Art Vandalay [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 1:38 PM To: Struts Users Mailing List Subject: RE: Cannot retrieve definition for form bean null I

Error 500: Cannot retrieve definition for form bean null

2003-02-13 Thread MarwanSalam [EMAIL PROTECTED]
Hi, I am getting Error 500: Cannot retrieve definition for form bean null when I use the form tag html:form action=/updateOrder.do. However, if I use form action=updateOrder.do method=post, I don't get that error. Is there something wrong I am doing? Here is the action-mapping from struts

Re: Error 500: Cannot retrieve definition for form bean null

2003-02-13 Thread jim
Are you sure fields of bean UpdateOrderForm.java match (get/set) fields in your html form. jim MarwanSalam wrote: Hi, I am getting Error 500: Cannot retrieve definition for form bean null when I use the form tag html:form action=/updateOrder.do. However, if I use form action=updateOrder.do

Cannot retrieve definition for form bean null

2003-02-12 Thread Art Vandalay
] javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null The message seems to imply that Struts is trying to access a bean whose name is null but I don't know what bean that would be as I have no beans referenced on my JSP. I am only trying to invoke the logic contained within the struts-bean.tld

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread Kandi Potter
: [exec] javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null The message seems to imply that Struts is trying to access a bean whose name is null but I don't know what bean that would be as I have no beans referenced on my JSP. I am only trying to invoke the logic

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread Art Vandalay
problem, but do you have the tld directive in your jsp? -Original Message- From: Art Vandalay [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 1:43 PM To: Struts Mailing List Subject: Cannot retrieve definition for form bean null Hello everyone, I am trying to write

Re: Cannot retrieve definition for form bean null

2003-02-12 Thread Art Vandalay
definition for form bean null The message seems to imply that Struts is trying to access a bean whose name is null but I don't know what bean that would be as I have no beans referenced on my JSP. I am only trying to invoke the logic contained within the struts-bean.tld. The logic flow

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread James Childers
: [exec] javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null The message seems to imply that Struts is trying to access a bean whose name is null but I don't know what bean that would be as I have no beans referenced on my JSP. I am only trying to invoke

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread Art Vandalay
- From: Art Vandalay [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 3:19 PM To: Struts Users Mailing List Subject: Re: Cannot retrieve definition for form bean null I'm sorry to bug everyone again with this, but I cannot figure out what this error message is telling me

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread James Childers
12, 2003 3:38 PM To: Struts Users Mailing List Subject: RE: Cannot retrieve definition for form bean null I am not referencing my own bean. The only thing my JSP tries to do is grab a value from a resource bundle and set the title of the page to that value. This is my entire JSP

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread Joe Barefoot
is coming across as blanks on my mailreader. -= J -Original Message- From: Art Vandalay [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 3:19 PM To: Struts Users Mailing List Subject: Re: Cannot retrieve definition for form bean null I'm sorry to bug

RE: Cannot retrieve definition for form bean null

2003-02-12 Thread Art Vandalay
: Wednesday, February 12, 2003 1:38 PM To: Struts Users Mailing List Subject: RE: Cannot retrieve definition for form bean null I am not referencing my own bean. The only thing my JSP tries to do is grab a value from a resource bundle and set the title of the page to that value. This is my

Newbie: Cannot retrieve definition for form bean null

2003-02-11 Thread James Prance
Can someone help me out here.. I have no actions/forms, only an applicationResources.properties and jsp that has an action declared in struts-config.xml as : action path=/index forward=/tour.htm /action this is really simple i know.. but i cant find an explanation for this error anywhere.

Re: Newbie: Cannot retrieve definition for form bean null

2003-02-11 Thread Scott Barr
Hi James What is the error you are getting? Scott On Tue, 2003-02-11 at 21:11, James Prance wrote: Can someone help me out here.. I have no actions/forms, only an applicationResources.properties and jsp that has an action declared in struts-config.xml as : action path=/index

Re: Newbie: Cannot retrieve definition for form bean null

2003-02-11 Thread James Prance
Hi scott.. got it sorted now.. the actual error was in the subject: Cannot retrieve definition for form bean null Thanks anyway.. James Scott Barr [EMAIL PROTECTED] wrote in message 1044966196.1116.9.camel@cypher">news:1044966196.1116.9.camel@cypher... Hi James What is the e

Re: Newbie: Cannot retrieve definition for form bean null

2003-02-11 Thread Scott Barr
Theres my fantastic reading skills coming to the forefront again! Scott On Wed, 2003-02-12 at 00:33, James Prance wrote: Hi scott.. got it sorted now.. the actual error was in the subject: Cannot retrieve definition for form bean null Thanks anyway.. James Scott Barr [EMAIL

Cannot retrieve definition for form bean null

2002-06-10 Thread Supriya Saha
. But when I am forwarding the request to the jsp page I am getting the following Exception : [ERROR,EmbeddedCatalinaServiceSX] ApplicationDispatcher[/pportal] Servlet.servic e() for servlet jsp threw exception javax.servlet.ServletException: Cannot retrieve definition for form bean null

Re: Cannot retrieve definition for form bean null

2002-06-10 Thread Ted Husted
] ApplicationDispatcher[/pportal] Servlet.servic e() for servlet jsp threw exception javax.servlet.ServletException: Cannot retrieve definition for form bean null at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageCon textImpl.java:457

RE: Cannot retrieve definition for form bean null

2002-06-10 Thread Chandra Sekharan Bhaskaran
that form bean is instantiated when the jsp page is also displayed. Bye C.Bhaskaran -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 10:03 PM To: Struts Users Mailing List Subject: Re: Cannot retrieve definition for form bean null

Cannot retrieve definition for form bean null

2002-04-10 Thread Ida Dørum
the relevant code from struts-config.xml as well: Can anyone help me?? --- --- javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:795

RE: Cannot retrieve definition for form bean null

2002-04-10 Thread Arnaud Heritier
request.getSession().setAttribute(mapping.getAttribute(), form); arno# -Message d'origine- De: Ida Dorum [SMTP:[EMAIL PROTECTED]] Date: mardi 9 avril 2002 16:54 A:[EMAIL PROTECTED] Objet:Cannot retrieve definition for form bean null I have

RE: Cannot retrieve definition for form bean null

2002-04-10 Thread Ida Dorum
Mailing List' Subject: RE: Cannot retrieve definition for form bean null Don't you miss to transfert your form bean at the end of your action like this : if(form!=null) if (request.equals(mapping.getScope())) request.setAttribute

Re: Cannot retrieve definition for form bean null

2002-04-10 Thread Christian Bouessay
-Original Message- From: Arnaud Heritier [mailto:[EMAIL PROTECTED]] Sent: 10. april 2002 11:53 To: 'Struts Users Mailing List' Subject: RE: Cannot retrieve definition for form bean null Don't you miss to transfert your form bean at the end of your action like

RE: Cannot retrieve definition for form bean null

2002-04-10 Thread Ida Dørum
or request in forms I've made earlier either. ida -Original Message- From: Christian Bouessay [mailto:[EMAIL PROTECTED]] Sent: 10. april 2002 14:03 To: Struts Users Mailing List Subject: Re: Cannot retrieve definition for form bean null Ida Dorum wrote: The error turned out to be in my mapping

Cannot retrieve definition for form bean null

2002-03-08 Thread Benoit Segaert
available. The method perform() of NewOfferAction finishs with the following line: return (mapping.findForward(success)); I receive the error Cannot retrieve definition for form bean null at this moment. Could you help me? I didn't find a answer in the mailinglist. Benoit

Re: Cannot retrieve definition for form bean null

2002-03-08 Thread Rajagopal V
(mapping.findForward(success)); I receive the error Cannot retrieve definition for form bean null at this moment. Could you help me? I didn't find a answer in the mailinglist. Benoit -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Cannot retrieve definition for form bean null?

2001-10-03 Thread Kilmer, Erich
javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:795) at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:481) at /adminbillertestadd.jsp._jspService

Re: Cannot retrieve definition for form bean null?

2001-10-03 Thread rankinn
Defining a form in your action is definately optional, not sure why you would get that error message - though I have had errors reporting null beans that were acctually masking a different problem. Sorry I couldn't be more help, good luck. Nicola Rankin

Re: Cannot retrieve definition for form bean null

2001-04-12 Thread Craig R. McClanahan
On Fri, 6 Apr 2001, Abraham Kang wrote: Does anyone know what this exception means? javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null I have a simple JSP page that only has two Struts tags: html:form ... /html:form We'd need to see the details

Cannot retrieve definition for form bean null

2001-04-06 Thread Abraham Kang
Does anyone know what this exception means? javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null I have a simple JSP page that only has two Struts tags: html:form ... /html:form Confused, Abraham