I also made this bash script to extract all the jar files that are needed: #!/bin/sh
DEST=/usr/local/java-apps/myfaces/svn SRC_BASE=/usr/local/java-apps/myfaces-current SRC=$SRC_BASE/tomahawk/sandbox/examples/target/myfaces-example-sandbox/WEB-INF/lib cp $SRC_BASE/core/api/target/myfaces-api-*-SNAPSHOT.jar $DEST/ cp $SRC_BASE/core/impl/target/myfaces-impl-*-SNAPSHOT.jar $DEST/ cp $SRC_BASE/tomahawk/core/target/tomahawk-*-SNAPSHOT.jar $DEST/ cp $SRC_BASE/tomahawk/sandbox/core/target/tomahawk-sandbox-*-SNAPSHOT.jar $DEST/ cp $SRC_BASE/shared/shared-impl/target/myfaces-shared-impl-2.0.1-SNAPSHOT.jar $DEST/ cp -u $SRC/*.jar $DEST/ I think the inclusion of the myfaces-shared-impl helped, but that is a guess. On 3/20/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: > URL: http://svn.apache.org/repos/asf/myfaces/current > Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68 > Revision: 387131 > Node Kind: directory > Schedule: normal > Last Changed Author: imario > Last Changed Rev: 382077 > Last Changed Date: 2006-03-01 09:40:55 -0700 (Wed, 01 Mar 2006) > Properties Last Updated: 2006-03-16 19:28:54 -0700 (Thu, 16 Mar 2006) > > > On 3/20/06, octoberdan <[EMAIL PROTECTED]> wrote: > > > > Revision: 387290? > > > > > > Andrew Robinson-5 wrote: > > > > > > Current SVN works. That is what I resorted to > > > > > > On 3/20/06, octoberdan <[EMAIL PROTECTED]> wrote: > > >> > > >> I'm running into the same problem... is there a work around? > > >> > > >> > > >> Dave Brondsema wrote: > > >> > > > >> > Mikhail Grushinskiy wrote: > > >> >> Latest night (March 15th, 2006) build causes the following error at > > >> >> runtime: > > >> >> > > >> >> java.lang.NoSuchMethodError: > > >> >> org.apache.myfaces.renderkit.html.util.DummyFormUtils.isWriteDummyForm > > >> >> (Ljavax/faces/context/FacesContext;)Z at > > >> >> > > >> >> > > >> org.apache.myfaces.renderkit.html.util.ExtensionsPhaseListener.writeCodeBeforeBodyEnd(ExtensionsPhaseListener.java:107) > > >> >> at > > >> >> > > >> >> > > >> org.apache.myfaces.renderkit.html.util.ExtensionsPhaseListener.getCodeBeforeBodyEnd > > >> >> (ExtensionsPhaseListener.java:93) > > >> >> > > >> >> Thanks, > > >> >> --MG > > >> >> > > >> > > > >> > I also get this sometimes, I think depending on which subprojects (api, > > >> > impl, shared, tomahawk, etc) I have rebuilt and which one are a little > > >> > old. > > >> > > > >> > Any pointers on how to avoid this? > > >> > > > >> > -- > > >> > Dave Brondsema > > >> > Software Developer > > >> > Cornerstone University > > >> > > > >> > > > >> > > > >> > > >> -- > > >> View this message in context: > > >> http://www.nabble.com/DummyFormUtils.isWriteDummyForm-exception-with-March-15th-build-t1287509.html#a3500611 > > >> Sent from the MyFaces - Users forum at Nabble.com. > > >> > > >> > > > > > > > > -- > > View this message in context: > > http://www.nabble.com/DummyFormUtils.isWriteDummyForm-exception-with-March-15th-build-t1287509.html#a3500929 > > Sent from the MyFaces - Users forum at Nabble.com. > > > > >

