hi,
I'm struggling with a conf issue: I've just upgraded to the versions mentioned, and I have adapted my settings:
-I have a classical war file structure, with smartgwt.jar smartgwt-skins.jar located in WEB-INF/lib
-in pkg.MyApp.gwt.xml:
<module rename-to="myApp">
<inherits name="com.smartgwt.SmartGwt"/>
<inherits name="com.smartclient.theme.enterprise.Enterprise" />
-in MyApp.html:
<script type="text/javascript" language="javascript" src="myApp/myApp.nocache.js"></script>
etc
When I run the app in hosted mode, I have the following trace:
200 - GET MyApp.html
200 - GET myApp/myApp.nocache.js
200 - GET myApp/sc/initsc.js
[...other smart client stuffs...]
200 - GET /myApp/sc/skins/Enterprise/load_skin.js
404 - GET /sc/skins/Enterprise/skin_styles.css
[...other 404 errors...]
I wonder what I have to change in the conf to make that last path correct regarding my web app.
Thanks for your help !
I'm struggling with a conf issue: I've just upgraded to the versions mentioned, and I have adapted my settings:
-I have a classical war file structure, with smartgwt.jar smartgwt-skins.jar located in WEB-INF/lib
-in pkg.MyApp.gwt.xml:
<module rename-to="myApp">
<inherits name="com.smartgwt.SmartGwt"/>
<inherits name="com.smartclient.theme.enterprise.Enterprise" />
-in MyApp.html:
<script type="text/javascript" language="javascript" src="myApp/myApp.nocache.js"></script>
etc
When I run the app in hosted mode, I have the following trace:
200 - GET MyApp.html
200 - GET myApp/myApp.nocache.js
200 - GET myApp/sc/initsc.js
[...other smart client stuffs...]
200 - GET /myApp/sc/skins/Enterprise/load_skin.js
404 - GET /sc/skins/Enterprise/skin_styles.css
[...other 404 errors...]
I wonder what I have to change in the conf to make that last path correct regarding my web app.
Thanks for your help !
Comment