On Wed, Nov 18, 2009 at 1:00 AM, beginner_prithvi <[email protected]> wrote: > Here is my .classpath file. How do you want me to arrange contents in it? > > <?xml version="1.0" encoding="UTF-8"?> > <classpath> > <classpathentry kind="src" path="src"/> > <classpathentry kind="con" > path="org.eclipse.jdt.launching.JRE_CONTAINER"/> > <classpathentry kind="con" > path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.tomcat.runtimeTarget/Apache > Tomcat v6.0"/> > <classpathentry kind="con" > path="org.eclipse.jst.j2ee.internal.module.container"/> > <classpathentry kind="con" > path="org.eclipse.jst.j2ee.internal.web.container"/> > <classpathentry kind="output" path="build/classes"/> > </classpath>
Just a guess, but I'd say try putting Apache Tomcat v6.0 at the top. You might also need to put web.container up there -- maybe after Tomcat. Again, this helped for jetty, but might not matter for Tomcat. Tomcat v6 definitely contains its own el implementation, though. Removing the myfaces jars are probably only removing the calls to the el api. They are probably not the cause of the conflict.

