AHa, I think I found the problem. Look at JSF FaceServlet API, CONFIG_FILES_ATTR field description: " Context initialization parameter name for a comma delimited list of context-relative resource paths (in addition to /WEB-INF/faces-config.xml which is loaded automatically if it exists) containing JavaServer Faces configuration information."
See words in parenthesis, "in addition to /WEB-INF/faces-config.xml which is loaded automatically if it exists". I think this is the point. Configurations with /WEB-INF/faces-config.xml is automatic loaded at first then load files you put in context-params. I tried to re-name my configuration file name and put it in context again. It works as my expect. Is this sounds correct? On 3/17/06, Dennis Byrne <[EMAIL PROTECTED]> wrote: > >But why this is the cause? MyFaces examples also put these > >context-param in web.xml. > > Please put this in the issue tracker. They should be removed. > > >If I have to load multiple configuration files, how to deal with them?' > > The value of the context parameter is a comma seperated list of all faces > cofig files to be loaded at startup. > > Dennis Byrne > > > -- Anthony Hong

