We plan to have a dedicated Apache web server farm to serve the static contents of our web application. We tried to migrate the folder "isomorphic" from Jetty servlet container to an Apache server 192.168.0.11. In the JSP file, I replaced
with
However, we don't know how to change this in server.properties.
Is there a directive isomorphicPathRootAbsolute in server.properties, like the following?
Code:
<isomorphic:loadISC includeModules="RealtimeMessaging" skin="SmartClient" runat="server"/>
Code:
<SCRIPT>window.isomorphicDir='http://192.168.0.11/isomorphic/';</SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_Core.js></SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_Foundation.js></SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_Containers.js></SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_Grids.js></SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_Forms.js></SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_DataBinding.js></SCRIPT> <SCRIPT SRC=http://192.168.0.11/isomorphic/system/development/ISC_RealtimeMessaging.js></SCRIPT> <SCRIPT src=http://192.168.0.11/isomorphic/skins/SmartClient/load_skin.js></SCRIPT>
Code:
isomorphicPathRootRelative: isomorphic
Code:
isomorphicPathRootAbsolute: http://192.168.0.11/isomorphic
Comment