Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Upgrading issue in SGWT from 3 to 5

    Hello there,

    I am migrating from SmartGWT Power version 3 to 5. When I run my application I get message that the modules I am using are deprecated and need to use the new ones. I did as I was instructed but now when I try to run my application I get this message saying. I deleted the gwtcache,cleared my browser cache and restarted my eclipse too.

    10:25:33.764:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v10.0p_2015-01-23/PowerEdition Deployment' and additional modules from 'v8.3p_2014-11-22'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.

    Please help.....

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- When updating your version of GWT, you should also update this DTD reference, 
    	so that your app can take advantage of the latest GWT module capabilities. -->
    <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.0//EN"
      "http://google-web-toolkit.googlecode.com/svn/tags/2.5.0/distro-source/core/src/gwt-module.dtd">
    <module rename-to='kaizenerpweb'>
    
    	<inherits name="net.sf.gilead.Gilead4Gwt" />
    	<inherits name='com.google.gwt.user.User' />
    	<inherits name="com.google.gwt.place.Place" />
    	<inherits name="com.google.gwt.activity.Activity" />
    
    
    	<!-- SmartGWT -->
    	<inherits name="com.smartgwtee.SmartGwtEENoTheme" />
    	<inherits name="com.smartgwt.Charts" />
    	<inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlue" />
    	<inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources" />
    
    	<inherits name="com.google.gwt.i18n.I18N" />
    	<inherits name="com.google.gwt.i18n.CldrLocales" />
    	<!-- smartgwtpower -->
    	<inherits name="com.smartgwtee.SmartGwtEE" />
    	<inherits name="com.smartgwtee.SmartGwtEENoScript" />
    	<inherits name="com.smartgwtpower.tools.Tools" />
    	<inherits name="com.sahandrc.calendar.GWTPersianCalendar" />
    	<inherits name="com.smartgwt.Analytics" />
    
    	<!-- Event Service -->
    	<inherits name="de.novanic.eventservice.GWTEventService" />
    
    	<!-- Other module inherits -->
    	<extend-property name="locale" values="fa" />
    
    	<!-- Specify the app entry point class. -->
    	<entry-point class='com.kaizen.erp.client.Kaizenerpweb' />
    	<replace-with class="com.kaizen.erp.client.ClientFactoryImpl">
    		<when-type-is class="com.kaizen.erp.client.ClientFactory" />
    	</replace-with>
    
    	<!-- Specify the paths for translatable code -->
    	<source path='client' />
    	<source path='shared' />
    </module>
    cheers
    Zolf
    Last edited by zaj; 25 Jan 2015, 23:00.

    #2
    You have .jars from multiple versions of SmartGWT in your classpath. Use only .jars from a single version.

    Comment

    Working...
    X