アプリケーション用 (Apache http) と BIRT レポート用 (tomcat) の 2 つのサーバーがあります。XML スキーマ ファイルで設計された BIRT レポートを作成します。ここで、データソース URL は
http://localhost/myApp/index.php
実際にレポートにアクセスするための URL は次のとおりです。
http://localhost:8080/birtviewer/frameset?__report=DummyOrder.rptdesign
これで、レポート URL でパラメータを渡す場合、次のようにデータソース URL に渡す必要があります。
Report URL: http://localhost:8080/birtviewer/frameset?__report=DummyOrder.rptdesign&OrderNo=101
DataSourceURL: http://localhost/myApp/index.php?OrderNo=101
これを達成する方法はありますか??