I have an input screen generated using
JSF 1.2. my command button has an action of "{OrgBean.addRecord}" which when the button is selected on my web browser
jboss errors with the following:
javax.servlet.ServletException: /orgmaint.jsp(63,15) '#{OrgBean.addRecord}' Method not found:
mysite.generalledger.OrgBean@11cf7d7.addRecord()
If I change the action to be a
string result, and have faces send it to another
jsp, that jsp can display the contents of the bean so I know the bean is being instantiated and loaded. Why does jboss append the @11cf7d7 to the call. Is that the problem or do I have a different problem. The function addRecord is present in the OrgBean class.
Any help would be appreciated. I'm still a beginner.