There is no report design object available.in BIRT web viewer

心不动则不痛 提交于 2019-12-11 12:11:20

问题


I can See the BIRT report Through Default Birt Directory

http://127.0.0.1:8080/BIRT/frameset?__report=test.rptdesign

But i can't run BIRT report like

http://127.0.0.1:8080/BIRT/frameset?__report=C:/xampp/htdocs/project/test.rptdesign


ERROR:  + There is no report design object available.

Is there any Solution??

Sorry my question is directed to wrong way

If i upload my project to Web hosting server is there any configuration needed??


回答1:


some times it happen in birt report when we run it in browser or pdf doc etc for testing purpose in report dialogue while creating a birt report its version changes automatically and due to this reason it generate this exception that There is no report design object available

you can update your lib/jar files or can also change your report version as i have done in the above fig.




回答2:


__report variable looks for reports deployed under folder which is configured with variable inside web.xml -> BIRT_VIEWER_DOCUMENT_FOLDER

<!--
    Temporary document files directory. Defaults to ${birt home}/documents
-->
<context-param>
    <param-name>BIRT_VIEWER_DOCUMENT_FOLDER</param-name>
    <param-value></param-value>
</context-param>

If you really need other location for your Birt reports you can play around with Windows folder linking or something similar to this if you use other OS.



来源:https://stackoverflow.com/questions/25910616/there-is-no-report-design-object-available-in-birt-web-viewer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!