Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Show mashup in a external server in a custom url

Hi everyone, thank you very much for all the material that is shared here.

This time I bring a doubt that has surpassed me in knowledge.

We want to show a sense mashup in a custom url, but we do not know how to configure the .js file to connect to the server's engine.

Eg: www.custom.url / clienturl

Some background:

IP Server: http://52.38.XXX.XXX (Sense server, not secure)

According to this, how should my javascript be configured?

var config = {

Host: window.location.hostname,

Prefix: prefix,

Port: window.location.port,

IsSecure: window.location.protocol === "https:"

};

Captura de pantalla 2017-06-01 a la(s) 15.15.41.png

I appreciate your time and I will be very attentive in case anyone can help me.

4 Replies
Anonymous
Not applicable
Author

UP

ErikWetterberg

Hi,

Try this:

var config = {

  host: '52.38.XXX.XXX',

  prefix: '/',    /* that is no prefix */

  isSecure: false /* use http */

};

Port number depends on where your Sense server listens, what port have you configured??

Hope this helps

Erik Wetterberg

Anonymous
Not applicable
Author

We have port 443 configured.

It still does not work, I think it may be because we do not know how to configure all the parts of the application, the server, the qvf, the external server, the js file ... I could not find a referent on how to configure all these parts for Show my application on an external web.

MaWi
Contributor II
Contributor II

Hi ... i've got the same problem. Did you found any solution to put a single object out of qlik sense on a website that is running on a different url?