Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web Report Status turn off? 1

Status
Not open for further replies.

bittmapp

Technical User
Jul 21, 2003
56
US
Hi,

Does anyone know how to turn off the report status indicater for the Web interface? You know the circle that has the binary numbers moving around in it...

TIA,

bitt
 
You need to make an edit to PageConfig.xml. The file is in your \Web ASPx\WEB-INF\xml directory. You want the Report Execution node, so search for:

<page desc="Report Execution" desc-id="" feature-id="" login-required="true" name="report" persist-mode="8" track="true">

Once you're inside that node, you need to fidn the Report Web Bean.

<web-bean bean-type="md" name="rb" persist-mode="2" sys-bean="ReportBean">

Within that bean will be two initialization properties, the first which is:

<property name="maxWait" source="const" type="int" value="2000" />

Change the value of this node to -1 (see below.)

<property name="maxWait" source="const" type="int" value="-1" />

Restart IIS. This will remove the intermediate Wait page. (You can also find rough instructions for this in the Web SDK documentation.)

Ming
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top