Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
iServer and engine equivalents
dfreadhoff
I am trying to retieve a report on the iServer using ADAPI and I want set the baseImageURL in the ADAPI call like I can do in the engine.
So in the engine I do this:
options.setBaseImageURL(baseImageURL);
I tried this is the ADAPI, but it doesn't seem to work:
com.actuate.schemas.NameValuePair nvpair1 = new com.actuate.schemas.NameValuePair( );
nvpair1.setName("baseImageURL");
nvpair1.setValue(baseImageURL);
com.actuate.schemas.NameValuePair npair[ ] = {nvpair1};
ArrayOfNameValuePair arr = new ArrayOfNameValuePair( );
arr.setNameValuePair(npair);
selectJavaReportPage.setViewProperties(arr);
Find more posts tagged with
Comments
rmurphy
The options you can currently set in the setViewProperties method are:<br />
<ul class='bbc'><li>SVGFlag</li><li>ContextPath</li><li>MasterPage</li><li>enableMetaData</li><li>displayGroupIcon</li><li>displayFilterIcon</li><li>viewMode</li></ul>
<br />
You can find more information about the items these items in chapter 6 of the "Using Actuate iServer Integration Technology" manual.<br />
<a class='bbc_url' href='
http://www.birt-exchange.org/documentation/Manuals10SP1/using-iserver-integration-tech.pdf'>http://www.birt-exchange.org/documentation/Manuals10SP1/using-iserver-integration-tech.pdf</a><br
/>
<br />
You can also log an enhancement request to support this property here:<br />
<a class='bbc_url' href='
http://ted.birt-exchange.org/'>Tracking
Enhancements and Defects</a><br />
<br />
Rob