Strange bean problem in JSP

2002-04-03 Thread Nikola Milutinovic
Hi all. I have a strange bean problem in my JSP page. The bean in question has several properties, most of them are R/W. Anyway, those that I'm trying to set from the request parameters are R/W. My problem is that one of the properties *refuses* to be set. That is eMail. Others, like name

RE: Strange bean problem in JSP

2002-04-03 Thread Sayre Robert
-Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 3:46 PM To: Tomcat Users List Subject: Strange bean problem in JSP Hi all. I have a strange bean problem in my JSP page. The bean in question has several properties, most of them are R

Re: Strange bean problem in JSP

2002-04-03 Thread Nikola Milutinovic
Sayre Robert wrote: You should check the capitalization of your bean properties: is it eMail or EMail? the jsp tag: jsp:setProperty name=dataBean property=eMail/ calling the set method: dataBean.setEMail( request.getParameter( eMail ) ); I would try jsp:setProperty name=dataBean