WebScript Informe

cancel
Showing results for 
Search instead for 
Did you mean: 
pablo_zapico
Member II

WebScript Informe

Buenos dias… Dejo aqui un webScript que nos muestra un xml con los contenidos de un espacio

Ficheros:

informe.ieci.folder.get.desc.xml

En este fichero se define nuestro web script

<webscript>
   <shortname>Listado Asociaciones</shortname>
   <description>
      <![CDATA[
         Listado del contenido de asociaciones
         <ul>
            <li> path: Asociaciones </li> 
         </ul>   
         Example: http://localhost:8080/alfresco/service/loquekiera/folder/Asociaciones
         <BR/>
         Return status: STATUS_OK, 200 
      ]]>
   </description>
   <url>/loquekiera/folder/{path}</url>
   <format default="xml">argument</format>
   <authentication>guest</authentication>
   <transaction>required</transaction>
</webscript>

Le indicaremos el nombre, la url para lanzarlo, si lleva algun parametro, el tipo de retorno, seguridad…

informe.ieci.folder.get.js

En este otro fichero ira nuestro codigo propiamente dicho, que sera el encargado de realizar la logica de nuestro webScript

// locate folder by path
var folder = companyhome.childByNamePath(url.extension);  // url.extension sera el valor que le pasemos como parametro
// En folder almacenara el resultado de nuestra busqueda
if (folder == undefined)
{
   status.code = 404;
   status.message = "Folder " + url.extension + " not found.";
   status.redirect = true;
}
model.folder = folder;

informe.ieci.folder.get.xml.ftl

Y por ultimo en este fichero definiremos la plantilla para mostrar los resultados, en este caso se retornara un xml

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp "&#160;">
<!ENTITY gt "&#62;">
<!ENTITY lt "&#38;#60;">
<!ENTITY aacute "&#225;">
<!ENTITY eacute "&#233;">
<!ENTITY iacute "&#237;">
<!ENTITY oacute "&#243;">
<!ENTITY uacute "&#250;">
<!ENTITY ntilde "&#241;">
<!ENTITY Aacute "&#193;">
<!ENTITY Eacute "&#201;">
<!ENTITY Iacute "&#205;">
<!ENTITY Oacute "&#211;">
<!ENTITY Uacute "&#218;">
<!ENTITY Ntilde "&#209;">
<!ENTITY iquest "&#191;">
]>
<#compress>
   <Asociaciones> 
         <#list folder.children as space>
            <Asociacion nombre="${space.name}">
               <#if space.isContainer>                           
                  <descripcion>${space.properties["cm:description"]}</descripcion>
                  <Contenidos>
                     <#list space.children as node> 
                        <#if node.isContainer>                                 
                        <#else>
                           <Contenido nombre="${node.name}"/>                                                         
                        </#if>                     
                     </#list>            
                  </Contenidos>
                  <#else>               
               </#if>
            </Asociacion>
         </#list>               
    </Asociaciones>
</#compress>

Se podran crear bucles y condiciones.


Estos tres ficheros los alojaremos en Diccionario de datos > Web Scripts Extensions

Despues en la siguiente ruta http://localhost:8080/alfresco/service/index podremos ver todos los webscript cargados, si seleccionamos "Regresh Web Script", cargara el nuestro y despues en el siguiente enlace http://localhost:8080/alfresco/service/index/all deberiamos ver el listado de web script donde el que hemos creado Listado Asociaciones deberia aparecer.

Por ultimo ejecutaremos http://localhost:8080/alfresco/service/loquekiera/folder/Asociaciones y nos deberia mostrar un xml con todos los contenidos del espacio asociaciones con su nombre y descripcion. Se pueden mostrar todos los metadatos que precisemos y listar el espacio que deseemos dependiendo de la url que invoquemos.

Saludos
2 Replies
moterosk
Member II

Re: WebScript Informe

Hola que tal?
Disculpad pero soy muy novato en todo esto.
He seguido todos los pasos en un Alfresco que tengo andando en una máquina para realizar pruebas,  no acabo de conseguirlo.

Las versiones usadas son la 3.2r2 de Alfresco-Community sobre Windows XP.
Todo va como la seda hasta llegado este punto:
Por ultimo ejecutaremos http://localhost:8080/alfresco/service/loquekiera/folder/Asociaciones y nos deberia mostrar un xml con todos los contenidos del espacio asociaciones con su nombre y descripcion. Se pueden mostrar todos los metadatos que precisemos y listar el espacio que deseemos dependiendo de la url que invoquemos.

que me da el típico fallo de web no encontrada




