I'm trying to install the Display tag library; I've followed the instructions such as described:
http://displaytag.sourceforge.net/install.html
in my jsp page:
<%@ taglib uri="http://www.sensorynet.co.uk/intranet/" prefix="display" %>
<% List test = new TestList( 5 ); %>
<display:table name="test" pagesize="3" list="<%= test %>">
<display:column property="<%= rs.getString("company_name") %>" title="Company Name" />
<display:column property="address" />
<display:column property="email" />
<display:column property="phone" />
<display:setProperty name="sort.behavior" value="list" />
<display:setProperty name="paging.banner.include_first_last" value="true" />
</display:table>
I got this Apache error: resolve symbol : class TestList ??? I have restarted Apache and compile the directory with ant?
Do I have to extract the entire package? where? What I have done is extract only the files required: - These are in WEB-INF/lib
- commons-logging.jar
- commons-lang.jar
- commons-collections.jar
- commons-beanutils.jar
- log4j.jar
Can you give me some advice or tell me where I can get some help please? Best regards, Veronique

