Hi<br />
I think this is a common issue but I still cannot find the solution.<br />
<br />
I don't use the report viewer or jsp tags in my web application. I use birt4Jsf (<a class='bbc_url' href='
http://exadel.org/jsf4birt'>http://exadel.org/jsf4birt</a>) as the following:<br />
<br />
<pre class='_prettyXprint _lang-auto _linenums:0'><birt:birtWrapper id="report" reportDesign="/WEB-INF/reports/crossModelsByMonth.rptdesign">
<f:param name="endDate" value="#{util.convertToSqlDate(crossModelsReport.endDate, false)}" />
</birt:birtWrapper></pre>
<br />
This framework is for some previous versions of Birt but with few changes to code it worked with latest ones (Birt 3.6). The report is rendered excellently.<br />
<br />
Though I have the problem with linking the shared library to my report. I used lots of paths, but it still doesn't work:<br />
analytics/rstk.rptlibrary<br />
/KaskoCalculator/analytics/rstk.rptlibrary<br />
<a class='bbc_url' href='
http://localhost:8080/KaskoCalculator/analytics/rstk.rptlibrary'>http://localhost:8080/KaskoCalculator/analytics/rstk.rptlibrary</a><br />
rstk.rptlibrary<br />
<br />
Here is the snippet from my .rptdesign file:<br />
<pre class='_prettyXprint _lang-auto _linenums:0'><list-property name="libraries">
<structure>
<property name="fileName">http://localhost:8080/KaskoCalculator/analytics/rstk.rptlibrary</property>
<property name="namespace">rstk</property>
</structure>
</list-property></pre>
<br />
My library is inside src\main\webapp\analytics\rstk.rptlibrary directory and is packed to the application correctly<br />
<br />
Web context variable for setting resource path seems not helpful as I don't use report viewer.<br />
So, what can be done in this case?<br />
<br />
Thanks.