Whenever I deploy my application I get the following warning: [FacesConfigurator] More than one managed bean w/ the name of 'restlist' - only keeping the last
Any idea what could be causing this? Here's my faces config file: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN" "http://java.sun.com/dtd/web-facesconfig_1_1.dtd"> <faces-config > <managed-bean> <managed-bean-name>restlist</managed-bean-name> <managed-bean-class>com.daiwausa.restrictedlist.jsf.RestList</managed-bean-class> <managed-bean-scope>session</managed-bean-scope> </managed-bean> <navigation-rule> <from-view-id>/index.jsp</from-view-id> <navigation-case> <from-outcome>showDetails</from-outcome> <to-view-id>/index.jsp</to-view-id> <redirect /></navigation-case> <navigation-case> <from-outcome>hideDetails</from-outcome> <to-view-id>/index.jsp</to-view-id> <redirect /></navigation-case> </navigation-rule> </faces-config> -- View this message in context: http://www.nabble.com/FacesConfigurator+Error-t1675804.html#a4543614 Sent from the MyFaces - Users forum at Nabble.com.

