Eclipse 3.5 + Seam 2.2.0 + JBoss 5.1.0 + BIRT 2.5.1
I am trying to get the BIRT viewer working within my seam pages. I have the BIRT viewer running standalone fine (i.e. Call the test.rptdesign and it displays correctly.)
Now I have created a simple seam XHTML page as follows:
<p:birt xmlns:ui="
http://java.sun.com/jsf/facelets"
xmlns:s="
http://jboss.com/products/seam/taglib"
xmlns:p="
http://jboss.com/products/seam/birt" designType="frameset"
designName="test1.rptdesign" title="JBoss Birt Test">
</p:birt>
When I display the page in the browser, the page is blank and the source of the page still contains a generated HTML header, but the <p:birt> .......</p:birt> tag as it appeared in the XHTML.
My understanding is that when taglibs remain unresolved that the servlet has no idea how to process the <p:birt> tag. The birt.tld exists, and the BIRT jars all seem to exist in my web project. I suspect its a simple configuration issue, and the Eclipse, but cannot fine information on what I would need to verify. My guess is that I need to add something to web.xml regarding the birt TLD, or set some BIRT variable????
Any help or good document links is much appreciated.
Thanks