In Icefaces <ace:simpleSelectOneMenu> macht mir Schwierigkeiten

Hallo liebe Leute,

ich versuche Login Page zu machen und habe ich dauernd diese Fehlermeldung

ace:simpleSelectOneMenu Tag Library supports namespace: 404 Not Found, but no tag was defined for name: simpleSelectOneMenu] with root cause
javax.faces.view.facelets.TagException: /login.xhtml @20,72 ace:simpleSelectOneMenu Tag Library supports namespace: 404 Not Found, but no tag was defined for name: simpleSelectOneMenu
at com.sun.faces.facelets.compiler.CompilationManager.pushTag(CompilationManager.java:304)
at com.sun.faces.facelets.compiler.SAXCompiler$CompilationHandler.startElement(SAXCompiler.java:255)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)

u.s.w

dabei schaut login.xhtml so aus

[XML]

<h:head></h:head>

			<ace:simpleSelectOneMenu id = "mandant" value = "#{login.mandant}">
				<f:selectItem  itemValue="test1" itemLabel="MLA"/>
				<f:selectItem itemValue="test2" itemLabel="DER"/>
			</ace:simpleSelectOneMenu>
	
		
		
		</h:panelGrid>
	<ice:commandButton value = "Logon" actionListener = "#{login.login}"/>

</ace:panel>

</ice:form>

[/XML]

und pom.xml

[XML]
4.0.0
IcefacesGUI
IcefacesGUI
0.0.1-SNAPSHOT
war

src


maven-compiler-plugin
3.1

1.6
1.6



maven-war-plugin
2.3

WebContent
false






org.icefaces
icefaces-ace
3.0.1


com.sun.facelets
jsf-facelets
1.1.10


javax.faces
jsf-api
2.0
provided


org.icefaces
icefaces-ace
3.0.1


org.apache.httpcomponents
httpclient
4.5



com.sun.faces
jsf-api
2.1.11


com.sun.faces
jsf-impl
2.1.11

	<dependency>
		<groupId>javax.servlet</groupId>
		<artifactId>jstl</artifactId>
		<version>1.2</version>
	</dependency>

	<dependency>
		<groupId>javax.servlet</groupId>
		<artifactId>servlet-api</artifactId>
		<version>2.5</version>
	</dependency>

	<dependency>
		<groupId>javax.servlet.jsp</groupId>
		<artifactId>jsp-api</artifactId>
		<version>2.1</version>
	</dependency>
	
	<!-- EL -->
	<dependency>
		<groupId>org.glassfish.web</groupId>
		<artifactId>el-impl</artifactId>
		<version>2.2</version>
	</dependency>
org.primefaces primefaces 5.0 jdom jdom 1.1 log4j log4j 1.2.17 [/XML]

auf eure Hilfe wurde ich mich wirklich sehr freuen

Danke euch

kann mir wirklich niemand helfen?

ICEfaces Showcase

dort heisst es
[XML]
xmlns:ace=“http://www.icefaces.org/icefaces/components
xmlns:icecore=“http://www.icefaces.org/icefaces/core
[/XML]

sind deine namespaces richtig?

danke dir für deine Antwort. Es funktioniert trotzdem nicht. Irgendwo in forum habe ich auch gelesen dass man icefaces_compat.jat in WEB-INF->lib ordner reinschmeissen soll. Obwohl ich mit maven das schon runtergeladen hatte, habe ich trotzdem runtergeladen und in lib reingegeben und mit configure build path in libraries hinzugefügt . ich habe trotzdem gleiches problem, aber wenn ich selectMenu auskommentiere habe ich keine Fehlericefaces-compat

      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:ice="http://www.icesoft.com/icefaces/component"
      xmlns:ace="http://www.icefaces.org/icefaces/components"
      xmlns:icecore="http://www.icefaces.org/icefaces/core"> 

<h:head></h:head> 
<h:body> 
<ice:form >
	<ace:panel header = "Login Form">
			<h:panelGrid columns = "2">
				<h:outputLabel value = "Benutzer : " for = "benutzer"></h:outputLabel>
				<h:inputText id = "benutzer" value = "" maxlength = "50"></h:inputText>
				<h:outputLabel value = "Password : " for = "password"></h:outputLabel>
				<h:inputText id =  "password" value = "" maxlength = "50"></h:inputText>
				<h:outputLabel for = "mandant" value = "Mandant : "></h:outputLabel>
			<!--  
				<ace:selectMenu id = "mandant" value = "">
					<f:selectItem  itemValue="MLA" itemLabel="Label1"/>
					<f:selectItem itemValue="DER" itemLabel="Label2"/>
				</ace:selectMenu>		
			
			-->
			
			</h:panelGrid>
		<ice:commandButton value = "Login" actionListener = "#{login.login}"/>

	</ace:panel>
</ice:form>

</h:body> 
</html>