Re: jsp:getProperty not working

2013-01-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Benin, On 1/25/13 6:56 PM, Benin Technologies wrote: > I'm new to Tomcat/JSP > > I have a JSP page that instantiates a bean, then it access the > bean through a scriptlet, it works fine. But when I replace the > scriptlet by a > Take my code belo

Re: jsp:getProperty not working

2013-01-25 Thread Benin Technologies
thanks for your reply below my EmployeeBean source code package org.company.beans; public class EmployeeBean { private int id; private StringfirstName, lastName, email, department; public Employ

Re: jsp:getProperty not working

2013-01-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 To whom it may concern, On 1/25/13 6:56 PM, Benin Technologies wrote: > I'm new to Tomcat/JSP > > I have a JSP page that instantiates a bean, then it access the > bean through a scriptlet, it works fine. But when I replace the > scriptlet by a >

jsp:getProperty not working

2013-01-25 Thread Benin Technologies
Hi, I'm new to Tomcat/JSP I have a JSP page that instantiates a bean, then it access the bean through a scriptlet, it works fine. But when I replace the scriptlet by a Take my code below : <%= employee.getFirstName() %> IS WORKING, it displays the employee's firstname IS NOT WORKING, dis