First, I'm blind and the section of ICEFaces Wiki give me some problems when I try to read it.
Second, I'm also Italian so sorry for my poor and, perhaps, bad english.
Ok, now I'll try to explain my issue.
I have a project that works properly and that implement JSF2.0, now I would add the support to ICEFaces because I would use the autocomplete combo box and some other components.
The first thing that I did was install the plug-in on netbeans7, the second was modifiy the properties of my project adding the framework ICEFaces, now I would try it,because I had some problems in the past and I wrote also this question:
ICE Faces and error in creation of a bean in WindowScoped
after that I change many things so I had discard the ICEFaces implementation but now I would add this framework.
The problem is that the project doesn't work anymore and, as I wrote, I just add the support to the framework!
An example of my page that doesn't work:
<h:form> <h:commandLink action="/progetti/List.xhtml" value="Elenco dei Progetti"/> </h:form>
------------------------------------------------------------------------
Can someone tell me where I did the error?
[EDIT:] as I said I tried it some times ago so I don't remember what I did the last time so I reload the icefaces web site and I found this page:
http://res.icesoft.org/docs/v2_devguide/html/Adding%20ICEfaces%20to%20Your%20Application.html
And I check my web.xml and It is ok the only thing that I changed is this code:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
with this code:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
<url-pattern>/icefaces/*</url-pattern>
</servlet-mapping>
obviously it doesn't resolve my issue...