1. try renaming anonymous.xml as anonymous-contrib.xml 2. you need to make sure your actions-contrib.xml loads after the system defined actions otherwise you will not override the default functionality. This is done with require statements inserted just after the component tag...like this
<component name="com.concena.platform.actions.contrib"> <require>org.nuxeo.ecm.platform.actions.ActionService</require > <require>org.nuxeo.ecm.platform.userworkspace.actions</require > <require>org.nuxeo.opensocial.dashboard.actions</require> 3. Come to think of it I also have a require statement on my anonymous-contrib.xml but I am doing more than just enabling anonymous user so you may not need it, but I include it here just in case <component name="com.concena.login.anonymous.config"> <require>org.nuxeo.ecm.platform.ui.web.auth.defaultConfig</require > --- Mailing list: [email protected] Forum: http://forum.nuxeo.org/f/1/
