Error UIDL

Hi

I’m getting this error when using icepush

Widgetset does not contain implementation for org.vaadin.artur.icepush.ICEPush. Check its @ClientWidget mapping, widgetsets GWT module description file and re-compile your widgetset. In case you have downloaded a vaadin add-on package, you might want to refer to add-on instructions. Unrendered UIDL:

org.vaadin.artur.icepush.ICEPush(NO CLIENT IMPLEMENTATION FOUND)

I’m using maven. gwt compiler doesn’t find any widgetset to compile. In WEB-INF/lib i have icepush-gwt.jar and icepush.jar. Icepush-0.2.1 dependency is added.

vaadin version is 6.6.0
gwt version is 2.3.0
gwt.plugin.version is 2.2.0

Eclipse projects created with the vaadin plugin don’t work either.

Any ideas?
Thanks
Aniceto

Some things you could check:

In your pom.xml, do you have all the necessary dependencies?

        <dependency>
            <groupId>org.vaadin.addons</groupId>
            <artifactId>icepush</artifactId>
            <version>0.2.1</version>
        </dependency>
        <dependency>
        	<groupId>org.icepush</groupId>
        	<artifactId>icepush</artifactId>
        	<version>2.0.1</version>
        	<type>jar</type>
        	<scope>compile</scope>
        </dependency>
        <dependency>
        	<groupId>org.icepush</groupId>
        	<artifactId>icepush-gwt</artifactId>
        	<version>2.0-A3</version>
        	<type>jar</type>
        	<scope>compile</scope>
        </dependency>

In your *WidgetSet.gwt.xml, do you inherit the IcepushaddonWidgetset?

    <inherits name="com.vaadin.terminal.gwt.DefaultWidgetSet" />
    <inherits name="org.vaadin.artur.icepush.IcepushaddonWidgetset" />

Still it doesn’t work. Could you attach a basic maven or eclipse project ?

Thanks

On the command line, cd to your project root and try the following:

  1. mvn clean install
  2. mvn gwt:clean gwt:compile

Do you get any error messages?