14:14:06,343 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from class path resource [alfresco/repository.properties]
14:14:06,343 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from class path resource [alfresco/domain/transaction.properties]
14:14:06,343 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from URL [file:/C:/Alfresco/tomcat/shared/classes/alfresco-global.properties]
14:14:06,468 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:28,250 INFO  [org.alfresco.repo.domain.schema.SchemaBootstrap] Schema managed by database dialect org.hibernate.dialect.MySQLInnoDBDialect.
14:14:30,703 INFO  [org.alfresco.repo.domain.schema.SchemaBootstrap] No changes were made to the schema.
14:14:31,656 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'sysAdmin' subsystem, ID: [sysAdmin, default]
14:14:31,671 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:31,671 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'sysAdmin' subsystem, ID: [sysAdmin, default] complete
14:14:33,937 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'thirdparty' subsystem, ID: [thirdparty, default]
14:14:33,953 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:35,531 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'thirdparty' subsystem, ID: [thirdparty, default] complete
14:14:35,625 INFO  [org.alfresco.repo.admin.ConfigurationChecker] The Alfresco root data directory ('dir.root') is: C:\Alfresco\alf_data
14:14:35,671 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] Checking for patches to apply …
14:14:35,937 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] No patches were required.
14:14:35,937 INFO  [org.alfresco.repo.module.ModuleServiceImpl] Found 1 module(s).
14:14:36,015 INFO  [org.alfresco.repo.module.ModuleServiceImpl] Starting module 'org.alfresco.module.vti' version 1.2.
14:14:36,203 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'fileServers' subsystem, ID: [fileServers, default]
14:14:36,218 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:36,421 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1]
14:14:36,437 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:36,531 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1] complete
14:14:36,640 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'fileServers' subsystem, ID: [fileServers, default] complete
14:14:36,640 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'imap' subsystem, ID: [imap, default]
14:14:36,671 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:36,734 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'imap' subsystem, ID: [imap, default] complete
14:14:36,734 INFO  [org.alfresco.repo.usage.UserUsageTrackingComponent] Enabled - calculate missing user usages …
14:14:36,750 INFO  [org.alfresco.repo.usage.UserUsageTrackingComponent] Found 0 users to recalculate
14:14:36,765 INFO  [org.alfresco.repo.usage.UserUsageTrackingComponent] … calculated missing usages for 0 users
14:14:36,765 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'Synchronization' subsystem, ID: [Synchronization, default]
14:14:36,796 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:36,937 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'Synchronization' subsystem, ID: [Synchronization, default] complete
14:14:37,093 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - v1.6.0_16-b01; maximum heap size 493,063MB
14:14:37,093 WARN  [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - WARNING - maximum heap size 493,063MB is less than recommended 512MB
14:14:37,093 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Community): Current version 3.2.0 (r2 2440) schema 3300 - Originally installed version 3.2.0 (r2 2440) schema 3300
14:14:37,515 INFO  [org.alfresco.module.vti.VtiServer] Vti server started successfully on port: 7070
14:14:55,203 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'wcm_deployment_receiver' subsystem, ID: [wcm_deployment_receiver, default]
14:14:55,218 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:14:55,328 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'wcm_deployment_receiver' subsystem, ID: [wcm_deployment_receiver, default] complete
14:14:56,765 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Refreshing org.alfresco.config.JBossEnabledWebApplicationContext@190189: display name [Root WebApplicationContext]; startup date [Mon Jan 25 14:14:56 CET 2010]; root of context hierarchy
14:14:57,125 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Bean factory for application context [org.alfresco.config.JBossEnabledWebApplicationContext@190189]: org.springframework.beans.factory.support.DefaultListableBeanFactory@18a5800
14:14:58,046 INFO  [org.alfresco.web.scripts.DeclarativeRegistry] Registered 22 Web Scripts (+0 failed), 24 URLs
14:14:58,062 INFO  [org.alfresco.web.scripts.AbstractRuntimeContainer] Initialised Presentation Web Script Container (in 210.00882ms)
14:14:58,156 INFO  [org.alfresco.web.scripts.DeclarativeRegistry] Registered 40 Web Scripts (+0 failed), 42 URLs
14:14:58,171 INFO  [org.alfresco.web.scripts.AbstractRuntimeContainer] Initialised WebFramework Web Script Container (in 107.67933ms)
14:14:58,218 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
14:15:00,921 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/edit.get.desc.xml due to error: 00250000 Failed to read script configuration file ; Unable to test document path: components/common/audio/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/edit.post.desc.xml due to error: 00250001 Failed to read script configuration file ; Unable to test document path: components/common/audio/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/view.get.desc.xml due to error: 00250002 Failed to read script configuration file ; Unable to test document path: components/common/audio/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/edit.get.desc.xml due to error: 00250003 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/edit.post.desc.xml due to error: 00250004 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/view.get.desc.xml due to error: 00250005 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/edit.get.desc.xml due to error: 00250006 Failed to read script configuration file ; Unable to test document path: components/common/display-items/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/edit.post.desc.xml due to error: 00250007 Failed to read script configuration file ; Unable to test document path: components/common/display-items/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/view.get.desc.xml due to error: 00250008 Failed to read script configuration file ; Unable to test document path: components/common/display-items/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/edit.get.desc.xml due to error: 00250009 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/edit.post.desc.xml due to error: 00250010 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/view.get.desc.xml due to error: 00250011 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/edit.get.desc.xml due to error: 00250012 Failed to read script configuration file ; Unable to test document path: components/common/html/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/edit.post.desc.xml due to error: 00250013 Failed to read script configuration file ; Unable to test document path: components/common/html/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/view.get.desc.xml due to error: 00250014 Failed to read script configuration file ; Unable to test document path: components/common/html/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/edit.get.desc.xml due to error: 00250015 Failed to read script configuration file ; Unable to test document path: components/common/image/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/edit.post.desc.xml due to error: 00250016 Failed to read script configuration file ; Unable to test document path: components/common/image/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/view.get.desc.xml due to error: 00250017 Failed to read script configuration file ; Unable to test document path: components/common/image/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/edit.get.desc.xml due to error: 00250018 Failed to read script configuration file ; Unable to test document path: components/common/include/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/edit.post.desc.xml due to error: 00250019 Failed to read script configuration file ; Unable to test document path: components/common/include/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/view.get.desc.xml due to error: 00250020 Failed to read script configuration file ; Unable to test document path: components/common/include/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/edit.get.desc.xml due to error: 00250021 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/edit.post.desc.xml due to error: 00250022 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/view.get.desc.xml due to error: 00250023 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/edit.get.desc.xml due to error: 00250024 Failed to read script configuration file ; Unable to test document path: components/common/markup/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/edit.post.desc.xml due to error: 00250025 Failed to read script configuration file ; Unable to test document path: components/common/markup/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/view.get.desc.xml due to error: 00250026 Failed to read script configuration file ; Unable to test document path: components/common/markup/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/edit.get.desc.xml due to error: 00250027 Failed to read script configuration file ; Unable to test document path: components/common/navigation/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/edit.post.desc.xml due to error: 00250028 Failed to read script configuration file ; Unable to test document path: components/common/navigation/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,265 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/view.get.desc.xml due to error: 00250029 Failed to read script configuration file ; Unable to test document path: components/common/navigation/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/edit.get.desc.xml due to error: 00250030 Failed to read script configuration file ; Unable to test document path: components/common/video/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/edit.post.desc.xml due to error: 00250031 Failed to read script configuration file ; Unable to test document path: components/common/video/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/view.get.desc.xml due to error: 00250032 Failed to read script configuration file ; Unable to test document path: components/common/video/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/index.get.desc.xml due to error: 00250033 Failed to read script configuration file ; Unable to test document path: org/alfresco/index.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/index.post.desc.xml due to error: 00250034 Failed to read script configuration file ; Unable to test document path: org/alfresco/index.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexall.get.desc.xml due to error: 00250035 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexall.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexfailures.get.desc.xml due to error: 00250036 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexfailures.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexfamily.get.desc.xml due to error: 00250037 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexfamily.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexlifecycle.get.desc.xml due to error: 00250038 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexlifecycle.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexpackage.get.desc.xml due to error: 00250039 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexpackage.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,281 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexuri.get.desc.xml due to error: 00250040 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexuri.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/jsdebugger.get.desc.xml due to error: 00250041 Failed to read script configuration file ; Unable to test document path: org/alfresco/jsdebugger.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/jsdebugger.post.desc.xml due to error: 00250042 Failed to read script configuration file ; Unable to test document path: org/alfresco/jsdebugger.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptdescription.get.desc.xml due to error: 00250043 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptdescription.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptdump.get.desc.xml due to error: 00250044 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptdump.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptinstall.get.desc.xml due to error: 00250045 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptinstall.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptinstall.post.desc.xml due to error: 00250046 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptinstall.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/atomentry.post.desc.xml due to error: 00250047 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/atomentry.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/bogustest.post.desc.xml due to error: 00250048 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/bogustest.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/encodedsubmit.post.desc.xml due to error: 00250049 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/encodedsubmit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/exception.get.desc.xml due to error: 00250050 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/exception.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/jsonecho.post.desc.xml due to error: 00250051 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/jsonecho.post.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/requestbody.put.desc.xml due to error: 00250052 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/requestbody.put.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/runas.get.desc.xml due to error: 00250053 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/runas.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/web/messages.get.desc.xml due to error: 00250054 Failed to read script configuration file ; Unable to test document path: org/alfresco/web/messages.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/content/associations/associations.get.desc.xml due to error: 00250055 Failed to read script configuration file ; Unable to test document path: web-studio/api/content/associations/associations.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/context/setcontext.get.desc.xml due to error: 00250056 Failed to read script configuration file ; Unable to test document path: web-studio/api/context/setcontext.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/importer/importer.get.desc.xml due to error: 00250057 Failed to read script configuration file ; Unable to test document path: web-studio/api/importer/importer.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/importer/statuscheck.get.desc.xml due to error: 00250058 Failed to read script configuration file ; Unable to test document path: web-studio/api/importer/statuscheck.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/login/login.get.desc.xml due to error: 00250059 Failed to read script configuration file ; Unable to test document path: web-studio/api/login/login.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/get.get.desc.xml due to error: 00250060 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/list.get.desc.xml due to error: 00250061 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/list.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/put.get.desc.xml due to error: 00250062 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/put.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/page/associations/associations.get.desc.xml due to error: 00250063 Failed to read script configuration file ; Unable to test document path: web-studio/api/page/associations/associations.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,296 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/prebuilt/list.get.desc.xml due to error: 00250064 Failed to read script configuration file ; Unable to test document path: web-studio/api/prebuilt/list.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/region/region-get.get.desc.xml due to error: 00250065 Failed to read script configuration file ; Unable to test document path: web-studio/api/region/region-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/regions/regions-get.get.desc.xml due to error: 00250066 Failed to read script configuration file ; Unable to test document path: web-studio/api/regions/regions-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/sites.get.desc.xml due to error: 00250067 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/sites.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/spaces.get.desc.xml due to error: 00250068 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/spaces.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/webapp.get.desc.xml due to error: 00250069 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/webapp.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/site/create.get.desc.xml due to error: 00250070 Failed to read script configuration file ; Unable to test document path: web-studio/api/site/create.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/absolutelayout/region/delete/deleteregion-get.get.desc.xml due to error: 00250071 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/absolutelayout/region/delete/deleteregion-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/panel/delete/deletepanel-get.get.desc.xml due to error: 00250072 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/panel/delete/deletepanel-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/region/delete/deleteregion-get.get.desc.xml due to error: 00250073 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/region/delete/deleteregion-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,312 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/row/delete/deleterow-get.get.desc.xml due to error: 00250074 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/row/delete/deleterow-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/incontext/components.get.desc.xml due to error: 00250075 Failed to read script configuration file ; Unable to test document path: web-studio/incontext/components.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/comptree.get.desc.xml due to error: 00250076 Failed to read script configuration file ; Unable to test document path: web-studio/trees/comptree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/contenttree.get.desc.xml due to error: 00250077 Failed to read script configuration file ; Unable to test document path: web-studio/trees/contenttree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/navtree.get.desc.xml due to error: 00250078 Failed to read script configuration file ; Unable to test document path: web-studio/trees/navtree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/sitestree.get.desc.xml due to error: 00250079 Failed to read script configuration file ; Unable to test document path: web-studio/trees/sitestree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/spacestree.get.desc.xml due to error: 00250080 Failed to read script configuration file ; Unable to test document path: web-studio/trees/spacestree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/content/associations/add/wizard.get.desc.xml due to error: 00250081 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/content/associations/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/content/associations/remove/wizard.get.desc.xml due to error: 00250082 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/content/associations/remove/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/editregion/wizard.get.desc.xml due to error: 00250083 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/editregion/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/add/wizard.get.desc.xml due to error: 00250084 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/copy/wizard.get.desc.xml due to error: 00250085 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/copy/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/delete/wizard.get.desc.xml due to error: 00250086 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/delete/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/edit/wizard.get.desc.xml due to error: 00250087 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/edit/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/page/associations/add/wizard.get.desc.xml due to error: 00250088 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/page/associations/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/page/associations/remove/wizard.get.desc.xml due to error: 00250089 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/page/associations/remove/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/regionmanager/absoluteposition/wizard.get.desc.xml due to error: 00250090 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/regionmanager/absoluteposition/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/regionmanager/tablelayout/wizard.get.desc.xml due to error: 00250091 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/regionmanager/tablelayout/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/removecomponent/wizard.get.desc.xml due to error: 00250092 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/removecomponent/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/site/config/siteconfig.get.desc.xml due to error: 00250093 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/site/config/siteconfig.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/add/wizard.get.desc.xml due to error: 00250094 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/copy/wizard.get.desc.xml due to error: 00250095 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/copy/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,328 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/delete/wizard.get.desc.xml due to error: 00250096 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/delete/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,343 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/edit/wizard.get.desc.xml due to error: 00250097 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/edit/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,343 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/tablelayoutmanager/wizard.get.desc.xml due to error: 00250098 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/tablelayoutmanager/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:18:04,421 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
14:18:05,015 ERROR [org.alfresco.web.scripts.AbstractRuntime] Exception from executeScript - redirecting to status template error: 00250003 Login failed
org.alfresco.web.scripts.WebScriptException: 00250003 Login failed
   at org.alfresco.repo.web.scripts.bean.AbstractLoginBean.login(AbstractLoginBean.java:81)
   at org.alfresco.repo.web.scripts.bean.LoginPost.executeImpl(LoginPost.java:79)
   at org.alfresco.web.scripts.DeclarativeWebScript.executeImpl(DeclarativeWebScript.java:223)
   at org.alfresco.web.scripts.DeclarativeWebScript.execute(DeclarativeWebScript.java:70)
   at org.alfresco.repo.web.scripts.RepositoryContainer$2.execute(RepositoryContainer.java:372)
   at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransactionHelper.java:327)
   at org.alfresco.repo.web.scripts.RepositoryContainer.transactionedExecute(RepositoryContainer.java:422)
   at org.alfresco.repo.web.scripts.RepositoryContainer.transactionedExecuteAs(RepositoryContainer.java:439)
   at org.alfresco.repo.web.scripts.RepositoryContainer.executeScript(RepositoryContainer.java:262)
   at org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:306)
   at org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:183)
   at org.alfresco.web.scripts.servlet.WebScriptServlet.service(WebScriptServlet.java:122)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
   at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
   at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
   at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
   at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
   at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
   at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
   at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
   at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
   at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
   at java.lang.Thread.run(Thread.java:619)
