This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Due to some reason(s) I'm not getting the java bean value in my JSP. If I understood correctly property="reportName" will call getreportName() method the bean. But it doesn't look like it is going into that method.
GetReportName - "R" should be in caps as per naming standard in the method only. The variable name remains as reportName. 2. This often happens because the variable name in the bean and the name defined in jsp do not match. Check for spelling mistakes in naming variables or other such errors which may lead to a mismatch.
Edit: *rushes onto the easy ones* [ August 02, 2006: Message edited by: Samuel Cox ]
Dilip kumar
Ranch Hand
Joined: Oct 16, 2000
Posts: 360
posted
0
Thank you guys.
I have added 3 methods including getReportName() in the bean. But I don't see JSP reaching any of these methods. It is possible that there could be some scope issue ?