<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Website don't work after change Qlik version in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1565558#M10294</link>
    <description>&lt;P&gt;I do not think it is mixing http/isSecure. We do have&amp;nbsp; very similar code and on one machine, where we have qlik from April 2018 (&lt;SPAN&gt;12.16&lt;/SPAN&gt;), it is working fine and on the other one, where we have Feb 2019 version (13.9), we have exactly the same problem as&amp;nbsp;&lt;SPAN class=""&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/56733" target="_self"&gt;Tony_empiredev&lt;/A&gt;. Application code is the same, only qlik versions are different.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/56733" target="_self"&gt;Tony_empiredev&lt;/A&gt;&amp;nbsp;have you been able to find solution for this problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;My colleagues suggested to copy new require.js from qlik installation (C:\Program Files\Qlik\Sense\Client\assets\external\requirejs) and replace it in our client code. He claims it helped when we switched last time to new version of qlik. I tried it, but it does not seem to resolve the issue. I wish someone from Qlik side would distribute notes with advise what to do when pushing potentially breaking changes.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Apr 2019 06:33:22 GMT</pubDate>
    <dc:creator>petermicuch</dc:creator>
    <dc:date>2019-04-05T06:33:22Z</dc:date>
    <item>
      <title>Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529201#M9832</link>
      <description>&lt;P&gt;I was using Qlik's version of February 2018, now I'm&amp;nbsp; using November 2018.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have a webpage to access to Qlik using javascript, it was working perfectly, but now it is generating errors and don't work. The javascript errors says:&lt;BR /&gt;&lt;BR /&gt;"TypeError: window.qlikMashupLoader is not a function"&lt;BR /&gt;&lt;BR /&gt;"Error: Load timeout for modules: js/qlik-require-plugin!_unnormalized2,js/qlik-require-plugin!&lt;BR /&gt;&lt;A href="http://requirejs.org/docs/errors.html#timeout" target="_blank"&gt;http://requirejs.org/docs/errors.html#timeout&lt;/A&gt;"&lt;BR /&gt;&lt;BR /&gt;I need help to solve this bug. Thanks so much.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:52:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529201#M9832</guid>
      <dc:creator>tony_empiredev</dc:creator>
      <dc:date>2024-11-16T06:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529285#M9834</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/56733"&gt;@tony_empiredev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Looks like you are using undocumented internal modules in your mashup; after the February release, in order to optimize performance, we removed some of the libraries that were bundeled with requirejs.&lt;/P&gt;
&lt;PRE&gt;require( ["js/qlik", "xmodule"], function ( qlik, xmodule ) {...}); // this will not work anymore&lt;BR /&gt;// you will have to remove "xmodule"&lt;/PRE&gt;
&lt;P&gt;I hope this helps&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 06:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529285#M9834</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2019-01-11T06:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529571#M9842</link>
      <description>&lt;P&gt;Hi Aaz,&lt;/P&gt;&lt;P&gt;This is a part of my code.&lt;/P&gt;&lt;P&gt;Html file:&lt;/P&gt;&lt;PRE&gt;&lt;FONT size="2"&gt;{% extends 'TonyMainBundle:Default:layout.html.twig' %}
{% block title %}Qlik's Table for Sales{% endblock %}
{% block header_title %}
    &amp;lt;div class="row"&amp;gt;
        &amp;lt;div class="col-md-5 col-sm-2 col-xs-10 "&amp;gt;
            Qlik's Table for Sales
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
{% endblock %}
{% block content %}
    &amp;lt;iframe id="iframe" style="height: 300px;width: 100%;" src=""&amp;gt;&amp;lt;/iframe&amp;gt;
    &amp;lt;button id="export" class="btn-sm btn-primary" onclick="export();"&amp;gt;Export Data to API&amp;lt;/button&amp;gt;
    &amp;lt;div id="error" style="color:red;"&amp;gt;&amp;lt;/div&amp;gt;
{% endblock %}
{% block others_javascripts %}
	&amp;lt;!-- First time --&amp;gt;
	&amp;lt;!-- &amp;lt;script src="{{ asset('/js/require.js') }}"&amp;gt;&amp;lt;/script&amp;gt; --&amp;gt;
	&amp;lt;!-- Last test --&amp;gt;
    &amp;lt;script src="http://mysite.com/resources/js/external/requirejs/require.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script src="{{ asset('/js/main.js') }}"&amp;gt;&amp;lt;/script&amp;gt;
{% endblock %}&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And main.js file:&lt;/P&gt;&lt;PRE&gt;&lt;FONT size="2"&gt;const HOST = 'mysite.com';
const APP_ID = 'f4d8f3a-1f96-4296-9669-38dd054kk9b5';
const SHEET_ID = 'd6b4ed73-baf3-4c20-96d0-91d72efd10aa';
const OBJECT_ID = '3f4d8785-9f35-411f-ad03-abcf090fb1b4';
var app;
var config = {
    host: HOST,
    prefix: '/',
    port: 80,
    isSecure: true
};

