Cesium in QlikView

Hi,

I try to run Cesium as a QlikView plugin and I have some problems :

* The url to access Cesium contains a query string : http://serverName/QvAjaxZfc/QvsViewClient.aspx?public=only&name=Extensions/QlikView/Examples/Local/Build/CesiumUnminified/Cesium.js
And the Cesium URI module cut the query string so I patched it and it is ok.

* The ImageryProvider's (OpenStreetMapImageryProvider) Member "ready" return true, the globe, the stars and the sun are displayed but it is empty and I do not know why. There is no errors diplayed.

I add an information

I have this error message :
importScripts failed for Workers/createVerticesFromHeightmap at http://serverName/QvAjaxZfc/QvsViewClient.aspx?public=only&name=Extensions/QlikView/Examples/Local/Build/Cesium/Workers/createVerticesFromHeightmap
http://requirejs.org/docs/errors.html#importscripts

I found the problem !
It is in the cesiumWorkerBootstrapper.js module.
in the "req.load" function my url is truncated :
http://serverName/QvAjaxZfc/QvsViewClient.aspx?public=only&name=Extensions/QlikView/Examples/Local/Build/Cesium/Workers/createVerticesFromHeightmap
There is not the ".js" at the end !!

So I just add this test :
if (url.indexOf(".js") < 0) {
  url+= ".js";
}
and it is OK