It's a very simple question: can faces-config.xml file have multiple tags (more like SHOULD they have)? I'm working in a JSF project and the faces-config.xml file has something like this:
<application>
<el-resolver>org.jboss.seam.el.SeamELResolver</el-resolver>
<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
<message-bundle>customMessages</message-bundle>
</application>
<application>
<view-handler>org.rivetlogic.crafter.core.jsf.CrafterFacesViewHandlerImpl</view-handler>
<el-resolver>org.jboss.seam.ioc.spring.SpringELResolver</el-resolver>
</application>
But I've never seen another JSF application with multiple <application>
tags, and maybe this could be one of the causes of my problems (I kind of think the multpiple view handlers are involved).