Menu

Añadir botón a la barra de herramentas

2014-08-29
2021-02-04
  • Javier Pereira

    Javier Pereira - 2014-08-29

    Buenas tardes,

    me gustaría añadir un botón que llamara a un jsp en la barra de herramientas donde se muestran los botones de Nuevo, Generar Pdf, Generar Excel, Informes..

    ¿Es posible?

    Mi versión de OpenXava es 5.0.1

    Muchas gracias!

     
  • Juanjo Vega

    Juanjo Vega - 2014-08-31

    Si que se puede, tienes que añadir una acción para ello.

    Te pongo lo que yo hago en una aplicación para añadir una acción que genera un reporte en excel.

    En el archivo controllers.xml añade algo así:

    <controller name="Event">
        <extends controller="Typical" />
        <action name="exportToExcel" mode="detail" hidden="false" class="org.openxava.laoficina.actions.GenerateEventReport" image="images/excel.gif" keystroke="F10" />
    </controller>
    

    Con eso tendrás la barra de herramientas (por heredar de "Typical") y además un botón nuevo con el nombre que hayas puesto en tu acción y el icono que indiques.

    Después implementas tu acción:

    import org.openxava.actions.*;
    
    public class GenerateEventReport extends ViewBaseAction implements
        IForwardAction {
    
    @Override
    public void execute() throws Exception {
        getRequest().getSession().setAttribute(PARAMETERS.EVENT,
                getView().getEntity());
    }
    
    @Override
    public String getForwardURI() {
        return "/getEventReport";
    }
    
    @Override
    public boolean inNewWindow() {
        return false;
    }
    }
    

    En "execute()" implementas el comportamiento de la acción, en mi caso estoy guardando en la sesión la entidad actual.

    En "getForwardURI()" devuelves la url donde vas a redireccionar el navegador. En tu caso sería el jsp que dices.

    Esto es un ejemplo muy sencillo y yo se bastante poco, pero espero que te sirva para empezar.

    Suerte.

     
    • Javier Pereira

      Javier Pereira - 2014-08-31

      Muchas gracias!! me ha sido de gran ayuda!

      un saludo,

      JPereira

       
  • jose luis balmaseda

    Buenas tardes.

    Estoy intentado realizar un botón siguiendo el ejemplo y me aparece el siguiente mensaje:

    PARAMETERS.EVENT cannot be resolved to a variable

    Un saludo.

     
  • Javier Paniza

    Javier Paniza - 2021-02-01

    Hola José Luis:

    Pon aquí la definición de tu controlador en controladores.xml, el código fuente completo de tu acción y la traza de error que se produce (en el servidor).


    Ayuda a otros en este foro como yo te ayudo a ti.

     
    • jose luis balmaseda

      Buenos dias.

      Controladores.xml

      <controlador nombre="NombramientoDiario"> <!-- El mismo nombre de la
      

      entidad-->
      <hereda-de controlador="Typical"> </hereda-de>

          <accion nombre="newNombramiento"
              modo="detail"
              confirmar="true"
              clase="com.tuempresa.pruebamysql.acciones.GenerarNombramiento"
              icono="new"
              disponible-en-nuevo="false"
              atajo-de-teclado="Control N"/>
      </controlador>
      

      package com.tuempresa.pruebamysql.acciones;

      import org.openxava.actions.*;

      public class GenerarNombramiento extends ViewBaseAction { // ViewBaseAction
      tiene getView(), addMessage(), etc

      public void execute() throws Exception { // La lógica de la acción
      addMessage( // Añade un mensaje para mostrar al usuario
      "¡No te preocupes! Sólo he borrado la pantalla");
      getView().clear(); // getView() devuelve el objeto xava_view
      // clear() borra los datos en la interfaz de usuario
      }
      }

      No hay error en la traza del servidor.

      Un saludo.

      El lun, 1 feb 2021 a las 14:24, Javier Paniza ( javierpaniza@users.sourceforge.net) escribió:

      Hola José Luis:

      Pon aquí la definición de tu controlador en controladores.xml, el código
      fuente completo de tu acción y la traza de error que se produce (en el
      servidor).


      Ayuda a otros en este foro como yo te ayudo a ti.

      Añadir botón a la barra de herramentas
      https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97


      Sent from sourceforge.net because you indicated interest in
      https://sourceforge.net/p/openxava/discussion/437013/

      To unsubscribe from further messages, please visit
      https://sourceforge.net/auth/subscriptions/

       
      • jose luis balmaseda

        perdona, acabo de ver esto:

        [Server@3eb08c27]: [Thread[Thread-0,5,main]]: setSilent(true)
        [Server@3eb08c27]: Initiating startup sequence...
        [Server@3eb08c27]: Server socket opened successfully in 9 ms.
        Iniciando aplicación...
        [Server@3eb08c27]: Database [index=0, id=0, db=file:data/PruebaMySQLDB,
        alias=]
        opened sucessfully in 520 ms.
        [Server@3eb08c27]: Startup sequence completed in 532 ms.
        [Server@3eb08c27]: 2021-02-01 14:33:35.965 HSQLDB server 2.3.2 is online on
        port 1666
        [Server@3eb08c27]: To close normally, connect and execute SHUTDOWN SQL
        [Server@3eb08c27]: From command line, use [Ctrl]+[C] to abort abruptly
        feb. 01, 2021 2:33:36 P. M. org.apache.coyote.AbstractProtocol init
        INFORMACIÓN: Initializing ProtocolHandler ["http-nio-8080"]
        feb. 01, 2021 2:33:36 P. M. org.apache.catalina.core.StandardService
        startInternal
        INFORMACIÓN: Starting service [Tomcat]
        feb. 01, 2021 2:33:36 P. M. org.apache.catalina.core.StandardEngine
        startInternal
        INFORMACIÓN: Starting Servlet engine: [Apache Tomcat/9.0.22]
        feb. 01, 2021 2:33:36 P. M. org.apache.catalina.startup.ContextConfig
        getDefaultWebXmlFragment
        INFORMACIÓN: No global web.xml found
        feb. 01, 2021 2:33:41 P. M. org.apache.jasper.servlet.TldScanner scanJars
        INFORMACIÓN: At least one JAR was scanned for TLDs yet contained no TLDs.
        Enable debug logging for this logger for a complete list of JARs that were
        scanned but no TLDs were found in them. Skipping unneeded JARs during
        scanning can improve startup time and JSP compilation time.
        feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
        INFORMACIÓN: DWR Version 2.0.10 starting.
        feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
        INFORMACIÓN: - Servlet Engine: Apache Tomcat/9.0.22
        feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
        INFORMACIÓN: - Java Version: 11.0.7
        feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
        INFORMACIÓN: - Java Vendor: Azul Systems, Inc.
        feb. 01, 2021 2:33:41 P. M.
        org.directwebremoting.dwrp.DefaultConverterManager info
        INFORMACIÓN: Probably not an issue: org.jdom.Document is not available so
        the jdom converter will not load. This is only a problem if you wanted to
        use it.
        feb. 01, 2021 2:33:41 P. M.
        org.directwebremoting.dwrp.DefaultConverterManager info
        INFORMACIÓN: Probably not an issue: org.jdom.Element is not available so
        the jdom converter will not load. This is only a problem if you wanted to
        use it.
        feb. 01, 2021 2:33:41 P. M. org.apache.coyote.AbstractProtocol start
        INFORMACIÓN: Starting ProtocolHandler ["http-nio-8080"]
        Aplicación iniciada. Ve a http://localhost:8080/PruebaMySQL
        feb. 01, 2021 2:33:49 P. M. org.hibernate.jpa.internal.util.LogHelper
        logPersistenceUnitInformation
        INFO: HHH000204: Processing PersistenceUnitInfo
        name: default
        ...

        feb. 01, 2021 2:33:50 P. M. org.hibernate.Version logVersion
        INFO: HHH000412: Hibernate Core {5.3.9.Final}
        feb. 01, 2021 2:33:50 P. M. org.hibernate.cfg.Environment <clinit>
        INFO: HHH000206: hibernate.properties not found
        feb. 01, 2021 2:33:50 P. M.
        org.hibernate.annotations.common.reflection.java.JavaReflectionManager
        <clinit>
        INFO: HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
        WARNING: An illegal reflective access operation has occurred
        WARNING: Illegal reflective access by
        com.sun.xml.bind.v2.runtime.reflect.opt.Injector
        (file:/C:/openxava0000/openxava-6.4.2/workspace/PruebaMySQL/web/WEB-INF/lib/jaxb-impl.jar)
        to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
        WARNING: Please consider reporting this to the maintainers of
        com.sun.xml.bind.v2.runtime.reflect.opt.Injector
        WARNING: Use --illegal-access=warn to enable warnings of further illegal
        reflective access operations
        WARNING: All illegal access operations will be denied in a future release
        Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver'. The driver is automatically registered
        via the SPI and manual loading of the driver class is generally unnecessary.
        feb. 01, 2021 2:33:52 P. M. org.hibernate.dialect.Dialect <init>
        INFO: HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
        feb. 01, 2021 2:33:53 P. M.
        org.hibernate.envers.boot.internal.EnversServiceImpl configure
        INFO: Envers integration enabled? : true
        feb. 01, 2021 2:33:53 P. M. org.hibernate.id.UUIDHexGenerator <init>
        WARN: HHH000409: Using org.hibernate.id.UUIDHexGenerator which does not
        generate IETF RFC 4122 compliant UUID values; consider using
        org.hibernate.id.UUIDGenerator instead
        feb. 01, 2021 2:33:53 P. M. org.hibernate.validator.internal.util.Version
        <clinit>
        INFO: HV000001: Hibernate Validator 6.0.15.Final
        feb. 01, 2021 2:33:55 P. M. org.openxava.controller.ModuleManager <clinit>
        INFORMACIÓN: OpenXava 6.4.2 (2020-11-9)
        feb. 01, 2021 2:33:57 P. M.
        org.openxava.controller.meta.xmlparse.ControllersParser createControllers
        ADVERTENCIA: ¡ADVERTENCIA! Se ha cargado el controlador NombramientoDiario
        más de una vez
        feb. 01, 2021 2:33:57 P. M. org.openxava.controller.ModuleManager log
        DETALLADO: 0:0:0:0:0:0:0:1 null MODULE:SignIn
        feb. 01, 2021 2:33:58 P. M. org.openxava.web.dwr.DWRBase request
        DETALLADO: Tiempo petición=295 ms
        feb. 01, 2021 2:34:02 P. M. org.openxava.controller.ModuleManager log
        DETALLADO: 0:0:0:0:0:0:0:1 admin SignIn.signIn 19ms
        feb. 01, 2021 2:34:02 P. M. org.openxava.web.dwr.DWRBase request
        DETALLADO: Tiempo petición=21 ms
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id NombramientoDiario
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id
        CalendarioAnualConductor
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id Conductor
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id PrevisionDiaria
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id TuPrimeraEntidad
        feb. 01, 2021 2:34:02 P. M. org.openxava.controller.ModuleManager log
        DETALLADO: 0:0:0:0:0:0:0:1 admin MODULE:NombramientoDiario
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id newNombramiento
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id linea
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id horario
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id autobus
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id conductor
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id nombreConductor
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id tipoNombramiento
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id anclada
        feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id lineaNombramiento
        feb. 01, 2021 2:34:02 P. M.
        org.hibernate.hql.internal.QueryTranslatorFactoryInitiator initiateService
        INFO: HHH000397: Using ASTQueryTranslatorFactory
        feb. 01, 2021 2:34:03 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
        DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT
        e.nombramientoDiario, e.fecha, e.linea, e.horario, e.autobus, e.conductor,
        e.nombreConductor, e.tipoNombramiento, e.anclada, e.lineaNombramiento from
        NombramientoDiario e con argumentos
        feb. 01, 2021 2:34:03 P. M. org.openxava.tab.impl.TableModelBean getRow
        DETALLADO: nextChunk=283
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id linea
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id horario
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id autobus
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id conductor
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id nombreConductor
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id tipoNombramiento
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id anclada
        feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id lineaNombramiento
        feb. 01, 2021 2:34:03 P. M. org.openxava.web.dwr.DWRBase request
        DETALLADO: Tiempo petición=532 ms
        feb. 01, 2021 2:34:05 P. M. org.openxava.controller.ModuleManager log
        DETALLADO: 0:0:0:0:0:0:0:1 admin MODULE:CalendarioAnualConductor
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id conductor
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id linea
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id turno
        feb. 01, 2021 2:34:06 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
        DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT e.id, e.conductor,
        e.fecha, e.linea, e.turno, e.observaciones from CalendarioAnualConductor e
        con argumentos
        feb. 01, 2021 2:34:06 P. M. org.openxava.tab.impl.TableModelBean getRow
        DETALLADO: nextChunk=245
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id Cards
        feb. 01, 2021 2:34:06 P. M. org.openxava.tab.Tab translateCondition
        GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
        org.openxava.util.ElementNotFoundException: No existe la colección nombre
        en CalendarioAnualConductor
        at org.openxava.model.meta.MetaModel.getMetaCollection(Unknown Source)
        at org.openxava.model.meta.MetaModel.getMetaProperty(Unknown Source)
        at
        org.openxava.tab.Tab$Configuration.getMetaPropertiesNotCalculated(Unknown
        Source)
        at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
        at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
        at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:217)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
        at
        org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:580)
        at
        org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:516)
        at
        org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:900)
        at org.apache.jsp.xava.core_jsp._jspService(core_jsp.java:323)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
        at
        org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
        at
        org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
        at
        org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.fillResult(Unknown Source)
        at org.openxava.web.dwr.Module.request(Unknown Source)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
        Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
        Source)
        at
        java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
        Source)
        at java.base/java.lang.reflect.Method.invoke(Unknown Source)
        at
        org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
        at
        org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
        at
        org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
        at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
        at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
        at
        org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
        at
        org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
        at
        org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
        at
        org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
        at
        org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
        at
        org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
        at
        org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
        at
        org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
        at
        org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
        at
        org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
        at
        org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
        Source)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
        Source)
        at
        org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
        at java.base/java.lang.Thread.run(Unknown Source)</clinit></clinit></init></init></clinit></clinit>

        feb. 01, 2021 2:34:06 P. M. org.openxava.tab.Tab translateCondition
        GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
        java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
        at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
        at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
        Source)
        at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
        at java.base/java.util.Objects.checkIndex(Unknown Source)
        at java.base/java.util.ArrayList.get(Unknown Source)
        at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
        at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
        at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:225)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
        at
        org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:580)
        at
        org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:516)
        at
        org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:900)
        at org.apache.jsp.xava.core_jsp._jspService(core_jsp.java:323)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
        at
        org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
        at
        org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
        at
        org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.fillResult(Unknown Source)
        at org.openxava.web.dwr.Module.request(Unknown Source)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
        Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
        Source)
        at
        java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
        Source)
        at java.base/java.lang.reflect.Method.invoke(Unknown Source)
        at
        org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
        at
        org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
        at
        org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
        at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
        at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
        at
        org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
        at
        org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
        at
        org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
        at
        org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
        at
        org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
        at
        org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
        at
        org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
        at
        org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
        at
        org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
        at
        org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
        at
        org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
        Source)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
        Source)
        at
        org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
        at java.base/java.lang.Thread.run(Unknown Source)

        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id conductor
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id linea
        feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
        ADVERTENCIA: Imposible internacionalizar elemento con id turno
        feb. 01, 2021 2:34:07 P. M. org.openxava.web.dwr.DWRBase request
        DETALLADO: Tiempo petición=1258 ms
        feb. 01, 2021 2:34:16 P. M. org.openxava.controller.ModuleManager log
        DETALLADO: 0:0:0:0:0:0:0:1 admin List.filter 50ms
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.tab.Tab translateCondition
        GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
        java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
        at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
        at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
        Source)
        at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
        at java.base/java.util.Objects.checkIndex(Unknown Source)
        at java.base/java.util.ArrayList.get(Unknown Source)
        at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
        at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
        at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:217)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
        at
        org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
        at
        org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
        at
        org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.fillResult(Unknown Source)
        at org.openxava.web.dwr.Module.request(Unknown Source)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
        Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
        Source)
        at
        java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
        Source)
        at java.base/java.lang.reflect.Method.invoke(Unknown Source)
        at
        org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
        at
        org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
        at
        org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
        at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
        at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
        at
        org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
        at
        org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
        at
        org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
        at
        org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
        at
        org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
        at
        org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
        at
        org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
        at
        org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
        at
        org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
        at
        org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
        at
        org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
        Source)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
        Source)
        at
        org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
        at java.base/java.lang.Thread.run(Unknown Source)

        feb. 01, 2021 2:34:16 P. M. org.openxava.tab.Tab translateCondition
        GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
        java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
        at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
        at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
        Source)
        at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
        at java.base/java.util.Objects.checkIndex(Unknown Source)
        at java.base/java.util.ArrayList.get(Unknown Source)
        at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
        at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
        at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:225)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
        at
        org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
        at
        org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
        at
        org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
        at org.openxava.web.dwr.Module.fillResult(Unknown Source)
        at org.openxava.web.dwr.Module.request(Unknown Source)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
        Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
        Source)
        at
        java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
        Source)
        at java.base/java.lang.reflect.Method.invoke(Unknown Source)
        at
        org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
        at
        org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
        at
        org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
        at
        org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
        at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
        at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
        at
        org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
        at
        org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
        at
        org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
        at
        org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
        at
        org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
        at
        org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
        at
        org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
        at
        org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
        at
        org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
        at
        org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
        at
        org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
        at
        org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
        at
        org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
        at
        org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
        Source)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
        Source)
        at
        org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
        at java.base/java.lang.Thread.run(Unknown Source)

        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
        ADVERTENCIA: Impossible to translate element with id and
        feb. 01, 2021 2:34:16 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
        DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT e.id, e.conductor,
        e.fecha, e.linea, e.turno, e.observaciones from CalendarioAnualConductor e
        WHERE e.fecha = :p0 con argumentos 2021-02-09
        feb. 01, 2021 2:34:17 P. M. org.openxava.tab.impl.TableModelBean getRow
        DETALLADO: nextChunk=384
        feb. 01, 2021 2:34:17 P. M. org.openxava.web.dwr.DWRBase request
        DETALLADO: Tiempo petición=1140 ms

        El lun, 1 feb 2021 a las 14:37, jose luis balmaseda franco ( joseluisbalmaseda@gmail.com) escribió:

        Buenos dias.

        Controladores.xml

        <controlador nombre="NombramientoDiario"> <!-- El mismo nombre de la
        

        entidad-->
        <hereda-de controlador="Typical"> </hereda-de>

            <accion nombre="newNombramiento"
                modo="detail"
                confirmar="true"
                clase="com.tuempresa.pruebamysql.acciones.GenerarNombramiento"
                icono="new"
                disponible-en-nuevo="false"
                atajo-de-teclado="Control N"/>
        </controlador>
        

        package com.tuempresa.pruebamysql.acciones;

        import org.openxava.actions.*;

        public class GenerarNombramiento extends ViewBaseAction { //
        ViewBaseAction tiene getView(), addMessage(), etc

        public void execute() throws Exception { // La lógica de la acción
        addMessage( // Añade un mensaje para mostrar al usuario
        "¡No te preocupes! Sólo he borrado la pantalla");
        getView().clear(); // getView() devuelve el objeto xava_view
        // clear() borra los datos en la interfaz de usuario
        }
        }

        No hay error en la traza del servidor.

        Un saludo.

        El lun, 1 feb 2021 a las 14:24, Javier Paniza ( javierpaniza@users.sourceforge.net) escribió:

        Hola José Luis:

        Pon aquí la definición de tu controlador en controladores.xml, el código
        fuente completo de tu acción y la traza de error que se produce (en el
        servidor).


        Ayuda a otros en este foro como yo te ayudo a ti.

        Añadir botón a la barra de herramentas
        https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97


        Sent from sourceforge.net because you indicated interest in
        https://sourceforge.net/p/openxava/discussion/437013/

        To unsubscribe from further messages, please visit
        https://sourceforge.net/auth/subscriptions/

         
        • jose luis balmaseda

          Buenos dias.

          El error mostrado no tiene nada que ver con la generación de nuevos
          botones, viene dado por otra circunstancia y ya está arreglado.

          Un saludo.

          El lun, 1 feb 2021 a las 14:39, jose luis balmaseda ( jlbalmaseda@users.sourceforge.net) escribió:

          perdona, acabo de ver esto:

          [Server@3eb08c27]: [Thread[Thread-0,5,main]]: setSilent(true)
          [Server@3eb08c27]: Initiating startup sequence...
          [Server@3eb08c27]: Server socket opened successfully in 9 ms.
          Iniciando aplicación...
          [Server@3eb08c27]: Database [index=0, id=0, db=file:data/PruebaMySQLDB,
          alias=]
          opened sucessfully in 520 ms.
          [Server@3eb08c27]: Startup sequence completed in 532 ms.
          [Server@3eb08c27]: 2021-02-01 14:33:35.965 HSQLDB server 2.3.2 is online
          on
          port 1666
          [Server@3eb08c27]: To close normally, connect and execute SHUTDOWN SQL
          [Server@3eb08c27]: From command line, use [Ctrl]+[C] to abort abruptly
          feb. 01, 2021 2:33:36 P. M. org.apache.coyote.AbstractProtocol init
          INFORMACIÓN: Initializing ProtocolHandler ["http-nio-8080"]
          feb. 01, 2021 2:33:36 P. M. org.apache.catalina.core.StandardService
          startInternal
          INFORMACIÓN: Starting service [Tomcat]
          feb. 01, 2021 2:33:36 P. M. org.apache.catalina.core.StandardEngine
          startInternal
          INFORMACIÓN: Starting Servlet engine: [Apache Tomcat/9.0.22]
          feb. 01, 2021 2:33:36 P. M. org.apache.catalina.startup.ContextConfig
          getDefaultWebXmlFragment
          INFORMACIÓN: No global web.xml found
          feb. 01, 2021 2:33:41 P. M. org.apache.jasper.servlet.TldScanner scanJars
          INFORMACIÓN: At least one JAR was scanned for TLDs yet contained no TLDs.
          Enable debug logging for this logger for a complete list of JARs that were
          scanned but no TLDs were found in them. Skipping unneeded JARs during
          scanning can improve startup time and JSP compilation time.
          feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
          INFORMACIÓN: DWR Version 2.0.10 starting.
          feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
          INFORMACIÓN: - Servlet Engine: Apache Tomcat/9.0.22
          feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
          INFORMACIÓN: - Java Version: 11.0.7
          feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
          INFORMACIÓN: - Java Vendor: Azul Systems, Inc.
          feb. 01, 2021 2:33:41 P. M.
          org.directwebremoting.dwrp.DefaultConverterManager info
          INFORMACIÓN: Probably not an issue: org.jdom.Document is not available so
          the jdom converter will not load. This is only a problem if you wanted to
          use it.
          feb. 01, 2021 2:33:41 P. M.
          org.directwebremoting.dwrp.DefaultConverterManager info
          INFORMACIÓN: Probably not an issue: org.jdom.Element is not available so
          the jdom converter will not load. This is only a problem if you wanted to
          use it.
          feb. 01, 2021 2:33:41 P. M. org.apache.coyote.AbstractProtocol start
          INFORMACIÓN: Starting ProtocolHandler ["http-nio-8080"]
          Aplicación iniciada. Ve a http://localhost:8080/PruebaMySQL
          feb. 01, 2021 2:33:49 P. M. org.hibernate.jpa.internal.util.LogHelper
          logPersistenceUnitInformation
          INFO: HHH000204: Processing PersistenceUnitInfo
          name: default
          ... https://sourceforge.net
          feb. 01, 2021 2:33:50 P. M. org.hibernate.Version logVersion
          INFO: HHH000412: Hibernate Core {5.3.9.Final}
          feb. 01, 2021 2:33:50 P. M. org.hibernate.cfg.Environment <clinit>
          INFO: HHH000206: hibernate.properties not found
          feb. 01, 2021 2:33:50 P. M.
          org.hibernate.annotations.common.reflection.java.JavaReflectionManager
          <clinit>
          INFO: HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
          WARNING: An illegal reflective access operation has occurred
          WARNING: Illegal reflective access by
          com.sun.xml.bind.v2.runtime.reflect.opt.Injector</clinit></clinit>

          (file:/C:/openxava0000/openxava-6.4.2/workspace/PruebaMySQL/web/WEB-INF/lib/jaxb-impl.jar)
          to method
          java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
          WARNING: Please consider reporting this to the maintainers of
          com.sun.xml.bind.v2.runtime.reflect.opt.Injector
          WARNING: Use --illegal-access=warn to enable warnings of further illegal
          reflective access operations
          WARNING: All illegal access operations will be denied in a future release
          Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver
          class iscom.mysql.cj.jdbc.Driver'. The driver is automatically registered
          via the SPI and manual loading of the driver class is generally
          unnecessary.
          feb. 01, 2021 2:33:52 P. M. org.hibernate.dialect.Dialect <init>
          INFO: HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
          feb. 01, 2021 2:33:53 P. M.
          org.hibernate.envers.boot.internal.EnversServiceImpl configure
          INFO: Envers integration enabled? : true
          feb. 01, 2021 2:33:53 P. M. org.hibernate.id.UUIDHexGenerator <init>
          WARN: HHH000409: Using org.hibernate.id.UUIDHexGenerator which does not
          generate IETF RFC 4122 compliant UUID values; consider using
          org.hibernate.id.UUIDGenerator instead
          feb. 01, 2021 2:33:53 P. M. org.hibernate.validator.internal.util.Version
          <clinit>
          INFO: HV000001: Hibernate Validator 6.0.15.Final
          feb. 01, 2021 2:33:55 P. M. org.openxava.controller.ModuleManager <clinit>
          INFORMACIÓN: OpenXava 6.4.2 (2020-11-9)
          feb. 01, 2021 2:33:57 P. M.
          org.openxava.controller.meta.xmlparse.ControllersParser createControllers
          ADVERTENCIA: ¡ADVERTENCIA! Se ha cargado el controlador NombramientoDiario
          más de una vez
          feb. 01, 2021 2:33:57 P. M. org.openxava.controller.ModuleManager log
          DETALLADO: 0:0:0:0:0:0:0:1 null MODULE:SignIn
          feb. 01, 2021 2:33:58 P. M. org.openxava.web.dwr.DWRBase request
          DETALLADO: Tiempo petición=295 ms
          feb. 01, 2021 2:34:02 P. M. org.openxava.controller.ModuleManager log
          DETALLADO: 0:0:0:0:0:0:0:1 admin SignIn.signIn 19ms
          feb. 01, 2021 2:34:02 P. M. org.openxava.web.dwr.DWRBase request
          DETALLADO: Tiempo petición=21 ms
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id NombramientoDiario
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id
          CalendarioAnualConductor
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id Conductor
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id PrevisionDiaria
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id TuPrimeraEntidad
          feb. 01, 2021 2:34:02 P. M. org.openxava.controller.ModuleManager log
          DETALLADO: 0:0:0:0:0:0:0:1 admin MODULE:NombramientoDiario
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id newNombramiento
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id linea
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id horario
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id autobus
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id conductor
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id nombreConductor
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id tipoNombramiento
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id anclada
          feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id lineaNombramiento
          feb. 01, 2021 2:34:02 P. M.
          org.hibernate.hql.internal.QueryTranslatorFactoryInitiator initiateService
          INFO: HHH000397: Using ASTQueryTranslatorFactory
          feb. 01, 2021 2:34:03 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
          DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT
          e.nombramientoDiario, e.fecha, e.linea, e.horario, e.autobus, e.conductor,
          e.nombreConductor, e.tipoNombramiento, e.anclada, e.lineaNombramiento from
          NombramientoDiario e con argumentos
          feb. 01, 2021 2:34:03 P. M. org.openxava.tab.impl.TableModelBean getRow
          DETALLADO: nextChunk=283
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id linea
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id horario
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id autobus
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id conductor
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id nombreConductor
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id tipoNombramiento
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id anclada
          feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id lineaNombramiento
          feb. 01, 2021 2:34:03 P. M. org.openxava.web.dwr.DWRBase request
          DETALLADO: Tiempo petición=532 ms
          feb. 01, 2021 2:34:05 P. M. org.openxava.controller.ModuleManager log
          DETALLADO: 0:0:0:0:0:0:0:1 admin MODULE:CalendarioAnualConductor
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id conductor
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id linea
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id turno
          feb. 01, 2021 2:34:06 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
          DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT e.id, e.conductor,
          e.fecha, e.linea, e.turno, e.observaciones from CalendarioAnualConductor e
          con argumentos
          feb. 01, 2021 2:34:06 P. M. org.openxava.tab.impl.TableModelBean getRow
          DETALLADO: nextChunk=245
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id Cards
          feb. 01, 2021 2:34:06 P. M. org.openxava.tab.Tab translateCondition
          GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
          org.openxava.util.ElementNotFoundException: No existe la colección nombre
          en CalendarioAnualConductor
          at org.openxava.model.meta.MetaModel.getMetaCollection(Unknown Source)
          at org.openxava.model.meta.MetaModel.getMetaProperty(Unknown Source)
          at
          org.openxava.tab.Tab$Configuration.getMetaPropertiesNotCalculated(Unknown
          Source)
          at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
          at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
          at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:217)
          at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at</clinit></clinit></init></init>

          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
          at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
          at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
          at

          org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:580)
          at

          org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:516)
          at

          org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:900)
          at org.apache.jsp.xava.core_jsp._jspService(core_jsp.java:323)
          at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
          at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
          at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
          at

          org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
          at

          org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
          at

          org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.fillResult(Unknown Source)
          at org.openxava.web.dwr.Module.request(Unknown Source)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
          Method)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
          Source)
          at
          java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
          Source)
          at java.base/java.lang.reflect.Method.invoke(Unknown Source)
          at

          org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
          at

          org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
          at

          org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
          at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
          at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
          at

          org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
          at

          org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
          at

          org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
          at

          org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
          at

          org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
          at
          org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
          at
          org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
          at

          org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
          at

          org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
          at

          org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
          at

          org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
          at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
          Source)
          at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
          Source)
          at

          org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
          at java.base/java.lang.Thread.run(Unknown
          Source)

          feb. 01, 2021 2:34:06 P. M. org.openxava.tab.Tab translateCondition
          GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
          java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
          at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
          at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
          Source)
          at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
          at java.base/java.util.Objects.checkIndex(Unknown Source)
          at java.base/java.util.ArrayList.get(Unknown Source)
          at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
          at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
          at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:225)
          at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
          at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
          at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
          at

          org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:580)
          at

          org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:516)
          at

          org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:900)
          at org.apache.jsp.xava.core_jsp._jspService(core_jsp.java:323)
          at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
          at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
          at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
          at

          org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
          at

          org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
          at

          org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.fillResult(Unknown Source)
          at org.openxava.web.dwr.Module.request(Unknown Source)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
          Method)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
          Source)
          at
          java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
          Source)
          at java.base/java.lang.reflect.Method.invoke(Unknown Source)
          at

          org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
          at

          org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
          at

          org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
          at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
          at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
          at

          org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
          at

          org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
          at

          org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
          at

          org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
          at

          org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
          at
          org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
          at
          org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
          at

          org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
          at

          org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
          at

          org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
          at

          org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
          at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
          Source)
          at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
          Source)
          at

          org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
          at java.base/java.lang.Thread.run(Unknown Source)

          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id conductor
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id linea
          feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
          ADVERTENCIA: Imposible internacionalizar elemento con id turno
          feb. 01, 2021 2:34:07 P. M. org.openxava.web.dwr.DWRBase request
          DETALLADO: Tiempo petición=1258 ms
          feb. 01, 2021 2:34:16 P. M. org.openxava.controller.ModuleManager log
          DETALLADO: 0:0:0:0:0:0:0:1 admin List.filter 50ms
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.tab.Tab translateCondition
          GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
          java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
          at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
          at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
          Source)
          at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
          at java.base/java.util.Objects.checkIndex(Unknown Source)
          at java.base/java.util.ArrayList.get(Unknown Source)
          at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
          at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
          at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:217)
          at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
          at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
          at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
          at

          org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
          at

          org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
          at

          org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.fillResult(Unknown Source)
          at org.openxava.web.dwr.Module.request(Unknown Source)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
          Method)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
          Source)
          at
          java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
          Source)
          at java.base/java.lang.reflect.Method.invoke(Unknown Source)
          at

          org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
          at

          org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
          at

          org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
          at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
          at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
          at

          org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
          at

          org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
          at

          org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
          at

          org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
          at

          org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
          at
          org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
          at
          org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
          at

          org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
          at

          org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
          at

          org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
          at

          org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
          at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
          Source)
          at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
          Source)
          at

          org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
          at java.base/java.lang.Thread.run(Unknown Source)

          feb. 01, 2021 2:34:16 P. M. org.openxava.tab.Tab translateCondition
          GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
          java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
          at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
          at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
          Source)
          at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
          at java.base/java.util.Objects.checkIndex(Unknown Source)
          at java.base/java.util.ArrayList.get(Unknown Source)
          at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
          at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
          at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:225)
          at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
          at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
          at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
          at

          org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
          at

          org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
          at

          org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
          at org.openxava.web.dwr.Module.fillResult(Unknown Source)
          at org.openxava.web.dwr.Module.request(Unknown Source)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
          Method)
          at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
          Source)
          at
          java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
          Source)
          at java.base/java.lang.reflect.Method.invoke(Unknown Source)
          at

          org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
          at

          org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
          at
          org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
          at

          org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
          at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
          at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
          at

          org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
          at

          org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
          at

          org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
          at

          org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
          at

          org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
          at

          org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
          at

          org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
          at

          org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
          at
          org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
          at
          org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
          at

          org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
          at

          org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
          at

          org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
          at

          org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
          at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
          Source)
          at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
          Source)
          at

          org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
          at java.base/java.lang.Thread.run(Unknown Source)

          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
          ADVERTENCIA: Impossible to translate element with id and
          feb. 01, 2021 2:34:16 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
          DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT e.id, e.conductor,
          e.fecha, e.linea, e.turno, e.observaciones from CalendarioAnualConductor e
          WHERE e.fecha = :p0 con argumentos 2021-02-09
          feb. 01, 2021 2:34:17 P. M. org.openxava.tab.impl.TableModelBean getRow
          DETALLADO: nextChunk=384
          feb. 01, 2021 2:34:17 P. M. org.openxava.web.dwr.DWRBase request
          DETALLADO: Tiempo petición=1140 ms

          El lun, 1 feb 2021 a las 14:37, jose luis balmaseda franco (
          joseluisbalmaseda@gmail.com) escribió:

          Buenos dias.

          Controladores.xml

          <controlador nombre="NombramientoDiario"> <!-- El mismo nombre de la</controlador>

          entidad-->
          <hereda-de controlador="Typical"> </hereda-de>

          <accion nombre="newNombramiento"
              modo="detail"
              confirmar="true"
              clase="com.tuempresa.pruebamysql.acciones.GenerarNombramiento"
              icono="new"
              disponible-en-nuevo="false"
              atajo-de-teclado="Control N"/></controlador>
          

          package com.tuempresa.pruebamysql.acciones;

          import org.openxava.actions.*;

          public class GenerarNombramiento extends ViewBaseAction { //
          ViewBaseAction tiene getView(), addMessage(), etc

          public void execute() throws Exception { // La lógica de la acción
          addMessage( // Añade un mensaje para mostrar al usuario
          "¡No te preocupes! Sólo he borrado la pantalla");
          getView().clear(); // getView() devuelve el objeto xava_view
          // clear() borra los datos en la interfaz de usuario
          }
          }

          No hay error en la traza del servidor.

          Un saludo.

          El lun, 1 feb 2021 a las 14:24, Javier Paniza (
          javierpaniza@users.sourceforge.net) escribió:

          Hola José Luis:

          Pon aquí la definición de tu controlador en controladores.xml, el código
          fuente completo de tu acción y la traza de error que se produce (en el
          servidor).


          Ayuda a otros en este foro como yo te ayudo a ti.

          Añadir botón a la barra de herramentas

          https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97

          Sent from sourceforge.net because you indicated interest in
          https://sourceforge.net/p/openxava/discussion/437013/

          To unsubscribe from further messages, please visit
          https://sourceforge.net/auth/subscriptions/


          Añadir botón a la barra de herramentas
          https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97/c5dd/03b4


          Sent from sourceforge.net because you indicated interest in
          https://sourceforge.net/p/openxava/discussion/437013/

          To unsubscribe from further messages, please visit
          https://sourceforge.net/auth/subscriptions/

           
          • jose luis balmaseda

            Buenos dias.

            Solucionado el tema de generar un botón. Adjunto código por si a alguien le
            pasa lo mismo.

            <controlador nombre="NombramientoDiario">
            <hereda-de controlador="Typical"> </hereda-de></controlador>

            <accion nombre="crearNombramiento" clase="com.tuempresa.pruebamysql.acciones.GenerarNombramiento" modo="detail"></accion>

            Un saludo.

            El mar, 2 feb 2021 a las 8:12, jose luis balmaseda ( jlbalmaseda@users.sourceforge.net) escribió:

            Buenos dias.

            El error mostrado no tiene nada que ver con la generación de nuevos
            botones, viene dado por otra circunstancia y ya está arreglado.

            Un saludo.

            El lun, 1 feb 2021 a las 14:39, jose luis balmaseda (
            jlbalmaseda@users.sourceforge.net) escribió:

            perdona, acabo de ver esto:

            [Server@3eb08c27]: [Thread[Thread-0,5,main]]: setSilent(true)
            [Server@3eb08c27]: Initiating startup sequence...
            [Server@3eb08c27]: Server socket opened successfully in 9 ms.
            Iniciando aplicación...
            [Server@3eb08c27]: Database [index=0, id=0, db=file:data/PruebaMySQLDB,
            alias=]
            opened sucessfully in 520 ms.
            [Server@3eb08c27]: Startup sequence completed in 532 ms.
            [Server@3eb08c27]: 2021-02-01 14:33:35.965 HSQLDB server 2.3.2 is online
            on
            port 1666
            [Server@3eb08c27]: To close normally, connect and execute SHUTDOWN SQL
            [Server@3eb08c27]: From command line, use [Ctrl]+[C] to abort abruptly
            feb. 01, 2021 2:33:36 P. M. org.apache.coyote.AbstractProtocol init
            INFORMACIÓN: Initializing ProtocolHandler ["http-nio-8080"]
            feb. 01, 2021 2:33:36 P. M. org.apache.catalina.core.StandardService
            startInternal
            INFORMACIÓN: Starting service [Tomcat]
            feb. 01, 2021 2:33:36 P. M. org.apache.catalina.core.StandardEngine
            startInternal
            INFORMACIÓN: Starting Servlet engine: [Apache Tomcat/9.0.22]
            feb. 01, 2021 2:33:36 P. M. org.apache.catalina.startup.ContextConfig
            getDefaultWebXmlFragment
            INFORMACIÓN: No global web.xml found
            feb. 01, 2021 2:33:41 P. M. org.apache.jasper.servlet.TldScanner scanJars
            INFORMACIÓN: At least one JAR was scanned for TLDs yet contained no TLDs.
            Enable debug logging for this logger for a complete list of JARs that were
            scanned but no TLDs were found in them. Skipping unneeded JARs during
            scanning can improve startup time and JSP compilation time.
            feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
            INFORMACIÓN: DWR Version 2.0.10 starting.
            feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
            INFORMACIÓN: - Servlet Engine: Apache Tomcat/9.0.22
            feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
            INFORMACIÓN: - Java Version: 11.0.7
            feb. 01, 2021 2:33:41 P. M. org.directwebremoting.impl.StartupUtil info
            INFORMACIÓN: - Java Vendor: Azul Systems, Inc.
            feb. 01, 2021 2:33:41 P. M.
            org.directwebremoting.dwrp.DefaultConverterManager info
            INFORMACIÓN: Probably not an issue: org.jdom.Document is not available so
            the jdom converter will not load. This is only a problem if you wanted to
            use it.
            feb. 01, 2021 2:33:41 P. M.
            org.directwebremoting.dwrp.DefaultConverterManager info
            INFORMACIÓN: Probably not an issue: org.jdom.Element is not available so
            the jdom converter will not load. This is only a problem if you wanted to
            use it.
            feb. 01, 2021 2:33:41 P. M. org.apache.coyote.AbstractProtocol start
            INFORMACIÓN: Starting ProtocolHandler ["http-nio-8080"]
            Aplicación iniciada. Ve a http://localhost:8080/PruebaMySQL
            feb. 01, 2021 2:33:49 P. M. org.hibernate.jpa.internal.util.LogHelper
            logPersistenceUnitInformation
            INFO: HHH000204: Processing PersistenceUnitInfo
            name: default
            ... https://sourceforge.net
            feb. 01, 2021 2:33:50 P. M. org.hibernate.Version logVersion
            INFO: HHH000412: Hibernate Core {5.3.9.Final}
            feb. 01, 2021 2:33:50 P. M. org.hibernate.cfg.Environment <clinit>
            INFO: HHH000206: hibernate.properties not found
            feb. 01, 2021 2:33:50 P. M.
            org.hibernate.annotations.common.reflection.java.JavaReflectionManager
            <clinit>
            INFO: HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
            WARNING: An illegal reflective access operation has occurred
            WARNING: Illegal reflective access by
            com.sun.xml.bind.v2.runtime.reflect.opt.Injector</clinit></clinit>

            (file:/C:/openxava0000/openxava-6.4.2/workspace/PruebaMySQL/web/WEB-INF/lib/jaxb-impl.jar)
            to method
            java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
            WARNING: Please consider reporting this to the maintainers of
            com.sun.xml.bind.v2.runtime.reflect.opt.Injector
            WARNING: Use --illegal-access=warn to enable warnings of further illegal
            reflective access operations
            WARNING: All illegal access operations will be denied in a future release
            Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver
            class iscom.mysql.cj.jdbc.Driver'. The driver is automatically registered
            via the SPI and manual loading of the driver class is generally
            unnecessary.
            feb. 01, 2021 2:33:52 P. M. org.hibernate.dialect.Dialect <init>
            INFO: HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
            feb. 01, 2021 2:33:53 P. M.
            org.hibernate.envers.boot.internal.EnversServiceImpl configure
            INFO: Envers integration enabled? : true
            feb. 01, 2021 2:33:53 P. M. org.hibernate.id.UUIDHexGenerator <init>
            WARN: HHH000409: Using org.hibernate.id.UUIDHexGenerator which does not
            generate IETF RFC 4122 compliant UUID values; consider using
            org.hibernate.id.UUIDGenerator instead
            feb. 01, 2021 2:33:53 P. M. org.hibernate.validator.internal.util.Version
            <clinit>
            INFO: HV000001: Hibernate Validator 6.0.15.Final
            feb. 01, 2021 2:33:55 P. M. org.openxava.controller.ModuleManager <clinit>
            INFORMACIÓN: OpenXava 6.4.2 (2020-11-9)
            feb. 01, 2021 2:33:57 P. M.
            org.openxava.controller.meta.xmlparse.ControllersParser createControllers
            ADVERTENCIA: ¡ADVERTENCIA! Se ha cargado el controlador NombramientoDiario
            más de una vez
            feb. 01, 2021 2:33:57 P. M. org.openxava.controller.ModuleManager log
            DETALLADO: 0:0:0:0:0:0:0:1 null MODULE:SignIn
            feb. 01, 2021 2:33:58 P. M. org.openxava.web.dwr.DWRBase request
            DETALLADO: Tiempo petición=295 ms
            feb. 01, 2021 2:34:02 P. M. org.openxava.controller.ModuleManager log
            DETALLADO: 0:0:0:0:0:0:0:1 admin SignIn.signIn 19ms
            feb. 01, 2021 2:34:02 P. M. org.openxava.web.dwr.DWRBase request
            DETALLADO: Tiempo petición=21 ms
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id NombramientoDiario
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id
            CalendarioAnualConductor
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id Conductor
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id PrevisionDiaria
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id TuPrimeraEntidad
            feb. 01, 2021 2:34:02 P. M. org.openxava.controller.ModuleManager log
            DETALLADO: 0:0:0:0:0:0:0:1 admin MODULE:NombramientoDiario
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id newNombramiento
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id linea
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id horario
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id autobus
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id conductor
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id nombreConductor
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id tipoNombramiento
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id anclada
            feb. 01, 2021 2:34:02 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id lineaNombramiento
            feb. 01, 2021 2:34:02 P. M.
            org.hibernate.hql.internal.QueryTranslatorFactoryInitiator initiateService
            INFO: HHH000397: Using ASTQueryTranslatorFactory
            feb. 01, 2021 2:34:03 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
            DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT
            e.nombramientoDiario, e.fecha, e.linea, e.horario, e.autobus, e.conductor,
            e.nombreConductor, e.tipoNombramiento, e.anclada, e.lineaNombramiento from
            NombramientoDiario e con argumentos
            feb. 01, 2021 2:34:03 P. M. org.openxava.tab.impl.TableModelBean getRow
            DETALLADO: nextChunk=283
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id linea
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id horario
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id autobus
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id conductor
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id nombreConductor
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id tipoNombramiento
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id anclada
            feb. 01, 2021 2:34:03 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id lineaNombramiento
            feb. 01, 2021 2:34:03 P. M. org.openxava.web.dwr.DWRBase request
            DETALLADO: Tiempo petición=532 ms
            feb. 01, 2021 2:34:05 P. M. org.openxava.controller.ModuleManager log
            DETALLADO: 0:0:0:0:0:0:0:1 admin MODULE:CalendarioAnualConductor
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id conductor
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id linea
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id turno
            feb. 01, 2021 2:34:06 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
            DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT e.id, e.conductor,
            e.fecha, e.linea, e.turno, e.observaciones from CalendarioAnualConductor e
            con argumentos
            feb. 01, 2021 2:34:06 P. M. org.openxava.tab.impl.TableModelBean getRow
            DETALLADO: nextChunk=245
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id Cards
            feb. 01, 2021 2:34:06 P. M. org.openxava.tab.Tab translateCondition
            GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
            org.openxava.util.ElementNotFoundException: No existe la colección nombre
            en CalendarioAnualConductor
            at org.openxava.model.meta.MetaModel.getMetaCollection(Unknown Source)
            at org.openxava.model.meta.MetaModel.getMetaProperty(Unknown Source)
            at
            org.openxava.tab.Tab$Configuration.getMetaPropertiesNotCalculated(Unknown
            Source)
            at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
            at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
            at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:217)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at</clinit></clinit></init></init>

            org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
            at

            org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:580)
            at

            org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:516)
            at

            org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:900)
            at org.apache.jsp.xava.core_jsp._jspService(core_jsp.java:323)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
            at

            org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
            at

            org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
            at

            org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.fillResult(Unknown Source)
            at org.openxava.web.dwr.Module.request(Unknown Source)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
            Method)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
            Source)
            at
            java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
            Source)
            at java.base/java.lang.reflect.Method.invoke(Unknown Source)
            at

            org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
            at

            org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
            at

            org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
            at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
            at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
            at

            org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
            at

            org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
            at

            org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
            at

            org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
            at

            org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
            at
            org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
            at
            org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
            at

            org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
            at

            org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
            at

            org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
            at

            org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
            at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
            Source)
            at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
            Source)
            at

            org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
            at java.base/java.lang.Thread.run(Unknown
            Source)

            feb. 01, 2021 2:34:06 P. M. org.openxava.tab.Tab translateCondition
            GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
            java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
            at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
            at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
            Source)
            at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
            at java.base/java.util.Objects.checkIndex(Unknown Source)
            at java.base/java.util.ArrayList.get(Unknown Source)
            at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
            at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
            at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:225)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
            at

            org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:580)
            at

            org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:516)
            at

            org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:900)
            at org.apache.jsp.xava.core_jsp._jspService(core_jsp.java:323)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
            at

            org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
            at

            org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
            at

            org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.fillResult(Unknown Source)
            at org.openxava.web.dwr.Module.request(Unknown Source)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
            Method)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
            Source)
            at
            java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
            Source)
            at java.base/java.lang.reflect.Method.invoke(Unknown Source)
            at

            org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
            at

            org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
            at

            org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
            at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
            at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
            at

            org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
            at

            org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
            at

            org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
            at

            org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
            at

            org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
            at
            org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
            at
            org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
            at

            org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
            at

            org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
            at

            org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
            at

            org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
            at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
            Source)
            at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
            Source)
            at

            org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
            at java.base/java.lang.Thread.run(Unknown Source)

            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id conductor
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id linea
            feb. 01, 2021 2:34:06 P. M. org.openxava.util.Labels getWithoutCache
            ADVERTENCIA: Imposible internacionalizar elemento con id turno
            feb. 01, 2021 2:34:07 P. M. org.openxava.web.dwr.DWRBase request
            DETALLADO: Tiempo petición=1258 ms
            feb. 01, 2021 2:34:16 P. M. org.openxava.controller.ModuleManager log
            DETALLADO: 0:0:0:0:0:0:0:1 admin List.filter 50ms
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.tab.Tab translateCondition
            GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
            java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
            at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
            at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
            Source)
            at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
            at java.base/java.util.Objects.checkIndex(Unknown Source)
            at java.base/java.util.ArrayList.get(Unknown Source)
            at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
            at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
            at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:217)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
            at

            org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
            at

            org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
            at

            org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.fillResult(Unknown Source)
            at org.openxava.web.dwr.Module.request(Unknown Source)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
            Method)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
            Source)
            at
            java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
            Source)
            at java.base/java.lang.reflect.Method.invoke(Unknown Source)
            at

            org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
            at

            org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
            at

            org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
            at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
            at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
            at

            org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
            at

            org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
            at

            org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
            at

            org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
            at

            org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
            at
            org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
            at
            org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
            at

            org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
            at

            org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
            at

            org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
            at

            org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
            at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
            Source)
            at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
            Source)
            at

            org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
            at java.base/java.lang.Thread.run(Unknown Source)

            feb. 01, 2021 2:34:16 P. M. org.openxava.tab.Tab translateCondition
            GRAVE: Imposible traducir la condición de la lista: ${nombre.id} = ?
            java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1
            at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source)
            at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown
            Source)
            at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source)
            at java.base/java.util.Objects.checkIndex(Unknown Source)
            at java.base/java.util.ArrayList.get(Unknown Source)
            at org.openxava.tab.Tab$Configuration.translateCondition(Unknown Source)
            at org.openxava.tab.Tab$Configuration.getName(Unknown Source)
            at org.apache.jsp.xava.list_jsp._jspService(list_jsp.java:225)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)
            at

            org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)
            at

            org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)
            at

            org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.servlets.Servlets.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.getURIAsString(Unknown Source)
            at org.openxava.web.dwr.Module.fillResult(Unknown Source)
            at org.openxava.web.dwr.Module.request(Unknown Source)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
            Method)
            at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown
            Source)
            at
            java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
            Source)
            at java.base/java.lang.reflect.Method.invoke(Unknown Source)
            at

            org.directwebremoting.impl.ExecuteAjaxFilter.doFilter(ExecuteAjaxFilter.java:34)
            at

            org.directwebremoting.impl.DefaultRemoter$1.doFilter(DefaultRemoter.java:428)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:431)
            at
            org.directwebremoting.impl.DefaultRemoter.execute(DefaultRemoter.java:283)
            at

            org.directwebremoting.servlet.PlainCallHandler.handle(PlainCallHandler.java:52)
            at org.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:101)
            at org.directwebremoting.servlet.DwrServlet.doPost(DwrServlet.java:146)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
            at

            org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
            at

            org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
            at

            org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
            at

            org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
            at

            org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)
            at

            org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
            at

            org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
            at

            org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
            at
            org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
            at
            org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)
            at

            org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
            at

            org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:853)
            at

            org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1587)
            at

            org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
            at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown
            Source)
            at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
            Source)
            at

            org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
            at java.base/java.lang.Thread.run(Unknown Source)

            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.util.ResourceManagerI18n getString
            ADVERTENCIA: Impossible to translate element with id and
            feb. 01, 2021 2:34:16 P. M. org.openxava.tab.impl.JPATabProvider nextBlock
            DETALLADO: [JPATabProvider.nextBlock] Ejecutando SELECT e.id, e.conductor,
            e.fecha, e.linea, e.turno, e.observaciones from CalendarioAnualConductor e
            WHERE e.fecha = :p0 con argumentos 2021-02-09
            feb. 01, 2021 2:34:17 P. M. org.openxava.tab.impl.TableModelBean getRow
            DETALLADO: nextChunk=384
            feb. 01, 2021 2:34:17 P. M. org.openxava.web.dwr.DWRBase request
            DETALLADO: Tiempo petición=1140 ms

            El lun, 1 feb 2021 a las 14:37, jose luis balmaseda franco (
            joseluisbalmaseda@gmail.com) escribió:

            Buenos dias.

            Controladores.xml

            <controlador nombre="NombramientoDiario"> <!-- El mismo nombre de
            la</controlador>

            entidad-->
            <hereda-de controlador="Typical"> </hereda-de>

            <accion disponible-en-nuevo="false" clase="com.tuempresa.pruebamysql.acciones.GenerarNombramiento" atajo-de-teclado="Control N" confirmar="true" nombre="newNombramiento" icono="new" modo="detail"></accion>

            package com.tuempresa.pruebamysql.acciones;

            import org.openxava.actions.*;

            public class GenerarNombramiento extends ViewBaseAction { //
            ViewBaseAction tiene getView(), addMessage(), etc

            public void execute() throws Exception { // La lógica de la acción
            addMessage( // Añade un mensaje para mostrar al usuario
            "¡No te preocupes! Sólo he borrado la pantalla");
            getView().clear(); // getView() devuelve el objeto xava_view
            // clear() borra los datos en la interfaz de usuario
            }
            }

            No hay error en la traza del servidor.

            Un saludo.

            El lun, 1 feb 2021 a las 14:24, Javier Paniza (
            javierpaniza@users.sourceforge.net) escribió:

            Hola José Luis:

            Pon aquí la definición de tu controlador en controladores.xml, el código
            fuente completo de tu acción y la traza de error que se produce (en el
            servidor).


            Ayuda a otros en este foro como yo te ayudo a ti.

            Añadir botón a la barra de herramentas

            https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97

            Sent from sourceforge.net because you indicated interest in
            https://sourceforge.net/p/openxava/discussion/437013/

            To unsubscribe from further messages, please visit
            https://sourceforge.net/auth/subscriptions/


            Añadir botón a la barra de herramentas

            https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97/c5dd/03b4

            Sent from sourceforge.net because you indicated interest in
            https://sourceforge.net/p/openxava/discussion/437013/

            To unsubscribe from further messages, please visit
            https://sourceforge.net/auth/subscriptions/


            Añadir botón a la barra de herramentas
            https://sourceforge.net/p/openxava/discussion/437013/thread/5bcecf41/?limit=25#6e97/c5dd/03b4/e743


            Sent from sourceforge.net because you indicated interest in
            https://sourceforge.net/p/openxava/discussion/437013/

            To unsubscribe from further messages, please visit
            https://sourceforge.net/auth/subscriptions/

             
  • Javier Paniza

    Javier Paniza - 2021-02-04

    Hola José Luis:

    Estoy bastante confundido, ¿cómo te puede dar este error "PARAMETERS.EVENT cannot be resolved to a variable" si el código de tu acción no aparece PARAMETERS.EVENT en ningún sitio?
    ¿Seguro que te sigue dando ese error?

    Sobre la traza:

    Imposible traducir la condición de la lista: ${nombre.id} = ?
    org.openxava.util.ElementNotFoundException: No existe la colección nombre
    en CalendarioAnualConductor
    

    No tiene que ver con la acción sino con algún problema en CalendarioAnualConductor, para este otr problema tendría que abrir otro hilo y adjuntar el código de CalendarioAnualConductor y sus clases relacionadas.


    Ayuda a otros en este foro como yo te ayudo a ti.

     

Log in to post a comment.