<p>Hello,</p>
<p> </p>
<p>New to birt and jboss. I have read over the documentation for birt and jboss. I am able to design the reports and view them inside of eclipse. I have a jboss server running locally with no errors. I used <a data-ipb='nomediaparse' href='
http://developer.actuate.com/deployment-center/integrating-birt-into-applications/birt-with-jsp/'>this </a>to help guide me with birt and jsp I created a Dynamic Web Project. I have a "index.jsp" file under the Web Content directory. Inside the index.jsp file i have this code:</p>
<pre class="_prettyXprint _lang-nocode">
<%@ 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>Report Viewer</title>
</head>
<body>
<script>
function myFunction()
{
location.reload();
}
</script>
<form action="" style="text-align:center">
<input type="button" value="Refresh" onClick="myFunction()" style="color:#FF0000">
</form>
<birt:viewer id="birtViewer" reportDesign="report/pr_report.rptdesign"
pattern="frameset"
height="800"
width="700"
format="html">
</birt:viewer>
</body>
</html>
</pre>
<p>In the web.xml file i have this code:</p>
<pre class="_prettyXprint _lang-">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<jsp-config>
<taglib>
<taglib-uri>/birt.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/birt.tld</taglib-location>
</taglib>
</jsp-config>
<context-param>
<description>Report resources(design files or document files) directory for preview. Defaults to ${Context Root}</description>
<param-name>BIRT_VIEWER_WORKING_FOLDER</param-name>
<param-value>report</param-value>
</context-param>
</pre>
<p>Project structure image is attached. I .war my project and place it in the deployments folder on the jboss server. It detects the .war and deploys it. I goto <a data-ipb='nomediaparse' href='
http://localhost:8080/birtProject/index.jsp'>http://localhost:8080/birtProject/index.jsp</a>and i see this:</p>
<p> </p>
<p>JBWEB000065: HTTP Status 404 - /birtProject/frameset</p>
<p style="font-family:Tahoma, Arial, sans-serif;color:rgb(0,0,0);font-size:12px;"><b>JBWEB000309: type</b> JBWEB000067: Status report</p>
<p style="font-family:Tahoma, Arial, sans-serif;color:rgb(0,0,0);font-size:12px;"><b>JBWEB000068: message</b> <u>/birtProject/frameset</u></p>
<p style="font-family:Tahoma, Arial, sans-serif;color:rgb(0,0,0);font-size:12px;"><b>JBWEB000069: description</b> <u>JBWEB000124: The requested resource is not available.</u></p>
<p> </p>
<p> </p>
<p>There are no errors in eclipse or in the jboss log files. I am assuming this is just a pathing issue to the report itself, but I have moved the report around in the project and I continue to have the same issue. I have googled this for 2 days and I'm pretty sure I have read almost every post made about birt for the past 5 years. I saw several other people have the same issue as me, but no one ever answered them.</p>
<p> </p>
<p>I have a feeling it is an easy fix and something that I am just overlooking, but I have not been able to find the issue and need some advice from people more experienced. </p>
<p> </p>
<p>I would appreciate any help.</p>
<p> </p>
<p>EDIT: </p>
<p> </p>
<p>I have been able to get this link working:</p>
<p> </p>
<p><a data-ipb='nomediaparse' href='
http://localhost:8080/birt/frameset?__report=report/pr_report.rptdesign'>http://localhost:8080/birt/frameset?__report=report/pr_report.rptdesign</a></p>
<p> </p>
<p>Just cannot get a report to show up from my jsp file</p>
<p> </p>
<p>EDIT #2:</p>
<p> </p>
<p>So I have gotten a report to show up from my jsp file by using this:</p>
<pre class="_prettyXprint _lang-html">
<iframe name="myReport" src="http://localhost:8080/birt/run?__report=report/pr_report.rptdesign&sample=my+parameter" style="height:800px;width:100%;" /></iframe> </pre>
<p>This only works by placing my report into the birt.war folder under this directory [JBoss location]\standalone\deployments\birt.war\report</p>
<p> </p>
<p>BUT, I still do not understand why the viewer below won't work, since it is strait from the <a data-ipb='nomediaparse' href='
http://developer.actuate.com/deployment-center/integrating-birt-into-applications/birt-with-jsp/'>web site</a></p>
<pre class="_prettyXprint _lang-html">
<birt:viewer id="birtViewer" reportDesign="report/pr_report.rptdesign"
pattern="frameset"
height="800"
width="700"
format="html">
</birt:viewer>
</pre>
<p>Is there anyone that can help, please?</p>
<p> </p>
<p> </p>
<div> Edit #3: As I stated above, I know this is an issue that others have ran into. Is there really no one that can offer ANY kind of input. Even if its not the answer. Other boards I use there is discussion on topics like this. Is this board not like that?</div>