Accessing a bean from a JSP

There is no specific issue to access a bean from a JSP with JOnAS. Here is an example skeleton:

<html>
<head><title>Test JSP</title></head>
<body>
<jsp:useBean id="myBean" scope="page" class="myPackage.MyBean" />
<%
     myBean.callBusinessMethod();
%>
<p>
</body>
</html>