Re: Bean problem

2007-08-20 Thread isharatbabu
t; Best regards >> Torben Frøberg >> >> - >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> > > -- View this mes

Re: Bean problem

2007-08-20 Thread isharatbabu
additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Bean-problem-tf3944343.html#a12233047 Sent from the Struts - User mailing list archive at Nabble.com.

Bean problem

2007-06-18 Thread torben
Struts 2 question. In a jsp page I have a reference to a bean: My problem is to set the parameter jobIdText, which need the value from the jobId attribute. Actually the jobId is a parameter in the http request. Above I am just trying to get the value from the Action class, which is i

Re: "cannot find bean" problem

2007-05-13 Thread Nuwan Chandrasoma
s rao" <[EMAIL PROTECTED]> To: Sent: Sunday, May 13, 2007 11:06 AM Subject: "cannot find bean" problem Hi everyone, I seem to be getting this error: *javax.servlet.ServletException: org.apache.jasper.JasperException: javax.servlet.ServletException: javax.servlet.jsp.JspExc

"cannot find bean" problem

2007-05-13 Thread vikas rao
Hi everyone, I seem to be getting this error: *javax.servlet.ServletException: org.apache.jasper.JasperException: javax.servlet.ServletException: javax.servlet.jsp.JspException: Cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope * where is this struts.taglib.html.BEAN? ive not dec

single field(two properties should be set in the bean) problem

2005-11-23 Thread Kanuri, Chand
hi all, i got a problem with struts forms. i got a form called PeopleForm in which there is a bean called ItemBean which is instatiated in the form as below. ItemBean bean=new ItemBean (); ItemBean has two attributes namely "name" and "code". i am using tiles so i am getting these into a dropdo

RE: session form bean problem -- post again.

2005-01-04 Thread t t
particular fields from ANY of the stored beans I choose to show. It works well with multi-page validation schemes. Regards, David -Original Message- From: t t [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 04, 2005 10:21 AM To: Struts Users Mailing List Subject: RE: session form bean probl

RE: session form bean problem -- post again.

2005-01-04 Thread David G. Friedman
l with multi-page validation schemes. Regards, David -Original Message- From: t t [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 04, 2005 10:21 AM To: Struts Users Mailing List Subject: RE: session form bean problem -- post again. Thanks, David. Could you please give a simple example to

RE: session form bean problem -- post again.

2005-01-04 Thread t t
y "Constants.USER_KEY". This works for many tags in the "bean" and "html" taglibs. Regards, David -Original Message- From: t t [mailto:[EMAIL PROTECTED] Sent: Monday, January 03, 2005 9:30 AM To: user@struts.apache.org Subject: session form bean problem -- po

RE: session form bean problem -- post again.

2005-01-03 Thread David G. Friedman
t t [mailto:[EMAIL PROTECTED] Sent: Monday, January 03, 2005 9:30 AM To: user@struts.apache.org Subject: session form bean problem -- post again. Happy new year! Since I posted this problem before Christmas and didn't get answer, I post it again. . I have such action mapping: ---

session form bean problem -- post again.

2005-01-03 Thread t t
Happy new year! Since I posted this problem before Christmas and didn't get answer, I post it again. . I have such action mapping: - The code in the "PopulateAction" class is: --- public ActionForward execute

Re: session form bean problem --more code

2004-12-23 Thread t t
Thanks. Here is the code: --- public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { HttpSession session = request.getSession(); User user = (Use

Re: session form bean problem

2004-12-23 Thread Bill Siggelkow
Hmm .. please include the code from the PopulateAction. t t wrote: Hi, all, First, happy holidays to you! I got a question. I have such action mapping: type="myClasses.PopulateAction" name="SearchForm" scope="request" v

session form bean problem

2004-12-23 Thread t t
Hi, all, First, happy holidays to you! I got a question. I have such action mapping: - I want to populate "SearchForm" with some existed values(stored in session) before showing "search.jsp". This work is done in