Great success of the XForms Evening at the XML 2007 conference

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Great success of the XForms Evening at the XML 2007 conference

Erik Bruchez
Administrator
All,

I don't think we mentioned this last week, so here is our blog entry  
on the topic:

http://www.orbeon.com/blog/2007/12/05/great-success-of-the-xforms-evening-at-the-xml-2007-conference/

John Boyer of IBM has also written an extensive review of the evening,  
with a quite interesting follow-up comment by Kurt Cagle, and some  
praise about the Orbeon talk :-)

http://www.ibm.com/developerworks/blogs/page/JohnBoyer?entry=stellar_xforms_presence_at_xml

-Erik

--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

error enabling file system manager

GEORGE.ADAMS

When editing the web.xml to turn on the filesystem resource manager I get an error starting tomcat as follows;

SEVERE: Exception starting filter ops-main-filter
javax.servlet.ServletException: Cannot load "/config/properties.xml" with webapp loader
        at org.orbeon.oxf.servlet.OPSServletFilter.init(OPSServletFilter.java:54)
        at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:221)

The file /config/properties.xml does exist and is in that location.
I don't get this error when the code below in web.xml is commented out.

<!-- Uncomment this for the filesystem resource manager -->
   
    <context-param>
        <param-name>oxf.resources.priority.1</param-name>
        <param-value>org.orbeon.oxf.resources.FilesystemResourceManagerFactory</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.1.oxf.resources.filesystem.sandbox-directory</param-name>
        <param-value>/usr/local/anthill/work/orbeon/src/resources</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.2</param-name>
        <param-value>org.orbeon.oxf.resources.FilesystemResourceManagerFactory</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.2.oxf.resources.filesystem.sandbox-directory</param-name>
        <param-value>/usr/local/anthill/work/orbeon/src/resources-packaged</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.3</param-name>
        <param-value>org.orbeon.oxf.resources.WebAppResourceManagerFactory</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.3.oxf.resources.webapp.rootdir</param-name>
        <param-value>/WEB-INF/resources</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.4</param-name>
        <param-value>org.orbeon.oxf.resources.ClassLoaderResourceManagerFactory</param-value>
    </context-param>
    <!-- End filesystem resource manager -->
    <!-- Uncomment this for the webapp resource manager -->
    <context-param>
        <param-name>oxf.resources.priority.1</param-name>
        <param-value>org.orbeon.oxf.resources.WebAppResourceManagerFactory</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.1.oxf.resources.webapp.rootdir</param-name>
        <param-value>/WEB-INF/resources</param-value>
    </context-param>
    <context-param>
        <param-name>oxf.resources.priority.2</param-name>
        <param-value>org.orbeon.oxf.resources.ClassLoaderResourceManagerFactory</param-value>
    </context-param>
    <!-- End webapp resource manager -->





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
OW2 mailing lists service home page: http://www.ow2.org/wws