require.config( {
    baseUrl: ( config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources"
} );
require(['js/qlik'], function(qlik) {
    qlik.setOnError(function (error) {
        BootstrapDialog.confirm({
            type: 'type-danger',
            message: error.message + '. Do you want reload the page ?.',
            callback: function (result) {
                if (result) {
                    window.location.href = url_index;
                }
            }
        });
    });
    //Open the application with Id defined in APP_ID
    app = qlik.openApp(APP_ID, config);
    //Clear the filters
    app.clearAll();
    $('#iframe').attr('src', 'http://' + HOST + '/single/?appid=' + APP_ID + '&amp;amp;sheet=' + SHEET_ID + '&amp;amp;opt=currsel&amp;amp;select=SalesType,1,2');
});
var export = function() {
	app.getObject(OBJECT_ID).then(function (model) {
        model.getHyperCubePivotData('/qHyperCubeDef', [{
            qTop: 0,
            qLeft: 0,
            qWidth: 2,
            qHeight: 900
        }]).then(function (cube) {
            //Process the cube
            if (cube.length &amp;gt; 0) {
                var table = getTable( cube );
                console.log('Read finished');
		sendToAPIREST( table );
            }
            else {
                BootstrapDialog.warning('An error occurred to read the data from Qlik');
            }
        })
    });		
};&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;As you can see, I do not use undocumented internal modules. From my website I connect with a Qlik application and a specific sheet, so I apply filters on a table and show this table in my iframe. The next action is to export data, then read from a hypercube that represents the table and send the data to an API.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Maybe you can show me a small complete example that includes connection to a Qlik application and a reading using a hypercube.&lt;/P&gt;&lt;P&gt;Thank you very much for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 16:22:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529571#M9842</guid>
      <dc:creator>tony_empiredev</dc:creator>
      <dc:date>2019-01-11T16:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529826#M9845</link>
      <description>&lt;P&gt;Your code looks about right - I have no clue... Maybe mixing http/isSecure is the problem:&lt;/P&gt;
&lt;PRE&gt;port: 80,
isSecure: true&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 Jan 2019 07:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1529826#M9845</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2019-01-14T07:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1565558#M10294</link>
      <description>&lt;P&gt;I do not think it is mixing http/isSecure. We do have&amp;nbsp; very similar code and on one machine, where we have qlik from April 2018 (&lt;SPAN&gt;12.16&lt;/SPAN&gt;), it is working fine and on the other one, where we have Feb 2019 version (13.9), we have exactly the same problem as&amp;nbsp;&lt;SPAN class=""&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/56733" target="_self"&gt;Tony_empiredev&lt;/A&gt;. Application code is the same, only qlik versions are different.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/56733" target="_self"&gt;Tony_empiredev&lt;/A&gt;&amp;nbsp;have you been able to find solution for this problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;My colleagues suggested to copy new require.js from qlik installation (C:\Program Files\Qlik\Sense\Client\assets\external\requirejs) and replace it in our client code. He claims it helped when we switched last time to new version of qlik. I tried it, but it does not seem to resolve the issue. I wish someone from Qlik side would distribute notes with advise what to do when pushing potentially breaking changes.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 06:33:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1565558#M10294</guid>
      <dc:creator>petermicuch</dc:creator>
      <dc:date>2019-04-05T06:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1567581#M10321</link>
      <description>&lt;P&gt;Small update. Copying the "require.js" file actually helped. Last time I tried update of docker image with our application was not generated correctly. After another try this works, but it is quite annoying to copy this require.js file whenever new version of Qlik is out there. Has anyone better solution?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 11:41:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1567581#M10321</guid>
      <dc:creator>petermicuch</dc:creator>
      <dc:date>2019-04-10T11:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1634626#M11563</link>
      <description>&lt;P&gt;Please add details from where to which location you copied require js. My qlik sense extension worked fine for Feb '19 release but with April 2019 release broke with error -&amp;nbsp;Load timeout for modules:&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 01:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1634626#M11563</guid>
      <dc:creator>neeraj712</dc:creator>
      <dc:date>2019-10-14T01:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Website don't work after change Qlik version</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1634651#M11564</link>
      <description>&lt;P&gt;Location "from where" is mentioned in my previous post. Location "to where" has to be known by you or the one who wrote client code to display Qlik stuff on your side. It differs from implementation to implementation.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 05:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Website-don-t-work-after-change-Qlik-version/m-p/1634651#M11564</guid>
      <dc:creator>petermicuch</dc:creator>
      <dc:date>2019-10-14T05:54:25Z</dc:date>
    </item>
  </channel>
</rss>

