Hi,
Im new to using BIRT ,i created a BIRT report and i succesfully compiled a JSP code having BIRT tags for including the report,this is my JSP file
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="WEB-INF/birt.tld" prefix="birt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1>DISPLAY REPORT</h1>
<birt:report id="test2" reportDesign="stock_report.rptdesign" width="600" height="200">
<birt:param name="sample" value="BIRT Stocks!">
</birt:param>
</birt:report>
</body>
</html>
I compiled it succesfully adding birt.tld file but when i try to run thispage in tomcat 6 it throwing the error
displayReport.jsp(12,1) Unable to load tag handler class "org.eclipse.birt.report.taglib.ReportTag" for tag "birt:report"
can anyone help me with this i got stuck for nearly 2 days with this:(