cancel
Showing results for 
Search instead for 
Did you mean: 

HTTPConfigSource??

soeursourire
Champ in-the-making
Champ in-the-making
Hi!

I am trying to read a XML file that is stored in Company_Home by its http url however I have this error :

caused by:
org.alfresco.config.ConfigException: Failed to parse config stream

caused by:
org.dom4j.DocumentException: Error on line 31 of document : Open quote is expected for attribute "width" associated with an element type "table". Nested exception: Open quote is expected for attribute "width" associated with an element type "table".


I get this error when I am doing this:
XMLConfigService svc = new XMLConfigService(new HTTPConfigSource(http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/4cc5bdbc-c323-11da-9641-7f540d7...));
svc.init();


Although I do not have error while doing this with the same xml file:

XMLConfigService svc = new XMLConfigService(new FileConfigSource("./src/projects/web-client/source/web/WEB-INF/EF_Config_Pages.xml"));
svc.init();       


Cannot I use XMLConfigService with a url? What do I do wrong here?
Thanks
34 REPLIES 34

soeursourire
Champ in-the-making
Champ in-the-making
But I am using JBoss. And in my JBoss directory I have no alfresco.log generated. I can only find this server.log that I showed you. Do you think that your alfresco.log is not my server.log (for JBoss)?

gavinc
Champ in-the-making
Champ in-the-making
Ahh OK, in that case then yes server.log is the correct file. Being JBoss the log4J setup is slightly different.

Open <jboss>/server/default/conf/log4j.xml and add the following:

<category name="org.alfresco.config">
   <priority value="DEBUG"/>
</category>

<category name="org.alfresco.web.config">
   <priority value="DEBUG"/>
</category>

soeursourire
Champ in-the-making
Champ in-the-making
Oki thanks. I guess the part you are interested in is this one:

2006-04-07 08:08:10,468 INFO  [org.alfresco.web.config.EF_XMLParse] XML to parse: http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8...
2006-04-07 08:08:10,468 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-07 08:08:10,468 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-07 08:08:10,468 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-07 08:08:10,468 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8...
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@166d31c (evaluator=string-compare condition=Views replace=false) matches
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Languages
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@eb2756 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@3e0b62 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-07 08:08:10,609 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] Combined org.alfresco.web.config.LanguagesConfigElement@1b49b45 (name=languages) with org.alfresco.web.config.LanguagesConfigElement@ca5a40 (name=languages) to create org.alfresco.web.config.LanguagesConfigElement@1beffcd (name=languages)
2006-04-07 08:08:10,671 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream

That does not help me muchSmiley Sad
And I do not understand why it is looking for a table:

org.dom4j.DocumentException: Error on line 31 of document : Open quote is expected for attribute "width" associated with an element type "table". Nested exception: Open quote is expected for attribute "width" associated with an element type "table".

Thanks again

gavinc
Champ in-the-making
Champ in-the-making
It helps me  :wink:

OK, I think what is happening is what I mentioned previously in the thread. When you are using the download servlet link the user attempting the request is not authenticted or does not have the permissions to see the XML config file in the repository.

What this means is that the login page has been redirected to on the server and the HTML for the login page is being returned instead of your XML, hence the mention of table and width.

You can either grant permissions to the user to see the file or you could make the file accessable to guest and then add ?guest=true to the end of the URL.

Once you have this bit working re-post the same output when your ConfigElement returns as null and we can try and see a reason for that problem.

soeursourire
Champ in-the-making
Champ in-the-making
I get the same error so I guess it is not sufficient to add "?guest=true" to the url to make it accessible to guest right? I tried this :

xmlToParse = "http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8...";
        List<String> configFile = new ArrayList<String>(1);
        configFile.add(xmlToParse);
        XMLConfigService svc = new XMLConfigService(new HTTPConfigSource(configFile));
svc.init();
        if(svc==null)
           logger.info("svc null ");
        else
           logger.info("svc not null ");
Config config = svc.getConfig("DefaultLanguage");
        if (config==null)
           logger.info("config null ");
        else
           logger.info("config not null ");
children = config.getConfigElement("children");
        if (children==null)
           logger.info("children null ");
        else
           logger.info("children not null ");
elt = children.getChild("theDefaultLanguage");
locale = new Locale(elt.getValue());

And I got that in the log file:

INFO  [org.alfresco.web.config.EthicFlow_XMLParse] XML to parse: http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8...
2006-04-07 15:34:53,687 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-07 15:34:53,687 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-07 15:34:53,687 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-07 15:34:53,687 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8...
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@128b9bc (evaluator=string-compare condition=Views replace=false) matches
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Languages
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1e26bd2 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@6f14d6 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-07 15:34:53,796 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] Combined org.alfresco.web.config.LanguagesConfigElement@197171f (name=languages) with org.alfresco.web.config.LanguagesConfigElement@e7bbeb (name=languages) to create org.alfresco.web.config.LanguagesConfigElement@11401c2 (name=languages)
2006-04-07 15:34:53,812 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream


But it should not be a problem of access ( I am testing from admin console and this file is in company_home) no?

soeursourire
Champ in-the-making
Champ in-the-making
If I am using this:
xmlToParse = "http://localhost:8080/alfresco/EF_Config_Pages.xml?guest=true";

I obtain that:

DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-07 15:50:47,218 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-07 15:50:47,218 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-07 15:50:47,218 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: http://localhost:8080/alfresco/EF_Config_Pages.xml?guest=true
2006-04-07 15:50:47,250 DEBUG [org.alfresco.config.source.HTTPConfigSource] Failed to obtain input stream to URL: http://localhost:8080/alfresco/EF_Config_Pages.xml?guest=true
java.io.FileNotFoundException: http://localhost:8080/alfresco/EF_Config_Pages.xml?guest=true
   at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1147)
2006-04-07 15:50:47,250 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-07 15:50:47,250 INFO  [org.alfresco.web.config.EthicFlow_XMLParse] svc not null
2006-04-07 15:50:47,250 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for DefaultLanguage
2006-04-07 15:50:47,250 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-07 15:50:47,250 INFO  [org.alfresco.web.config.EF_XMLParse] config not null
2006-04-07 15:50:47,250 INFO  [org.alfresco.web.config.EF_XMLParse] children null

