I don't think that my web.xml is wrong, because I use the same web.xml in MyFaces 1.1.1. Or do I have to change something in 1.1.3?
Regards, Andy -----Ursprüngliche Nachricht----- Von: chandra sekhar saripaka [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 30. Mai 2006 11:42 An: MyFaces Discussion Betreff: Re: java.lang.NoSuchMethodError: org.apache.myfaces.renderkit.html.util. Hi, If you can check with the spaces provoded in the web-app tag between the attributes, I think you will be able to solve your error. Chandru. On 5/30/06, laguiz <[EMAIL PROTECTED]> wrote: > > I have same probleme ! > I have this in m'y web.xml : > > <?xml version="1.0" encoding="UTF-8"?> > <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://java.sun.com/xml/ns/javaee > http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> > > <!-- ## PARAMETRES DU CONTEXT ## --> > <context-param> > <param-name>com.sun.faces.verifyObjects</param-name> > <param-value>false</param-value> > </context-param> > <context-param> > <param-name>com.sun.faces.validateXml</param-name> > <param-value>true</param-value> > </context-param> > <context-param> > <param-name>javax.faces.CONFIG_FILES</param-name> > <param-value>/WEB-INF/faces-config.xml</param-value> > </context-param> > <context-param> > <param-name>javax.faces.STATE_SAVING_METHOD</param-name> > <param-value>client</param-value> > </context-param> > > <!-- ## DECLARATIONS JSF ## --> > <servlet> > <servlet-name>Faces Servlet</servlet-name> > <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> > <load-on-startup>1</load-on-startup> > </servlet> > > <servlet-mapping> > <servlet-name>Faces Servlet</servlet-name> > <url-pattern>/faces/*</url-pattern> > </servlet-mapping> > > <!-- ## CONFIGURATION DES SESSIONS ## > <session-config> > <session-timeout>30</session-timeout> > </session-config> > --> > <!-- ## FICHIER DE DEPART ## > <welcome-file-list> > <welcome-file>index.jsp</welcome-file> > </welcome-file-list> > --> > <!-- ## LISTENER POUR MyFaces JSF/ManagedBean INTEGRE AVEC JBOSS (pas de > librairies importée ## --> > <listener> > > <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class> > </listener> > > <!-- ## SECURITY DOMAINE ## --> > <!-- [1] Contraintes Administration --> > <security-constraint> > <web-resource-collection> > <web-resource-name>Administration</web-resource-name> > <url-pattern>/faces/*</url-pattern> > <http-method>GET</http-method> > <http-method>POST</http-method> > </web-resource-collection> > > <auth-constraint> > <role-name>AdminUser</role-name> > </auth-constraint> > > <user-data-constraint> > <transport-guarantee>NONE</transport-guarantee> > </user-data-constraint> > </security-constraint> > > <!-- [2] Contraintes Application --> > <security-constraint> > <web-resource-collection> > <web-resource-name>Application</web-resource-name> > <url-pattern>/faces/listUser.jsp</url-pattern> > <http-method>GET</http-method> > <http-method>POST</http-method> > </web-resource-collection> > > <auth-constraint> > <role-name>AdminUser</role-name> > <role-name>RegularUser</role-name> > </auth-constraint> > > <user-data-constraint> > <transport-guarantee>NONE</transport-guarantee> > </user-data-constraint> > </security-constraint> > > <!-- Les roles --> > <security-role> > <description>Authorized to access everything.</description> > <role-name>AdminUser</role-name> > </security-role> > <security-role> > <description>Authorized to limited access.</description> > <role-name>RegularUser</role-name> > </security-role> > > <!-- Configuration du moyen de login --> > <login-config> > <auth-method>FORM</auth-method> > <!-- BASIC, DIGEST, and FORM --> > <form-login-config> > <form-login-page>/faces/login.jsp</form-login-page> > <form-error-page>/faces/error.jsp</form-error-page> > </form-login-config> > > </login-config> > > > > <!-- ## CONFIG POUR TOMAHAWK ## --> > <filter> > <filter-name>MyFacesExtensionsFilter</filter-name> > > <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class> > <init-param> > <param-name>maxFileSize</param-name> > <param-value>20m</param-value> > </init-param> > </filter> > > <!-- extension mapping for adding <script/>, <link/>, and other resource > tags to JSF-pages --> > <filter-mapping> > <filter-name>MyFacesExtensionsFilter</filter-name> > <!-- servlet-name must match the name of your > javax.faces.webapp.FacesServlet entry --> > <servlet-name>Faces Servlet</servlet-name> > </filter-mapping> > > <!-- extension mapping for serving page-independent resources > (javascript, stylesheets, images, etc.) --> > <filter-mapping> > <filter-name>MyFacesExtensionsFilter</filter-name> > <url-pattern>/faces/myFacesExtensionResource/*</url-pattern> > </filter-mapping> > > > </web-app> > -- > View this message in context: > http://www.nabble.com/java.lang.NoSuchMethodError%3A+org.apache.myfaces.renderkit.html.util.DummyFormUtils.findNestingForm-t1700141.html#a4623227 > Sent from the MyFaces - Users forum at Nabble.com. > > This message is not legally binding upon our company! This communication is confidential and is intended solely for the addressee(s). If you are not the intended recipient(s), his/her assistant, or authorized recipient, any form of disclosure, reproduction, distribution or any use of this communication or the information in it, is strictly prohibited and may be unlawful. In this case, please notify the sender immediately and destroy the e-mail. Electronic communication via the Internet by e-mail may be manipulated and/or read by third parties, thus we exclude any liability whatsoever for this e-mail.

