Try adding commons discovery and upgrade common logging to 1.0.4. May be that will work for you.
--Omar On Sep 11, 2009, at 7:20 AM, domincb <[email protected]> wrote: I tried to put the log4j library into an myfaces application in a Websphere application server (6.0 version). When I inserted the commons-loggin and log4j librarys I get the next error: 00000034 ServletWrappe E SRVE0100E: Did not realize init() exception thrown by servlet Faces Servlet: java.lang.IllegalStateException: No Factories configured for this Application. This happens if the faces-initialization does not work at all - make sure that you properly include all configuration settings necessary for a basic faces application and that all the necessary libs are included. Also check the logging output of your web application and your container for any exceptions! If you did that and find nothing, the mistake might be due to the fact that you use some special web-containers which do not support registering context-listeners via TLD files and a context listener is not setup in your web.xml. A typical config looks like this; <listener> <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class> </listener> at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:90) at javax.faces.webapp.FacesServlet.init(FacesServlet.java:88) at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:262) at com.ibm.ws.webcontainer.servlet.ServletWrapper.initialize(ServletWrapper.java:1319) etc.... The web.xml contains the listener (as the message says) and the librarys in the /lib: commons-beanutils-1.7.0.jar commons-collections-3.1.jar commons-digester-1.8.jar commons-fileupload-1.2.1.jar commons-lang-2.1.jar myfaces-api-1.1.3.jar myfaces-impl-1.1.3.jar ojdbc14_g.jar tomahawk-1.1.3.jar commons-logging.jar (version 1.0.3, and configured for websphere*) log4j-1.2.8.jar Any solution?? *is from another applications instaled in the server and have a commons-logging.properties, as appear in http://www-01.ibm.com/support/docview.wss?uid=swg27004610&aid=1 -- View this message in context: http://www.nabble.com/log4j-and-myfaces-problem-in-websphere-tp25399180p25399180.html Sent from the MyFaces - Users mailing list archive at Nabble.com.