gavinc
Champ in-the-making
Champ in-the-making
You're right if you are using admin/admin then there shouldn't be any authentication problem, but it depends where your code is run from, it may be that the thread trying to access the resource has not been authenticated.

Where exactly are you running your code from and at what point, once the server has started or during startup? Something confusing me with the debug output you have is that in the middle of trying to parse your file it appears that one of the standard config files is being read, so I just need to get an idea what your scenario is.

Also what happens if you view http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8... directly in a browser, do you see the content of your XML config file? Does it ask you to login?

With the ?guest=true part of the URL, this will only be useful if the actual resource is accessible by guest, so you will have to explcitly set permissions on the config file for guest to acces it. Then using ?guest=true will stop the login page appearing.

Finally, is the debug output you posted the full contents of the server.log file or is there more?

soeursourire
Champ in-the-making
Champ in-the-making
Hi Gavin!

Thanks for your help. Actually yes I can view this page http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8... without login directly in a browser.

This parsing I am doing is called once I launch a processus from by browse page. I have an action to click on in browse.jsp that intialize my page by looking to the properties of the user and all is stored in xml files stored in admin space. So I am first logging, then I open browse.jsp and only after that I am launching an action that parse this file.


My whole server.log is this one:

2006-04-10 15:26:59,453 INFO  [org.apache.catalina.startup.Embedded] Catalina naming disabled
2006-04-10 15:27:00,703 INFO  [org.apache.coyote.http11.Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2006-04-10 15:27:00,703 INFO  [org.apache.catalina.startup.Catalina] Initialization processed in 1203 ms
2006-04-10 15:27:00,703 INFO  [org.apache.catalina.core.StandardEngine] Starting Servlet Engine: Apache Tomcat/5.5
2006-04-10 15:27:00,734 INFO  [org.apache.catalina.core.StandardHost] XML validation disabled
2006-04-10 15:27:00,796 INFO  [org.apache.catalina.startup.Catalina] Server startup in 93 ms
2006-04-10 15:27:01,203 INFO  [org.apache.catalina.loader.WebappLoader] Dual registration of jndi stream handler: factory already defined
2006-04-10 15:27:03,828 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
2006-04-10 15:27:04,484 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44541jsf-facelets.jar!/META-INF/faces-config.xml
2006-04-10 15:27:04,484 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44553tomahawk.jar!/META-INF/faces-config.xml
2006-04-10 15:27:05,093 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config.xml
2006-04-10 15:27:05,187 ERROR [org.apache.myfaces.util.LocaleUtils] Locale name null or empty, ignoring
2006-04-10 15:27:05,859 INFO  [org.apache.myfaces.webapp.StartupServletContextListener] ServletContext 'C:\alfresco\jboss\server\default\.\deploy\jboss-portal.sar\portal-core.war\' initialized.
2006-04-10 15:27:06,125 INFO  [org.apache.catalina.startup.ContextConfig] Missing application web.xml, using defaults only StandardEngine[jboss.web].StandardHost[localhost].StandardContext[/portal-samples]
2006-04-10 15:27:18,468 INFO  [org.jboss.portal.cms.impl.jcr.JCRCMS] Starting JCR CMS.
2006-04-10 15:27:18,546 INFO  [org.jboss.portal.cms.util.RepositoryUtil] Repository 'repotest' Name Not Found
2006-04-10 15:27:21,125 WARN  [net.sf.ehcache.config.Configurator] No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44535ehcache.jar!/ehcache-failsafe.xml
2006-04-10 15:27:21,171 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.security.store.SecurityPolicy]; using defaults.
2006-04-10 15:27:21,390 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.security.store.HbmSecurityConstraint]; using defaults.
2006-04-10 15:27:21,500 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.hibernate.cache.UpdateTimestampsCache]; using defaults.
2006-04-10 15:27:21,515 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.hibernate.cache.StandardQueryCache]; using defaults.
2006-04-10 15:27:23,562 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.role.RoleImpl]; using defaults.
2006-04-10 15:27:23,625 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.PreferenceImpl]; using defaults.
2006-04-10 15:27:23,656 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.UserImpl]; using defaults.
2006-04-10 15:27:23,734 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.PreferencesImpl]; using defaults.
2006-04-10 15:27:23,765 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.PreferencesGroupImpl]; using defaults.
2006-04-10 15:27:23,796 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.UserImpl.dynamic]; using defaults.
2006-04-10 15:27:23,812 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.role.RoleImpl.users]; using defaults.
2006-04-10 15:27:23,812 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.PreferencesImpl.content]; using defaults.
2006-04-10 15:27:23,812 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.PreferenceImpl.strings]; using defaults.
2006-04-10 15:27:23,828 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.PreferencesGroupImpl.prefMap]; using defaults.
2006-04-10 15:27:23,843 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.user.UserImpl.roles]; using defaults.
2006-04-10 15:27:23,906 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.instance.InstanceImpl]; using defaults.
2006-04-10 15:27:23,953 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.instance.PreferenceImpl]; using defaults.
2006-04-10 15:27:24,000 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.instance.InstanceImpl.preferencesMap]; using defaults.
2006-04-10 15:27:24,000 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.instance.PreferenceImpl.strings]; using defaults.
2006-04-10 15:27:24,062 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.portal.PortalObjectImpl]; using defaults.
2006-04-10 15:27:24,234 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.portal.ObjectNode]; using defaults.
2006-04-10 15:27:24,281 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates]; using defaults.
2006-04-10 15:27:24,281 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties]; using defaults.
2006-04-10 15:27:24,296 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.portal.ObjectNode.children]; using defaults.
2006-04-10 15:27:24,296 WARN  [org.hibernate.cache.EhCacheProvider] Could not find configuration [org.jboss.portal.core.impl.model.portal.PortalImpl.modes]; using defaults.
2006-04-10 15:27:28,484 INFO  [org.jboss.portal.theme.deployment.jboss.LayoutDeployment] create new layout(s), found in :  portal
2006-04-10 15:27:28,515 INFO  [org.jboss.portal.theme.deployment.jboss.LayoutDeployment] done creating new layout(s), found in :  portal
2006-04-10 15:27:28,515 INFO  [org.jboss.portal.theme.deployment.jboss.ThemeDeployment] create new theme(s), found in :  portal
2006-04-10 15:27:28,546 INFO  [org.jboss.portal.theme.deployment.jboss.ThemeDeployment] done creating new theme(s), found in :  portal
2006-04-10 15:27:28,734 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
2006-04-10 15:27:29,359 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44541jsf-facelets.jar!/META-INF/faces-config.xml
2006-04-10 15:27:29,359 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44553tomahawk.jar!/META-INF/faces-config.xml
2006-04-10 15:27:29,406 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config.xml
2006-04-10 15:27:29,453 ERROR [org.apache.myfaces.util.LocaleUtils] Locale name null or empty, ignoring
2006-04-10 15:27:29,453 INFO  [org.apache.myfaces.renderkit.RenderKitFactoryImpl] RenderKit with renderKitId 'HTML_BASIC' was replaced.
2006-04-10 15:27:29,453 INFO  [org.apache.myfaces.portlet.MyFacesGenericPortlet] PortletContext 'C:\alfresco\jboss\server\default\.\deploy\jboss-portal.sar\portal-core.war\' initialized.
2006-04-10 15:27:29,484 INFO  [org.jboss.portal.theme.deployment.jboss.LayoutDeployment] create new layout(s), found in :  /portal
2006-04-10 15:27:29,484 INFO  [org.jboss.portal.theme.deployment.jboss.LayoutDeployment] done creating new layout(s), found in :  /portal
2006-04-10 15:27:56,921 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
2006-04-10 15:27:57,000 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44541jsf-facelets.jar!/META-INF/faces-config.xml
2006-04-10 15:27:57,000 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44553tomahawk.jar!/META-INF/faces-config.xml
2006-04-10 15:27:57,031 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44624alfresco-exp.war/WEB-INF/lib/jenia4faces_1.2.jar!/META-INF/faces-config.xml
2006-04-10 15:27:57,078 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44624alfresco-exp.war/WEB-INF/lib/tomahawk.jar!/META-INF/faces-config.xml
2006-04-10 15:27:57,109 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-app.xml
2006-04-10 15:27:57,140 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-beans.xml
2006-04-10 15:27:57,359 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-navigation.xml
2006-04-10 15:27:57,640 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/EthicFlow_Route_Rules.xml
2006-04-10 15:27:57,640 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-common.xml
2006-04-10 15:27:57,656 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-repo.xml
2006-04-10 15:27:58,468 INFO  [org.apache.myfaces.webapp.StartupServletContextListener] ServletContext 'C:\alfresco\jboss\server\default\.\tmp\deploy\tmp44624alfresco-exp.war\' initialized.
2006-04-10 15:27:58,500 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/alfresco]] Loading Spring root WebApplicationContext
2006-04-10 15:28:07,421 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:28:07,421 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:28:07,421 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:28:07,421 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/mimetype/mimetype-map.xml
2006-04-10 15:28:07,437 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/mimetype/mimetype-map-openoffice.xml
2006-04-10 15:28:07,437 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:07,437 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'mimetypes'
2006-04-10 15:28:07,437 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1099c38 as there wasn't an element reader registered for element 'mimetypes'
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@a3646c (name=mimetypes) to org.alfresco.config.ConfigSectionImpl@115fa10 (evaluator=string-compare condition=Mimetype Map replace=false)
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@115fa10 (evaluator=string-compare condition=Mimetype Map replace=false) to the 'mimetype-map' area
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'mimetypes'
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1d451d2 as there wasn't an element reader registered for element 'mimetypes'
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@47b708 (name=mimetypes) to org.alfresco.config.ConfigSectionImpl@41986b (evaluator=string-compare condition=Mimetype Map replace=false)
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@41986b (evaluator=string-compare condition=Mimetype Map replace=false) to the 'mimetype-map' area
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:07,453 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:28:07,468 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Mimetype Map
2006-04-10 15:28:07,468 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:07,468 DEBUG [org.alfresco.config.BaseConfigService] Restricting search within following areas: [mimetype-map]
2006-04-10 15:28:07,468 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@115fa10 (evaluator=string-compare condition=Mimetype Map replace=false) matches
2006-04-10 15:28:07,468 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@41986b (evaluator=string-compare condition=Mimetype Map replace=false) matches
2006-04-10 15:28:07,468 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] Combined org.alfresco.config.element.GenericConfigElement@47b708 (name=mimetypes) with org.alfresco.config.element.GenericConfigElement@a3646c (name=mimetypes) to create org.alfresco.config.element.GenericConfigElement@9a4ba3 (name=mimetypes)
2006-04-10 15:28:08,468 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/file-servers.xml
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'host'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1e2e8cc as there wasn't an element reader registered for element 'host'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@21c3b0 (name=host) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'comment'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@c907ff as there wasn't an element reader registered for element 'comment'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@2bf6c0 (name=comment) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'broadcast'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@54be84 as there wasn't an element reader registered for element 'broadcast'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1a8019f (name=broadcast) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'tcpipSMB'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@10277cd as there wasn't an element reader registered for element 'tcpipSMB'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@10772d2 (name=tcpipSMB) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'netBIOSSMB'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@369bb as there wasn't an element reader registered for element 'netBIOSSMB'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@12a642 (name=netBIOSSMB) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'hostAnnounce'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@615f19 as there wasn't an element reader registered for element 'hostAnnounce'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@aa780b (name=hostAnnounce) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'Win32NetBIOS'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1af4abb as there wasn't an element reader registered for element 'Win32NetBIOS'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1533ff4 (name=Win32NetBIOS) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'Win32Announce'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@8bd6e8 as there wasn't an element reader registered for element 'Win32Announce'
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@ca5a40 (name=Win32Announce) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,656 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'sessionDebug'
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@eb2756 as there wasn't an element reader registered for element 'sessionDebug'
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@6382a6 (name=sessionDebug) to org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false)
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false) to the 'file-servers' area
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1167d36 (evaluator=string-compare condition=FTP Server replace=false) to the 'file-servers' area
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'filesystem'
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1766af0 as there wasn't an element reader registered for element 'filesystem'
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@166d31c (name=filesystem) to org.alfresco.config.ConfigSectionImpl@1ae1081 (evaluator=string-compare condition=Filesystems replace=false)
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1ae1081 (evaluator=string-compare condition=Filesystems replace=false) to the 'file-servers' area
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'authenticator'
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@bdc6a3 as there wasn't an element reader registered for element 'authenticator'
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@13c3750 (name=authenticator) to org.alfresco.config.ConfigSectionImpl@536d00 (evaluator=string-compare condition=Filesystem Security replace=false)
2006-04-10 15:28:08,671 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@536d00 (evaluator=string-compare condition=Filesystem Security replace=false) to the 'file-servers' area
2006-04-10 15:28:08,687 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:08,687 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/web-client-config.xml
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/web-client-config-properties.xml
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/web-client-config-navigation.xml
2006-04-10 15:28:08,703 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: classpath:alfresco/extension/web-client-config-custom.xml
2006-04-10 15:28:08,718 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'node-type': org.alfresco.web.config.NodeTypeEvaluator
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'aspect-name': org.alfresco.web.config.AspectEvaluator
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.xml.XMLConfigService] Added element reader 'client': org.alfresco.web.config.ClientElementReader
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.xml.XMLConfigService] Added element reader 'property-sheet': org.alfresco.web.config.PropertySheetElementReader
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.xml.XMLConfigService] Added element reader 'navigation': org.alfresco.web.config.NavigationElementReader
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.xml.XMLConfigService] Added element reader 'languages': org.alfresco.web.config.LanguagesElementReader
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.xml.XMLConfigService] Added element reader 'advanced-search': org.alfresco.web.config.AdvancedSearchElementReader
2006-04-10 15:28:08,734 DEBUG [org.alfresco.config.xml.XMLConfigService] Added element reader 'views': org.alfresco.web.config.ViewsElementReader
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'admin'
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1405ea9 as there wasn't an element reader registered for element 'admin'
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@106c17b (name=admin) to org.alfresco.config.ConfigSectionImpl@88884e (evaluator=null condition=null replace=false)
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.ClientElementReader@1acde15 for element named 'client'
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.ClientConfigElement@1e06d7e (name=client) to org.alfresco.config.ConfigSectionImpl@88884e (evaluator=null condition=null replace=false)
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.BaseConfigService] Added config elements from org.alfresco.config.ConfigSectionImpl@88884e (evaluator=null condition=null replace=false) to the global section
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.LanguagesElementReader@1347a84 for element named 'languages'
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.LanguagesConfigElement@72a921 (name=languages) to org.alfresco.config.ConfigSectionImpl@1bdd27a (evaluator=string-compare condition=Languages replace=false)
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1bdd27a (evaluator=string-compare condition=Languages replace=false) to the sections list
2006-04-10 15:28:08,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.ViewsElementReader@14580e6 for element named 'views'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.ViewsConfigElement@f6178d (name=views) to org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'node-event-listeners'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@bc56a2 as there wasn't an element reader registered for element 'node-event-listeners'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@dbd53e (name=node-event-listeners) to org.alfresco.config.ConfigSectionImpl@8d02eb (evaluator=string-compare condition=Node Event Listeners replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@8d02eb (evaluator=string-compare condition=Node Event Listeners replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.AdvancedSearchElementReader@1ba9aca for element named 'advanced-search'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.AdvancedSearchConfigElement@1fbdf57 (name=advanced-search) to org.alfresco.config.ConfigSectionImpl@103ccd9 (evaluator=string-compare condition=Advanced Search replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@103ccd9 (evaluator=string-compare condition=Advanced Search replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'content-types'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@7dcf98 as there wasn't an element reader registered for element 'content-types'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1c82121 (name=content-types) to org.alfresco.config.ConfigSectionImpl@1f72465 (evaluator=string-compare condition=Custom Content Types replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1f72465 (evaluator=string-compare condition=Custom Content Types replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'folder-types'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@7683b1 as there wasn't an element reader registered for element 'folder-types'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@c01846 (name=folder-types) to org.alfresco.config.ConfigSectionImpl@179da9f (evaluator=string-compare condition=Custom Folder Types replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@179da9f (evaluator=string-compare condition=Custom Folder Types replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'types'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1002a9d as there wasn't an element reader registered for element 'types'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1edd1f0 (name=types) to org.alfresco.config.ConfigSectionImpl@71edc8 (evaluator=string-compare condition=Action Wizards replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'aspects'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1b217f6 as there wasn't an element reader registered for element 'aspects'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1432acf (name=aspects) to org.alfresco.config.ConfigSectionImpl@71edc8 (evaluator=string-compare condition=Action Wizards replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'transformers'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@afa4b0 as there wasn't an element reader registered for element 'transformers'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1654104 (name=transformers) to org.alfresco.config.ConfigSectionImpl@71edc8 (evaluator=string-compare condition=Action Wizards replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'image-transformers'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@8f7aa2 as there wasn't an element reader registered for element 'image-transformers'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1bc45de (name=image-transformers) to org.alfresco.config.ConfigSectionImpl@71edc8 (evaluator=string-compare condition=Action Wizards replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@71edc8 (evaluator=string-compare condition=Action Wizards replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@18f2e35 as there wasn't an element reader registered for element 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@122a7b5 (name=icons) to org.alfresco.config.ConfigSectionImpl@3087bd (evaluator=string-compare condition=cm:folder icons replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@3087bd (evaluator=string-compare condition=cm:folder icons replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1fb580 as there wasn't an element reader registered for element 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1c4ecb7 (name=icons) to org.alfresco.config.ConfigSectionImpl@1911ec8 (evaluator=string-compare condition=fm:forums icons replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1911ec8 (evaluator=string-compare condition=fm:forums icons replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@7c0754 as there wasn't an element reader registered for element 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@c54b3b (name=icons) to org.alfresco.config.ConfigSectionImpl@ce38f1 (evaluator=string-compare condition=fm:forum icons replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@ce38f1 (evaluator=string-compare condition=fm:forum icons replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@fc61e9 as there wasn't an element reader registered for element 'icons'
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1802746 (name=icons) to org.alfresco.config.ConfigSectionImpl@92949f (evaluator=string-compare condition=fm:topic icons replace=false)
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@92949f (evaluator=string-compare condition=fm:topic icons replace=false) to the sections list
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:08,765 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@19fd66a (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@b5df86 (evaluator=node-type condition=content replace=false)
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@b5df86 (evaluator=node-type condition=content replace=false) to the sections list
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@65dbe8 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@1487217 (evaluator=node-type condition=folder replace=false)
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1487217 (evaluator=node-type condition=folder replace=false) to the sections list
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@13a46b6 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@f88377 (evaluator=node-type condition=fm:forums replace=false)
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@f88377 (evaluator=node-type condition=fm:forums replace=false) to the sections list
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@17f13c5 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@1eb186a (evaluator=node-type condition=fm:forum replace=false)
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1eb186a (evaluator=node-type condition=fm:forum replace=false) to the sections list
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,781 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@18fea98 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@172d95a (evaluator=node-type condition=fm:topic replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@172d95a (evaluator=node-type condition=fm:topic replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@11ba57a (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@d227f (evaluator=node-type condition=dictionaryModel replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@d227f (evaluator=node-type condition=dictionaryModel replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@53cb28 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@13ecbfc (evaluator=aspect-name condition=complianceable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@13ecbfc (evaluator=aspect-name condition=complianceable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@1c21014 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@1adc122 (evaluator=aspect-name condition=dublincore replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1adc122 (evaluator=aspect-name condition=dublincore replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@62d875 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@1712712 (evaluator=aspect-name condition=effectivity replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1712712 (evaluator=aspect-name condition=effectivity replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@1bc1fe5 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@1d1f967 (evaluator=aspect-name condition=summarizable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1d1f967 (evaluator=aspect-name condition=summarizable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@4d107e (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@175d3d7 (evaluator=aspect-name condition=versionable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@175d3d7 (evaluator=aspect-name condition=versionable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@a6cf28 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@16a6512 (evaluator=aspect-name condition=translatable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@16a6512 (evaluator=aspect-name condition=translatable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@11b4c2 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@724328 (evaluator=aspect-name condition=localizable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@724328 (evaluator=aspect-name condition=localizable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@197171f (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@6f14d6 (evaluator=aspect-name condition=author replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@6f14d6 (evaluator=aspect-name condition=author replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@c11af5 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@1d0fe80 (evaluator=aspect-name condition=auditable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1d0fe80 (evaluator=aspect-name condition=auditable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.PropertySheetElementReader@15b571e for element named 'property-sheet'
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.PropertySheetConfigElement@1f4a741 (name=property-sheet) to org.alfresco.config.ConfigSectionImpl@110de08 (evaluator=aspect-name condition=app:inlineeditable replace=false)
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@110de08 (evaluator=aspect-name condition=app:inlineeditable replace=false) to the sections list
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:08,812 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.NavigationElementReader@60eb0c for element named 'navigation'
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.NavigationConfigElement@16911f6 (name=navigation) to org.alfresco.config.ConfigSectionImpl@11a638a (evaluator=node-type condition=fm:forums replace=false)
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@11a638a (evaluator=node-type condition=fm:forums replace=false) to the sections list
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.NavigationElementReader@60eb0c for element named 'navigation'
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.NavigationConfigElement@17d3308 (name=navigation) to org.alfresco.config.ConfigSectionImpl@a1918e (evaluator=node-type condition=fm:forum replace=false)
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@a1918e (evaluator=node-type condition=fm:forum replace=false) to the sections list
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.NavigationElementReader@60eb0c for element named 'navigation'
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.NavigationConfigElement@15b2f17 (name=navigation) to org.alfresco.config.ConfigSectionImpl@170bbcf (evaluator=node-type condition=fm:topic replace=false)
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@170bbcf (evaluator=node-type condition=fm:topic replace=false) to the sections list
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader org.alfresco.web.config.LanguagesElementReader@1347a84 for element named 'languages'
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.web.config.LanguagesConfigElement@3a2536 (name=languages) to org.alfresco.config.ConfigSectionImpl@1611c24 (evaluator=string-compare condition=Languages replace=false)
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1611c24 (evaluator=string-compare condition=Languages replace=false) to the sections list
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:28:08,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:28:11,703 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
2006-04-10 15:28:11,703 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'QuartzScheduler' initialized from an externally provided properties instance.
2006-04-10 15:28:11,703 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 1.4.5
2006-04-10 15:28:11,703 INFO  [org.quartz.core.QuartzScheduler] Scheduler QuartzScheduler_$_NON_CLUSTERED started.
2006-04-10 15:28:11,750 INFO  [STDOUT] 10 avr. 2006 15:28:11 net.sf.joott.uno.UnoConnection connect
INFO: connecting using "socket,host=localhost,port=8100,tcpNoDelay=1"…
2006-04-10 15:28:12,812 INFO  [STDOUT] 10 avr. 2006 15:28:12 net.sf.joott.uno.UnoConnection connect
GRAVE: connection failed: com.sun.star.connection.NoConnectException: java.net.ConnectException: Connection refused: connect
2006-04-10 15:28:12,859 INFO  [STDOUT] 10 avr. 2006 15:28:12 net.sf.joott.uno.UnoConnection connect
INFO: connecting using "socket,host=localhost,port=8100,tcpNoDelay=1"…
2006-04-10 15:28:13,906 INFO  [STDOUT] 10 avr. 2006 15:28:13 net.sf.joott.uno.UnoConnection connect
GRAVE: connection failed: com.sun.star.connection.NoConnectException: java.net.ConnectException: Connection refused: connect
2006-04-10 15:28:15,578 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] V?rification des correctifs ? appliquer …
2006-04-10 15:28:15,656 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] Aucun correctif requis.
2006-04-10 15:28:15,656 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for CIFS Server
2006-04-10 15:28:15,656 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:15,656 DEBUG [org.alfresco.config.BaseConfigService] Restricting search within following areas: [file-servers]
2006-04-10 15:28:15,656 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@b69467 (evaluator=string-compare condition=CIFS Server replace=false) matches
2006-04-10 15:28:15,703 ERROR [org.alfresco.smb.protocol] Error accessing Win32 NetBIOS, check DLL is on the path
2006-04-10 15:28:15,703 INFO  [org.alfresco.ftp.server] Starting server FTP …
2006-04-10 15:28:15,718 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - v1.5.0_06-b05; maximum heap size 506,313MB
2006-04-10 15:28:15,718 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Community Network): Current version 1.2.0 schema 6 - Installed version 1.2.0 schema 6
2006-04-10 15:28:17,890 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
2006-04-10 15:28:17,953 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44541jsf-facelets.jar!/META-INF/faces-config.xml
2006-04-10 15:28:18,000 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44553tomahawk.jar!/META-INF/faces-config.xml
2006-04-10 15:28:18,046 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44624alfresco-exp.war/WEB-INF/lib/jenia4faces_1.2.jar!/META-INF/faces-config.xml
2006-04-10 15:28:18,078 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/alfresco/jboss/server/default/tmp/deploy/tmp44624alfresco-exp.war/WEB-INF/lib/tomahawk.jar!/META-INF/faces-config.xml
2006-04-10 15:28:18,125 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-app.xml
2006-04-10 15:28:18,125 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-beans.xml
2006-04-10 15:28:18,390 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-navigation.xml
2006-04-10 15:28:18,515 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/EthicFlow_Route_Rules.xml
2006-04-10 15:28:18,531 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-common.xml
2006-04-10 15:28:18,546 INFO  [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config-repo.xml
2006-04-10 15:28:18,562 INFO  [org.apache.myfaces.renderkit.RenderKitFactoryImpl] RenderKit with renderKitId 'HTML_BASIC' was replaced.
2006-04-10 15:28:18,562 INFO  [org.apache.myfaces.portlet.MyFacesGenericPortlet] PortletContext 'C:\alfresco\jboss\server\default\.\tmp\deploy\tmp44624alfresco-exp.war\' initialized.
2006-04-10 15:28:19,234 INFO  [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
2006-04-10 15:28:19,343 INFO  [org.apache.jk.common.ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
2006-04-10 15:28:19,343 INFO  [org.apache.jk.server.JkMain] Jk running ID=0 time=0/47  config=null
2006-04-10 15:28:50,562 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:28:50,562 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:50,562 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:28:50,906 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:28:50,906 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:50,906 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:28:51,046 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Node Event Listeners
2006-04-10 15:28:51,046 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:51,046 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@8d02eb (evaluator=string-compare condition=Node Event Listeners replace=false) matches
2006-04-10 15:28:51,062 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:28:51,062 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:51,062 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:28:51,078 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:28:51,078 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:28:51,078 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:27,375 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:27,375 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:27,375 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:27,375 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:27,375 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:27,375 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:28,281 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:28,281 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:28,281 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:28,312 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Languages
2006-04-10 15:29:28,312 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:28,312 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1bdd27a (evaluator=string-compare condition=Languages replace=false) matches
2006-04-10 15:29:28,312 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1611c24 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-10 15:29:28,312 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] Combined org.alfresco.web.config.LanguagesConfigElement@3a2536 (name=languages) with org.alfresco.web.config.LanguagesConfigElement@72a921 (name=languages) to create org.alfresco.web.config.LanguagesConfigElement@10da3e7 (name=languages)
2006-04-10 15:29:31,953 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Languages
2006-04-10 15:29:31,953 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:31,968 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1bdd27a (evaluator=string-compare condition=Languages replace=false) matches
2006-04-10 15:29:31,968 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1611c24 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-10 15:29:31,968 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] Combined org.alfresco.web.config.LanguagesConfigElement@3a2536 (name=languages) with org.alfresco.web.config.LanguagesConfigElement@72a921 (name=languages) to create org.alfresco.web.config.LanguagesConfigElement@b88745 (name=languages)
2006-04-10 15:29:32,625 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean init]mapnode done
2006-04-10 15:29:32,687 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean init]props
2006-04-10 15:29:32,687 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean init]nbnodes=1
2006-04-10 15:29:32,687 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean]activeactive
2006-04-10 15:29:32,687 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean]firstInittrue
2006-04-10 15:29:32,687 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean]procedID1dd610cf-c48a-11da-87e8-3be91c4d2278
2006-04-10 15:29:32,687 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]psNodeRefs not null
2006-04-10 15:29:32,703 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]procedId=1dd610cf-c48a-11da-87e8-3be91c4d2278
2006-04-10 15:29:32,750 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]proced xml=null
2006-04-10 15:29:32,750 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:29:32,750 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:29:32,765 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:29:32,765 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: ./src/projects/web-client/source/web/WEB-INF/EthicFlow_Rules_Employee.xml
2006-04-10 15:29:32,765 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1946086 as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@4d3abf (name=labels) to org.alfresco.config.ConfigSectionImpl@4be958 (evaluator=string-compare condition=ProcedureLabel replace=false)
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@4be958 (evaluator=string-compare condition=ProcedureLabel replace=false) to the sections list
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1c4b997 as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@747ce6 (name=labels) to org.alfresco.config.ConfigSectionImpl@1b41390 (evaluator=string-compare condition=cre

soeursourire
Champ in-the-making
Champ in-the-making
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'children'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1706125 as there wasn't an element reader registered for element 'children'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@f9ead4 (name=children) to org.alfresco.config.ConfigSectionImpl@1b41390 (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1b41390 (evaluator=string-compare condition=creation replace=false) to the sections list
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for creation
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1b41390 (evaluator=string-compare condition=creation replace=false) matches
2006-04-10 15:29:32,796 INFO  [org.alfresco.web.config.EthicFlow_XMLParse] Number of children: 2
2006-04-10 15:29:32,796 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]processus label=Nommer un nouvel employ?
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: ./src/projects/web-client/source/web/WEB-INF/EthicFlow_Rules_Employee.xml
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1a82499 as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1fabdc2 (name=labels) to org.alfresco.config.ConfigSectionImpl@c04c2b (evaluator=string-compare condition=ProcedureLabel replace=false)
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@c04c2b (evaluator=string-compare condition=ProcedureLabel replace=false) to the sections list
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@c8c892 as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1e8065e (name=labels) to org.alfresco.config.ConfigSectionImpl@1fa0859 (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'children'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@3a2dec as there wasn't an element reader registered for element 'children'
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@19d0c27 (name=children) to org.alfresco.config.ConfigSectionImpl@1fa0859 (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1fa0859 (evaluator=string-compare condition=creation replace=false) to the sections list
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for ProcedureLabel
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:32,796 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@c04c2b (evaluator=string-compare condition=ProcedureLabel replace=false) matches
2006-04-10 15:29:32,796 INFO  [org.alfresco.web.config.EthicFlow_XMLParse] Number of children: 2
2006-04-10 15:29:32,796 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]procedure label=G?rer votre personnel
2006-04-10 15:29:32,796 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]containerNodes not null
2006-04-10 15:29:35,296 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:35,296 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,296 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:35,312 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:35,312 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,312 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:35,312 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean init]mapnode done
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean init]props
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean init]nbnodes=1
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean]activeactive
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean]firstInittrue
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.processus.EthicFlow_ProcessusBeanService] [EF_ProcessusBean]procedID1dd610cf-c48a-11da-87e8-3be91c4d2278
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]psNodeRefs not null
2006-04-10 15:29:35,328 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]procedId=1dd610cf-c48a-11da-87e8-3be91c4d2278
2006-04-10 15:29:35,359 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]proced xml=null
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: ./src/projects/web-client/source/web/WEB-INF/EthicFlow_Rules_Employee.xml
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@bb303 as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@15b303 (name=labels) to org.alfresco.config.ConfigSectionImpl@9ba29e (evaluator=string-compare condition=ProcedureLabel replace=false)
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@9ba29e (evaluator=string-compare condition=ProcedureLabel replace=false) to the sections list
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@1d1649f as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@2507c2 (name=labels) to org.alfresco.config.ConfigSectionImpl@1205adc (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'children'
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@12d40de as there wasn't an element reader registered for element 'children'
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@1fdbab5 (name=children) to org.alfresco.config.ConfigSectionImpl@1205adc (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@1205adc (evaluator=string-compare condition=creation replace=false) to the sections list
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for creation
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1205adc (evaluator=string-compare condition=creation replace=false) matches
2006-04-10 15:29:35,359 INFO  [org.alfresco.web.config.EthicFlow_XMLParse] Number of children: 2
2006-04-10 15:29:35,359 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]processus label=Nommer un nouvel employ?
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: ./src/projects/web-client/source/web/WEB-INF/EthicFlow_Rules_Employee.xml
2006-04-10 15:29:35,359 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@eccf6e as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@12656d3 (name=labels) to org.alfresco.config.ConfigSectionImpl@e5602 (evaluator=string-compare condition=ProcedureLabel replace=false)
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@e5602 (evaluator=string-compare condition=ProcedureLabel replace=false) to the sections list
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'labels'
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@130adbf as there wasn't an element reader registered for element 'labels'
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@dedd5c (name=labels) to org.alfresco.config.ConfigSectionImpl@196fffc (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Retrieved element reader null for element named 'children'
2006-04-10 15:29:35,375 DEBUG [org.alfresco.config.xml.XMLConfigService] Defaulting to org.alfresco.config.xml.elementreader.GenericElementReader@800a9e as there wasn't an element reader registered for element 'children'
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.xml.XMLConfigService] Added org.alfresco.config.element.GenericConfigElement@392c27 (name=children) to org.alfresco.config.ConfigSectionImpl@196fffc (evaluator=string-compare condition=creation replace=false)
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.BaseConfigService] Added org.alfresco.config.ConfigSectionImpl@196fffc (evaluator=string-compare condition=creation replace=false) to the sections list
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.BaseConfigService] Completed parse of input stream
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.xml.XMLConfigService] Completed initialisation
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for ProcedureLabel
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,390 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@e5602 (evaluator=string-compare condition=ProcedureLabel replace=false) matches
2006-04-10 15:29:35,390 INFO  [org.alfresco.web.config.EthicFlow_XMLParse] Number of children: 2
2006-04-10 15:29:35,390 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]procedure label=G?rer votre personnel
2006-04-10 15:29:35,390 INFO  [org.alfresco.web.bean.EthicFlow_BrowseBean] [EF_BROWSEBEAN]containerNodes not null
2006-04-10 15:29:35,390 WARN  [org.alfresco.web.ui.common.renderer.data.RichListRenderer] No primary column found for RichList definition: processusList
2006-04-10 15:29:35,406 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:35,406 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,406 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:35,578 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Node Event Listeners
2006-04-10 15:29:35,578 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,578 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@8d02eb (evaluator=string-compare condition=Node Event Listeners replace=false) matches
2006-04-10 15:29:35,578 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:35,578 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:35,578 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:36,312 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:36,312 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:36,312 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:37,953 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:37,968 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Node Event Listeners
2006-04-10 15:29:37,968 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:37,968 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@8d02eb (evaluator=string-compare condition=Node Event Listeners replace=false) matches
2006-04-10 15:29:37,984 INFO  [org.alfresco.web.bean.wizard.EthicFlow_JspWizard] ps node id=e280edac-c540-11da-8acc-e713b171c294
2006-04-10 15:29:38,000 INFO  [org.alfresco.web.bean.wizard.EthicFlow_JspWizard] user=admin
2006-04-10 15:29:38,000 INFO  [org.alfresco.web.bean.ethicflow.EthicFlow_JspFormInitService] processs service not null
2006-04-10 15:29:38,000 INFO  [org.alfresco.web.bean.ethicflow.EthicFlow_JspFormInitService] id not null
2006-04-10 15:29:38,000 INFO  [org.alfresco.web.bean.ethicflow.EthicFlow_JspFormInitService] firstInit=false
2006-04-10 15:29:38,015 INFO  [org.alfresco.web.bean.ethicflow.EthicFlow_JspFormInitService] pi=1dd610cf-c48a-11da-87e8-3be91c4d2278
2006-04-10 15:29:38,828 INFO  [org.alfresco.web.bean.ethicflow.EthicFlow_JspFormInitService] proced condi=creation
2006-04-10 15:29:38,828 INFO  [org.alfresco.web.bean.wizard.EthicFlow_JspWizard] JSPWIZARD name step=person-properties
2006-04-10 15:29:38,828 INFO  [org.alfresco.web.bean.wizard.EthicFlow_JspWizard] JSPWIZARD PRESTEP name step=person-properties
2006-04-10 15:29:38,828 INFO  [org.alfresco.web.bean.wizard.EthicFlow_JspWizard] JSPWIZARD STEP FOUND
2006-04-10 15:29:38,828 INFO  [org.alfresco.web.config.EthicFlow_XMLParse] XML to parse: ./src/projects/web-client/source/web/WEB-INF/EthicFlow_Config_Pages.xml
2006-04-10 15:29:38,828 DEBUG [org.alfresco.config.xml.XMLConfigService] Commencing initialisation
2006-04-10 15:29:38,828 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'string-compare': org.alfresco.config.evaluator.StringEvaluator
2006-04-10 15:29:38,828 DEBUG [org.alfresco.config.BaseConfigService] Added evaluator 'object-type': org.alfresco.config.evaluator.ObjectTypeEvaluator
2006-04-10 15:29:38,828 DEBUG [org.alfresco.config.source.BaseConfigSource] Retrieving input stream for source: http://localhost:8080/alfresco/download/direct/workspace/SpacesStore/91bdd27a-c482-11da-bc03-6f71bd8...
2006-04-10 15:29:38,953 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Views
2006-04-10 15:29:38,953 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:38,953 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@84506d (evaluator=string-compare condition=Views replace=false) matches
2006-04-10 15:29:38,953 DEBUG [org.alfresco.config.BaseConfigService] Retrieving configuration for Languages
2006-04-10 15:29:38,953 DEBUG [org.alfresco.config.BaseConfigService] Created initial config results using global section
2006-04-10 15:29:38,953 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1bdd27a (evaluator=string-compare condition=Languages replace=false) matches
2006-04-10 15:29:38,968 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] org.alfresco.config.ConfigSectionImpl@1611c24 (evaluator=string-compare condition=Languages replace=false) matches
2006-04-10 15:29:38,968 DEBUG [org.alfresco.config.DefaultLookupAlgorithm] Combined org.alfresco.web.config.LanguagesConfigElement@3a2536 (name=languages) with org.alfresco.web.config.LanguagesConfigElement@72a921 (name=languages) to create org.alfresco.web.config.LanguagesConfigElement@47411c (name=languages)
2006-04-10 15:29:38,968 DEBUG [org.alfresco.config.BaseConfigService] Commencing parse of input stream

soeursourire
Champ in-the-making
Champ in-the-making
Hello!

It is me again with my questions:-)
So apparently as we discussed, my problem comes from a permission access to my XML file. So I am trying to give permission access to this node for the connected user… something like this:

String usernameConnected = authenticationService.getCurrentUserName();
permissionService.setPermission(recentDocument,usernameConnected, permissionService.getAllPermission(), true);

But I get into troubles for Spring reasons. To do this I wanted to implement a class called documentsBeanService that will manipulate my files documents in admin space.
- I implement documentsBeanService class on client side
- I declare this service in services-context.xml on Repository side
           <bean id="documentsBeanService" class="org.alfresco.web.bean.documents.EF_DocumentsBeanService">
        <property name="authenticationService">
            <ref bean="authenticationService" />
         </property>
         <property name="permissionService">
            <ref bean="permissionService" />
         </property>
        <property name="nodeService">
            <ref bean="nodeService" />
         </property>
         <property name="searchService">
             <ref bean="searchService" />
         </property>
         <property name="dictionaryService">
            <ref bean="dictionaryService" />
        </property>
         <property name="namespacePrefixResolver">
            <ref bean="namespaceService" />
        </property>
        <property name="namespaceService">
            <ref bean="namespaceService" />
        </property>
        <property name="storeUrl">
            <value>${spaces.store}</value>
        </property>   
    </bean>   

- I have a class ef_PersonProperties declared in faces-config-beans.xml that calls this service (I am using this class to get the information the user enter in the jsp page):
<managed-bean>
      <description>
         The bean that backs up the PERSON PROPERTIES
      </description>
      <managed-bean-name>ef_PersonProperties</managed-bean-name>
      <managed-bean-class>org.alfresco.web.bean.ef.ef_PersonProperties</managed-bean-class>
      <managed-bean-scope>session</managed-bean-scope>
      <managed-property>
         <property-name>documentsBeanService</property-name>
         <value>#{documentsBeanService}</value>
      </managed-property>
    </managed-bean>

- And I have a class that manages all my jsp pages Wizard that contains a variable storeClassEPP of type ef_PersonProperties:
this.storeClassEPP = new ef_PersonProperties();
this.storeClassEPP.init();
- In this init() method I need to call documentsBeanService.myMethod().
However here documentsBeanService is null. I do not understand why? What did I forget to do in order to inject documentsBeanService?

Thanks for your help
Sophie
Getting started

Tags


Find what you came for

We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.