My apologies once again. There was a missing update to web.xml; copied the attached file to your "war/WEB-INF" directory, replacing the existing web.xml. Again, this change has been committed for tonight's build.
Vince On Sat, Aug 22, 2009 at 3:58 PM, fooey<[email protected]> wrote: > > Thanks for the quick response > I added the file, but now I'm getting a "root path not defined" error: > > BlueDragon: Error initializing VFS; Unknown message with code "root > path not defined". > org.apache.commons.vfs.FileSystemException: Unknown message with code > "root path not defined". > at com.newatlanta.commons.vfs.provider.gae.GaeVFS.getManager > (GaeVFS.java:91) > at com.naryx.tagfusion.cfm.engine.cfEngine.<init>(Unknown Source) > at com.naryx.tagfusion.cfm.engine.cfEngine.init(Unknown Source) > at com.naryx.tagfusion.cfm.cfServlet.init(Unknown Source) > > > > On Aug 22, 8:12 am, Vince Bonfanti <[email protected]> wrote: >> Sorry about that. I updated the GaeVFS jar from 0.2 to 0.4 but forgot >> to update the build script. The new jar is attached--place it within >> your "war/WEB-INF/lib" directory. I've updated the build script for >> tonight's build. >> >> Vince >> >> On Fri, Aug 21, 2009 at 9:49 PM, fooey<[email protected]> wrote: >> >> > I'm trying to get up and running on GAE but i'm getting an error when >> > I try to run the app that I can't seem to get past >> >> > Aug 22, 2009 1:42:13 AM com.google.apphosting.utils.jetty.JettyLogger >> > warn >> > WARNING: failed cfmServlet >> > java.lang.NoClassDefFoundError: com/newatlanta/commons/vfs/provider/ >> > gae/GaeFileSystemManager >> >> > it runs the sample app fine, but once I overwrite the /war all I get >> > is this error >> >> >> >> gaevfs-0.4.jar >> 42KViewDownload > --~--~---------~--~----~------------~-------~--~----~ Open BlueDragon Public Mailing List http://groups.google.com/group/openbd?hl=en official site @ http://www.openbluedragon.org/ !! save a network - trim replies before posting !! -~----------~----~----~----~------~----~------~--~---
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5"> <listener> <listener-class>com.newatlanta.commons.vfs.provider.gae.GaeVfsServletEventListener</listener-class> </listener> <servlet> <servlet-name>cfmServlet</servlet-name> <servlet-class>com.naryx.tagfusion.cfm.cfServlet</servlet-class> <init-param> <param-name>BLUEDRAGON_WORKING_DIRECTORY</param-name> <param-value>/WEB-INF/bluedragon/work</param-value> </init-param> <init-param> <param-name>BLUEDRAGON_XML</param-name> <param-value>/WEB-INF/bluedragon/bluedragon.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>cfmServlet</servlet-name> <url-pattern>*.cfm</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.cfm</welcome-file> </welcome-file-list> </web-app>
