Re: Accessing EJB methods from JSP
Posted By:
moen_chishti
Posted On:
Wednesday, May 15, 2002 03:51 AM
u have accessed ejb through jsp now can u send me the code i also want to do that and i dont have fine any help thanx
Re: Accessing EJB methods from JSP
Posted By:
Rohit_Gupta
Posted On:
Sunday, March 3, 2002 12:01 PM
In JSP Typically expressions<%=...%> are used to display simple values of variables or return values by invoking a bean's getter methods
<%= fooVariable %>
<%= fooBean.getName() %>
take "hello.sayHello(Name, Phone)" into a String variable and then try to print it thru jsp scriplet <%=%>.
Re: Accessing EJB methods from JSP
Posted By:
li_fachun
Posted On:
Wednesday, February 27, 2002 06:40 PM
it seems that this is an jsp compiling error, you had better check your jsp code again.