I am trying to add the ICEPush add-on to my Vaadin 7 project. But, I couldn't find any correct way to implement it.
I added this to my web.xml file.
<servlet>
<servlet-name>ICEPush for Portlets</servlet-name>
<servlet-class>org.vaadin.artur.icepush.ICEPushServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ICEPush for Portlets</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
The class org.vaadin.artur.icepush.ICEPushServlet
seems to be unavailable. so I changed it to org.icepush.servlet.ICEpushServlet
.
I use Vaadin 7.0.4 and ICEPush 0.5.5. Can someone guide me how to implement ICEPush in Vaadin 7.
Have you also add the Maven/Ivy dependency and the repository?
Maven:
Ivy:
If this is not the solution, we need more informations about the problem to help you.