Deploying Birt in a php application

jblond
edited February 11, 2022 in Analytics #1
Hi,

My problem is to integrate Birt reports in my php application.
To sum up, in one hand I have got my Tomcat application server wich allows to see Birt report with Birt viewer. In the other hand, I have got a Apache server with my php application.

My Birt reports run correctly on Tomcat server. Then I want to integrate these reports in php webpages from my apache server.
I choose to do an iframe toward a Birt report in an html webpage from my apache server (code at the bottom).
The menus appears correctly (from a frameset) but there is the message in the middle of the page:"processing, please wait..."
The matter seems to be the request execution.

I tried many things like the servers coupling but nothing allows to integrate birt reports in php applications.

If you've got ideas... Thanks for your help.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<meta name="generator" content="PSPad editor, www.pspad.com">
<title></title>
</head>
<body>
<IFRAME src="http://localhost:8080/Birt-viewer/frameset?__report=report/sugar_report_etape1.2.rptdesign&quot; width=1000 height=1000 scrolling=auto frameborder=1 >
</IFRAME>
</body>
</html>

Comments