14:20:02,171 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Closing org.alfresco.config.JBossEnabledWebApplicationContext@190189: display name [Root WebApplicationContext]; startup date [Mon Jan 25 14:14:56 CET 2010]; root of context hierarchy
14:20:02,703 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'wcm_deployment_receiver' subsystem, ID: [wcm_deployment_receiver, default]
14:20:02,703 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'wcm_deployment_receiver' subsystem, ID: [wcm_deployment_receiver, default]
14:20:02,718 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'Synchronization' subsystem, ID: [Synchronization, default]
14:20:02,718 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'Synchronization' subsystem, ID: [Synchronization, default]
14:20:02,718 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'fileServers' subsystem, ID: [fileServers, default]
14:20:04,734 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'fileServers' subsystem, ID: [fileServers, default]
14:20:04,734 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'imap' subsystem, ID: [imap, default]
14:20:04,734 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'imap' subsystem, ID: [imap, default]
14:20:04,765 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'thirdparty' subsystem, ID: [thirdparty, default]
14:20:04,765 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'thirdparty' subsystem, ID: [thirdparty, default]
14:20:04,781 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1]
14:20:04,781 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1]
14:20:04,796 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopping 'sysAdmin' subsystem, ID: [sysAdmin, default]
14:20:04,796 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Stopped 'sysAdmin' subsystem, ID: [sysAdmin, default]
14:21:17,843 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from class path resource [alfresco/repository.properties]
14:21:17,859 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from class path resource [alfresco/domain/transaction.properties]
14:21:17,859 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from URL [file:/C:/Alfresco/tomcat/shared/classes/alfresco-global.properties]
14:21:17,953 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:40,062 INFO  [org.alfresco.repo.domain.schema.SchemaBootstrap] Schema managed by database dialect org.hibernate.dialect.MySQLInnoDBDialect.
14:21:42,578 INFO  [org.alfresco.repo.domain.schema.SchemaBootstrap] No changes were made to the schema.
14:21:43,515 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'sysAdmin' subsystem, ID: [sysAdmin, default]
14:21:43,546 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:43,546 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'sysAdmin' subsystem, ID: [sysAdmin, default] complete
14:21:45,953 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'thirdparty' subsystem, ID: [thirdparty, default]
14:21:46,000 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:47,812 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'thirdparty' subsystem, ID: [thirdparty, default] complete
14:21:47,906 INFO  [org.alfresco.repo.admin.ConfigurationChecker] The Alfresco root data directory ('dir.root') is: C:\Alfresco\alf_data
14:21:47,968 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] Checking for patches to apply …
14:21:48,296 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] No patches were required.
14:21:48,312 INFO  [org.alfresco.repo.module.ModuleServiceImpl] Found 1 module(s).
14:21:48,437 INFO  [org.alfresco.repo.module.ModuleServiceImpl] Starting module 'org.alfresco.module.vti' version 1.2.
14:21:48,515 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'fileServers' subsystem, ID: [fileServers, default]
14:21:48,531 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:48,734 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1]
14:21:48,750 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:48,843 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1] complete
14:21:48,890 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'fileServers' subsystem, ID: [fileServers, default] complete
14:21:48,890 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'imap' subsystem, ID: [imap, default]
14:21:48,953 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:49,093 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'imap' subsystem, ID: [imap, default] complete
14:21:49,093 INFO  [org.alfresco.repo.usage.UserUsageTrackingComponent] Enabled - calculate missing user usages …
14:21:49,093 INFO  [org.alfresco.repo.usage.UserUsageTrackingComponent] Found 0 users to recalculate
14:21:49,093 INFO  [org.alfresco.repo.usage.UserUsageTrackingComponent] … calculated missing usages for 0 users
14:21:49,093 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'Synchronization' subsystem, ID: [Synchronization, default]
14:21:49,109 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:21:49,156 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'Synchronization' subsystem, ID: [Synchronization, default] complete
14:21:49,312 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - v1.6.0_16-b01; maximum heap size 493,063MB
14:21:49,312 WARN  [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - WARNING - maximum heap size 493,063MB is less than recommended 512MB
14:21:49,312 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Community): Current version 3.2.0 (r2 2440) schema 3300 - Originally installed version 3.2.0 (r2 2440) schema 3300
14:21:49,906 INFO  [org.alfresco.module.vti.VtiServer] Vti server started successfully on port: 7070
14:22:07,421 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Starting 'wcm_deployment_receiver' subsystem, ID: [wcm_deployment_receiver, default]
14:22:07,453 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
14:22:07,640 INFO  [org.alfresco.repo.management.subsystems.ChildApplicationContextFactory] Startup of 'wcm_deployment_receiver' subsystem, ID: [wcm_deployment_receiver, default] complete
14:22:09,171 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Refreshing org.alfresco.config.JBossEnabledWebApplicationContext@16f000e: display name [Root WebApplicationContext]; startup date [Mon Jan 25 14:22:09 CET 2010]; root of context hierarchy
14:22:09,437 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Bean factory for application context [org.alfresco.config.JBossEnabledWebApplicationContext@16f000e]: org.springframework.beans.factory.support.DefaultListableBeanFactory@f17772
14:22:10,406 INFO  [org.alfresco.web.scripts.DeclarativeRegistry] Registered 22 Web Scripts (+0 failed), 24 URLs
14:22:10,406 INFO  [org.alfresco.web.scripts.AbstractRuntimeContainer] Initialised Presentation Web Script Container (in 199.53877ms)
14:22:10,515 INFO  [org.alfresco.web.scripts.DeclarativeRegistry] Registered 40 Web Scripts (+0 failed), 42 URLs
14:22:10,531 INFO  [org.alfresco.web.scripts.AbstractRuntimeContainer] Initialised WebFramework Web Script Container (in 108.02294ms)
14:22:10,578 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
14:22:13,046 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/edit.get.desc.xml due to error: 00250000 Failed to read script configuration file ; Unable to test document path: components/common/audio/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/edit.post.desc.xml due to error: 00250001 Failed to read script configuration file ; Unable to test document path: components/common/audio/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/view.get.desc.xml due to error: 00250002 Failed to read script configuration file ; Unable to test document path: components/common/audio/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/edit.get.desc.xml due to error: 00250003 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/edit.post.desc.xml due to error: 00250004 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/view.get.desc.xml due to error: 00250005 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/edit.get.desc.xml due to error: 00250006 Failed to read script configuration file ; Unable to test document path: components/common/display-items/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/edit.post.desc.xml due to error: 00250007 Failed to read script configuration file ; Unable to test document path: components/common/display-items/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/view.get.desc.xml due to error: 00250008 Failed to read script configuration file ; Unable to test document path: components/common/display-items/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/edit.get.desc.xml due to error: 00250009 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/edit.post.desc.xml due to error: 00250010 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/view.get.desc.xml due to error: 00250011 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/edit.get.desc.xml due to error: 00250012 Failed to read script configuration file ; Unable to test document path: components/common/html/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/edit.post.desc.xml due to error: 00250013 Failed to read script configuration file ; Unable to test document path: components/common/html/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/view.get.desc.xml due to error: 00250014 Failed to read script configuration file ; Unable to test document path: components/common/html/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/edit.get.desc.xml due to error: 00250015 Failed to read script configuration file ; Unable to test document path: components/common/image/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/edit.post.desc.xml due to error: 00250016 Failed to read script configuration file ; Unable to test document path: components/common/image/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/view.get.desc.xml due to error: 00250017 Failed to read script configuration file ; Unable to test document path: components/common/image/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/edit.get.desc.xml due to error: 00250018 Failed to read script configuration file ; Unable to test document path: components/common/include/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/edit.post.desc.xml due to error: 00250019 Failed to read script configuration file ; Unable to test document path: components/common/include/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/view.get.desc.xml due to error: 00250020 Failed to read script configuration file ; Unable to test document path: components/common/include/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/edit.get.desc.xml due to error: 00250021 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/edit.post.desc.xml due to error: 00250022 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/view.get.desc.xml due to error: 00250023 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/edit.get.desc.xml due to error: 00250024 Failed to read script configuration file ; Unable to test document path: components/common/markup/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/edit.post.desc.xml due to error: 00250025 Failed to read script configuration file ; Unable to test document path: components/common/markup/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/view.get.desc.xml due to error: 00250026 Failed to read script configuration file ; Unable to test document path: components/common/markup/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/edit.get.desc.xml due to error: 00250027 Failed to read script configuration file ; Unable to test document path: components/common/navigation/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/edit.post.desc.xml due to error: 00250028 Failed to read script configuration file ; Unable to test document path: components/common/navigation/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,640 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/view.get.desc.xml due to error: 00250029 Failed to read script configuration file ; Unable to test document path: components/common/navigation/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/edit.get.desc.xml due to error: 00250030 Failed to read script configuration file ; Unable to test document path: components/common/video/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/edit.post.desc.xml due to error: 00250031 Failed to read script configuration file ; Unable to test document path: components/common/video/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/view.get.desc.xml due to error: 00250032 Failed to read script configuration file ; Unable to test document path: components/common/video/view.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/index.get.desc.xml due to error: 00250033 Failed to read script configuration file ; Unable to test document path: org/alfresco/index.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/index.post.desc.xml due to error: 00250034 Failed to read script configuration file ; Unable to test document path: org/alfresco/index.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexall.get.desc.xml due to error: 00250035 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexall.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexfailures.get.desc.xml due to error: 00250036 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexfailures.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexfamily.get.desc.xml due to error: 00250037 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexfamily.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexlifecycle.get.desc.xml due to error: 00250038 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexlifecycle.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexpackage.get.desc.xml due to error: 00250039 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexpackage.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,656 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexuri.get.desc.xml due to error: 00250040 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexuri.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/jsdebugger.get.desc.xml due to error: 00250041 Failed to read script configuration file ; Unable to test document path: org/alfresco/jsdebugger.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/jsdebugger.post.desc.xml due to error: 00250042 Failed to read script configuration file ; Unable to test document path: org/alfresco/jsdebugger.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptdescription.get.desc.xml due to error: 00250043 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptdescription.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptdump.get.desc.xml due to error: 00250044 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptdump.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptinstall.get.desc.xml due to error: 00250045 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptinstall.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptinstall.post.desc.xml due to error: 00250046 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptinstall.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/atomentry.post.desc.xml due to error: 00250047 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/atomentry.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/bogustest.post.desc.xml due to error: 00250048 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/bogustest.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/encodedsubmit.post.desc.xml due to error: 00250049 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/encodedsubmit.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/exception.get.desc.xml due to error: 00250050 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/exception.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/jsonecho.post.desc.xml due to error: 00250051 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/jsonecho.post.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/requestbody.put.desc.xml due to error: 00250052 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/requestbody.put.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/runas.get.desc.xml due to error: 00250053 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/runas.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/web/messages.get.desc.xml due to error: 00250054 Failed to read script configuration file ; Unable to test document path: org/alfresco/web/messages.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/content/associations/associations.get.desc.xml due to error: 00250055 Failed to read script configuration file ; Unable to test document path: web-studio/api/content/associations/associations.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/context/setcontext.get.desc.xml due to error: 00250056 Failed to read script configuration file ; Unable to test document path: web-studio/api/context/setcontext.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/importer/importer.get.desc.xml due to error: 00250057 Failed to read script configuration file ; Unable to test document path: web-studio/api/importer/importer.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/importer/statuscheck.get.desc.xml due to error: 00250058 Failed to read script configuration file ; Unable to test document path: web-studio/api/importer/statuscheck.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/login/login.get.desc.xml due to error: 00250059 Failed to read script configuration file ; Unable to test document path: web-studio/api/login/login.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/get.get.desc.xml due to error: 00250060 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/list.get.desc.xml due to error: 00250061 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/list.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/put.get.desc.xml due to error: 00250062 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/put.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/page/associations/associations.get.desc.xml due to error: 00250063 Failed to read script configuration file ; Unable to test document path: web-studio/api/page/associations/associations.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,671 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/prebuilt/list.get.desc.xml due to error: 00250064 Failed to read script configuration file ; Unable to test document path: web-studio/api/prebuilt/list.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/region/region-get.get.desc.xml due to error: 00250065 Failed to read script configuration file ; Unable to test document path: web-studio/api/region/region-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/regions/regions-get.get.desc.xml due to error: 00250066 Failed to read script configuration file ; Unable to test document path: web-studio/api/regions/regions-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/sites.get.desc.xml due to error: 00250067 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/sites.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/spaces.get.desc.xml due to error: 00250068 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/spaces.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/webapp.get.desc.xml due to error: 00250069 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/webapp.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/site/create.get.desc.xml due to error: 00250070 Failed to read script configuration file ; Unable to test document path: web-studio/api/site/create.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/absolutelayout/region/delete/deleteregion-get.get.desc.xml due to error: 00250071 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/absolutelayout/region/delete/deleteregion-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/panel/delete/deletepanel-get.get.desc.xml due to error: 00250072 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/panel/delete/deletepanel-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/region/delete/deleteregion-get.get.desc.xml due to error: 00250073 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/region/delete/deleteregion-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/row/delete/deleterow-get.get.desc.xml due to error: 00250074 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/row/delete/deleterow-get.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/incontext/components.get.desc.xml due to error: 00250075 Failed to read script configuration file ; Unable to test document path: web-studio/incontext/components.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,687 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/comptree.get.desc.xml due to error: 00250076 Failed to read script configuration file ; Unable to test document path: web-studio/trees/comptree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/contenttree.get.desc.xml due to error: 00250077 Failed to read script configuration file ; Unable to test document path: web-studio/trees/contenttree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/navtree.get.desc.xml due to error: 00250078 Failed to read script configuration file ; Unable to test document path: web-studio/trees/navtree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/sitestree.get.desc.xml due to error: 00250079 Failed to read script configuration file ; Unable to test document path: web-studio/trees/sitestree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/spacestree.get.desc.xml due to error: 00250080 Failed to read script configuration file ; Unable to test document path: web-studio/trees/spacestree.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/content/associations/add/wizard.get.desc.xml due to error: 00250081 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/content/associations/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/content/associations/remove/wizard.get.desc.xml due to error: 00250082 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/content/associations/remove/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/editregion/wizard.get.desc.xml due to error: 00250083 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/editregion/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/add/wizard.get.desc.xml due to error: 00250084 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/copy/wizard.get.desc.xml due to error: 00250085 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/copy/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/delete/wizard.get.desc.xml due to error: 00250086 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/delete/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,703 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/edit/wizard.get.desc.xml due to error: 00250087 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/edit/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/page/associations/add/wizard.get.desc.xml due to error: 00250088 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/page/associations/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/page/associations/remove/wizard.get.desc.xml due to error: 00250089 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/page/associations/remove/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/regionmanager/absoluteposition/wizard.get.desc.xml due to error: 00250090 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/regionmanager/absoluteposition/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/regionmanager/tablelayout/wizard.get.desc.xml due to error: 00250091 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/regionmanager/tablelayout/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/removecomponent/wizard.get.desc.xml due to error: 00250092 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/removecomponent/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/site/config/siteconfig.get.desc.xml due to error: 00250093 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/site/config/siteconfig.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/add/wizard.get.desc.xml due to error: 00250094 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/copy/wizard.get.desc.xml due to error: 00250095 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/copy/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/delete/wizard.get.desc.xml due to error: 00250096 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/delete/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/edit/wizard.get.desc.xml due to error: 00250097 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/edit/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,718 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/tablelayoutmanager/wizard.get.desc.xml due to error: 00250098 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/tablelayoutmanager/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
14:25:16,796 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
14:25:17,343 ERROR [org.alfresco.web.scripts.AbstractRuntime] Exception from executeScript - redirecting to status template error: 00250003 Login failed
org.alfresco.web.scripts.WebScriptException: 00250003 Login failed
   at org.alfresco.repo.web.scripts.bean.AbstractLoginBean.login(AbstractLoginBean.java:81)
   at org.alfresco.repo.web.scripts.bean.LoginPost.executeImpl(LoginPost.java:79)
   at org.alfresco.web.scripts.DeclarativeWebScript.executeImpl(DeclarativeWebScript.java:223)
   at org.alfresco.web.scripts.DeclarativeWebScript.execute(DeclarativeWebScript.java:70)
   at org.alfresco.repo.web.scripts.RepositoryContainer$2.execute(RepositoryContainer.java:372)
   at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransactionHelper.java:327)
   at org.alfresco.repo.web.scripts.RepositoryContainer.transactionedExecute(RepositoryContainer.java:422)
   at org.alfresco.repo.web.scripts.RepositoryContainer.transactionedExecuteAs(RepositoryContainer.java:439)
   at org.alfresco.repo.web.scripts.RepositoryContainer.executeScript(RepositoryContainer.java:262)
   at org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:306)
   at org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:183)
   at org.alfresco.web.scripts.servlet.WebScriptServlet.service(WebScriptServlet.java:122)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
   at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
   at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
   at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
   at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
   at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
   at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
   at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
   at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
   at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
   at java.lang.Thread.run(Thread.java:619)
moterosk
Member II

Re: WebScript Informe

Ya está solucionado con un par de modificaciones sobre lso propiedades de los espacios, estaban creados sin rellenar ninguno de los campos por los que se querían hacer los xml.