In the "Spotfire.Dxp.Worker.Web.config" you have a setting on the server limiting the maximum size of message that the Web Player accepts. The default is 256kb, so increasing the size to 2560 (for example) will resolve the issue.
Update the maxReaderQuotasSizeKb setting value in the Spotfire.Dxp.Worker.Web.config per the instructions found here:
Manually editing the service configuration filesDetails:
1). First go to:
<TSS install dir>\tomcat\bin\
and make sure that the "config" folder is deleted or backed up somewhere else.
2). On the command line, export the service configuration that you want to modify from Spotfire Server by using the
export-service-config command. Specify the service's capability and the deployment area, and optionally the configuration name.
For example, exporting the "Default" Spotfire Web Player Services configuration that is in the Production deployment area:
export-service-config --capability=WEB_PLAYER --deployment-area=Production
The configuration files are then exported. By default, these files are located in the <TSS install dir>\tomcat\bin\config\root directory.
3). Make the following changes to Spotfire.Dxp.Worker.Web.config:
From Spotfire.Dxp.Worker.Web.config:
- Change: maxReaderQuotasSizeKb="256"
- To: maxReaderQuotasSizeKb="2560" (The maxReaderQuoteSizeKb parameter has a potential range of 16-16384)
After this change the section should look something like the following.
<application checkUserSessionTimeoutIntervalSeconds="120"
userSessionTimeout="00:20:00"
maxConcurrentWebServiceCallsPerCore="16"
maxReceivedMessageSizeMb="1024"
maxReaderQuotasSizeKb="2560"
requestTimeoutSeconds="3600"/>
Save the changes to file.
4). In the command-line interface, import the configuration file back into the Spotfire Server and name the configuration by using the import-service-config command.
For example:
import-service-config --config-name=WebPlayerConfiguration
5). In the command-line interface, assign the created Web Player service configuration to the Spotfire Server to make it possible to use for the service:
For example :
set-service-config --service-id=value –config-name=WebPlayerConfiguration
Now opening the information link should be able to successfully open in an analysis file in the Web Player.
Note:
- This same error can also be seen with Automation Services and resolved with the same configuration change.
- The maxReaderQuoteSizeKb parameter has a range of 16-16384. A value outside of this range will prevent the service from starting correctly.