123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- #####################################################################
- # IBM Confidential
- # OCO Source Materials
- # IBM Cognos Products: Viewer
- # (C) Copyright IBM Corp. 2001, 2011
- #
- # US Government Users Restricted Rights - Use, duplication or
- # disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- #
- # Cognos Viewer configuration file
- #
- #
- #####################################################################
- ########################################
- # setting to false will stop validating URL parameters sent to the Viewer
- # true | false
- validationActive=true
- validationMandatoryRules=false
- ########################################
- # Asynchronous option used to specify what encoding should be used for the response
- # base64 | MIME | MIMECompressed
- attachmentEncoding=MIME
- ########################################
- # Encoding used to stream saved report output to the browser
- # MIMECompressed | MIME
- htmlOutputDataEncoding=MIMECompressed
- ########################################
- # Comma separated list of application servers that don't support MIMECompressed encoding. If one of the bellow servers
- # is detected, the the encoding will be automatically switched to MIME
- unsafeMIMECompressedServers=SAP J2EE Engine
- ########################################
- #Applies only to Business Insight and Active Report. Set to true if you want the old styles to be used when rendering the report
- # true | false
- useReportAuthoredStyles=false
- ########################################
- # Maximum number of cell that can be selected for the secondary selection. The secondary selection will stop once it hits the maximum number of cells
- # Can be used to help the performance of selecting a cell in a report
- # must be an integer > 0
- #maxSecondarySelection=1000
- ########################################
- # Used to disable secondary selection in reports. Can help performance of making cell selections for larger reports
- # true | false
- #disableSecondarySelection=true
- ########################################
- # In Business Insight the default max secondary selection is 500. This means, that
- # if more then 500 cells are going to be selected for secondary selection, then no cell
- # will get selected. This is to help performance, since selecting a large number of cells
- # can take a long time. This option is to override the default of 500 secondary cells.
- #buxMaxSecondarySelection=500
- ########################################
- # Used to override the primary and secondary asynchronous options. The values are the time in seconds before
- # the report server returns a 'working' or 'stillWorking' response.
- # must be an integer > 0
- #ViewerPrimaryWaitThreshold=60
- #ViewerSecondaryWaitThreshold=60
- ########################################
- # Used for drill through. Setting this to true will pass all the source parameters to the
- # drill target when no parameters are mapped between the source and target
- # true | false
- #enablePassAllParametersWhenNoneMap=false;
- ########################################
- # Used for drill through. Setting this to true will pass all unmapped source parameters
- # to the drill target
- # true | false
- #enablePassAllParameters=false
- ########################################
- # Setting to true will retry the request behind the scene when an exception happens during a wait or prompt request
- # true | false
- #enableFailover=false
- ########################################
- # Used for global prompts in portal pages when using busted reports. By default the match
- # will be done on the burstID property of the output object in content manager. This option
- # makes it possible to match on the burstKey property instead.
- # true | false
- #matchOnBurstKey=false
- ########################################
- # Setting that controls if the Viewer will make ajax requests or not
- # true | false
- #useAjax=true;
- ########################################
- # Setting this to true will generate the Viewer logs in <install>\temp\viewer
- # true | false
- #debug=false
- ########################################
- # Setting this to true will generate the Viewer trace file in <install>\temp\viewer
- # true | false
- #trace=false
- ########################################
- # Setting this to true will allow the Viewer logs to be turned on/off by adding
- # cv.debug=true|false to any URL that invoked the Viewer
- # true | false
- #enableURLDebug=false
- ########################################
- # Setting this to true will generate the Viewer logs but will delete any
- # logs that don't result in a fault. Used when running stability tests that
- # could geneate GB's of logs.
- # true | false
- #perfDebug=false
- ########################################
- # Properties to use when opening excel browser window, such as side bar, address bar,etc.
- #excelWindowOpenProperties=""
- ########################################
- # If true, Viewer will check for the canUseCognosViewer capability and throw
- # a fault if the user doesn't have the capability
- # true | false
- #checkViewerCapability=false
- ########################################
- # The behavior when drilling on charts has changed in 10.1 for certain charts.
- # This setting is to put back that old behavior
- # true | false
- #restoreOldDrillChartBehavior=false
- ########################################
- # Sets how long something will stay in the cache. Every time the cleanup
- # thread looks through the cache the life cycle will be dimished by 1 until it's 0
- # and the clean up thread removes the object. So by default, something will
- # stay in the cache for 50 sec (5 * 10)
- # number > 1
- #VIEWER_CACHE_LIFECYCLE=5
- ########################################
- # How often in seconds the cleanup thread looks through the cache
- # number > 0
- #VIEWER_CACHE_CLEANUP_TIME=10
- ########################################
- # Maximum number of threads to create in the thread pool. Default
- # is Integer.MAX_VALUE
- # number > 1
- #maximumPoolSize=100
- ########################################
- # The buffer size used while buffering the rsvp response for portlets.
- # Increase if <script or <link tag in output longer then 512 characters
- # default: 512 characters
- #fragmentBufferSize=512
- ########################################
- # Enables the old behavior before the performance and memory
- # changes were done
- # boolean true|false
- #enableOldPortletBehavior=false
|