JSP Problem with printing return arguments
Hi there, I'm starting to work with jsp, and I don't have exp with it. The problem is that I've tried a simple test, just a test.class that has a function that returns a String. And I'm trying to print on the screen but it simply don't print.
Here is the code:
<%@page import="java.util.*" %>
<%@ page import="TestesCamara.obterLideresBancada" language="java" %>
<jsp:useBean id="test" class="TestPackage.testClass" scope="session"/>
<table width="650" border="0" cellpadding="5" cellspacing="5">
<tr><td colspan="5" class="BodyCopy">
Result: <%test.testFunction();%>
</td></tr>
<tr><td>
</TR>
</table>
</body>
</html>
I know it's a simple question, but it's really freaking me out, please, some help is need here. And sorry about my poor english.
Thanks.

