Hi guys
im looking to embed a report into a jsp
i had a look at the tag lib but just not sure which tags a re required etc and which are optional
I have a report that takes a parameter and i simply want that in a jsp
i thought something like below would work but it doesnt
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="/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>
<birt:viewer id="birtViewer232"
baseURL="
http://localhost:8080/birt-viewer232/report/fineosReport/test"
reportDesign="PFRparamTags.rptdesign&__parameterpage=true"
pattern="frameset"
height="450"
width="700"
format="html"
></birt:viewer>
</body>
</html>
the baseurl is where the report is located
the report design is the name of the report with the parameter attribute
maybe im way off, any guidance appreciated
Thanks