Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dev hub link not working

I have uploaded my QVF file and extensions on qliksense server, but when I reopened my dev hub file from the server it is not displaying the dashboard, it is throwing an error that is app has been closed to continue working please reload the app.

15 Replies
Not applicable
Author

Where do I need to replace the name, GUID?

ErikWetterberg

Hi,

When you import your app in the server environment it gets a unique id, a GUID. An easy way to find this is to open the app in the client and the ID will be in the URL.

In your mashup there is a call to the openApp method. In desktop the parameter to the openApp call will be the filename. In server you need to replace that filename with the apps ID.

Erik

Not applicable
Author

Thanks Erik, is it a number mentioned in the hyperlink http://<server name>/sense/app/GUID with 15-20 digits

Not applicable
Author

Need to replace the file name with GUID

var app = qlik.openApp('Dummy.qvf', config);

with

var app = qlik.openApp('GUID', config);

Not applicable
Author

Thanks a lot Erik. It worked.