I have a jazz build server I am using to build my application using the provided ant scripts. The build works fine on our AIX build server. However, I migrated to another server running z/Linux and the application will not load.
I compared the two wlapp files and there is only one difference between them.
On AIX (working), the following code appears in index.html:
<script>
// Define WL namespace.
var WL = WL ? WL : {};
/**
* WLClient configuration variables.
* Values are injected by the deployer that packs the gadget.
*/
on z/Linux (not working), the following code appears in index.html
<script>
// Define WL namespace.
var WL = WL ? WL : {};
/**
* WLClient configuration variables.
* Values are injected by the deployer that packs the gadget.
*/
This section of code is injected by the worklight ant tasks. It is not our code.
Any suggestions?