Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us at Qlik Connect 2026 in Orlando, April 13–15: Register Here!
cancel
Showing results for 
Search instead for 
Did you mean: 
kellyyyyyyyyy
Partner - Contributor II
Partner - Contributor II

Content Monitor reload failure to Unexpected character encountered

Hi everyone,

I recently upgraded our Qlik Sense Enterprise on Windows from Nov 2024 to Nov 2025 Patch2. Everything seemed fine until I noticed that the Reload Content Monitor task started failing consistently.

Upon checking the script log, I identified the error occurs during the Connect To 'monitor_apps_REST_app' step:

Error: Unexpected character encountered while parsing value: <. Path '', line 0, position 0.
script error.png

 

I have already searched the community and tried the following official support solutions:

1. Create a second Virtual Proxy allowing Windows authentication: https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-Unexpected-...

2. How to configure Certificate Authentication for Qlik Sense Monitoring Applications: https://community.qlik.com/t5/Official-Support-Articles/How-to-configure-Certificate-Authentication-...

The confusing part, While the Content Monitor fails, both the License Monitor and Operations Monitor are reloading successfully without any issues. Since these apps typically rely on similar REST connection logic, I am unsure why only the Content Monitor is struggling.

Task.png

 

Has anyone encountered this? Any suggestions on what else I should check would be greatly appreciated.

Thank you in advance!

Labels (1)
1 Reply
VictorGonzalezFaria

@kellyyyyyyyyy you are right that the Apps all use the monitor_apps_REST_app, but note that the Content Monitor uses variation of it in the API requests by using WITH CONNECTION. That doesn't work with certificate authentication.

The alternative is to create a JWT-based Virtual Proxy as described here: Qlik Sense: How to set up JWT authentication - Qlik Community - 1716226.

Once the Virtual Proxy is crated, we would create a new REST Data Connection that uses that Virtual Proxy, and let the App use it. During the creation of the Data connection, you can use the following:

...and pointing to that new connection in the variables section of the script. Look for the variable:

Set vLibConnect = 'monitor_apps_REST_app';

...and change to:

Set vLibConnect = 'monitor_apps_REST_app_JWT'; (Assuming that's the name of the new Data connection).

Hope this helps,

VG