10 Replies Latest reply on Feb 7, 2008 11:29 AM by norman.richards

    :(   the huge log file.

    gringalet

      i am adding the fileupload function in seam example dvd store, now when i click the upload button, my pc will be so busy that it dosn;t have any response from my keybaord , and jboss log file will become bigger more and more. at finally, the log file will be more than 1G size.
      who can give me a hand?

      my components.xml

      <?xml version="1.0" encoding="UTF-8"?>
      <components xmlns="http://jboss.com/products/seam/components"
       xmlns:core="http://jboss.com/products/seam/core"
       xmlns:bpm="http://jboss.com/products/seam/bpm"
       xmlns:persistence="http://jboss.com/products/seam/persistence"
       xmlns:security="http://jboss.com/products/seam/security"
       xmlns:framework="http://jboss.com/products/seam/framework"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation=
       "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd
       http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.0.xsd
       http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd
       http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
       http://jboss.com/products/seam/framework http://jboss.com/products/seam/framework-2.0.xsd
       http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">
      
       <core:init debug="true" jndi-pattern="@jndiPattern@"/>
      
       <!-- 120 second conversation timeout -->
       <core:manager conversation-timeout="120000"/>
      
       <bpm:jbpm>
       <bpm:process-definitions>
       <value>ordermanagement1.jpdl.xml</value>
       </bpm:process-definitions>
       <bpm:pageflow-definitions>
       <value>checkout.jpdl.xml</value>
       <value>newuser.jpdl.xml</value>
       </bpm:pageflow-definitions>
       </bpm:jbpm>
      
       <security:identity authenticate-method="#{authenticator.authenticate}"/>
      
       <persistence:managed-persistence-context name="entityManager"
       auto-create="true"
       persistence-unit-jndi-name="java:/dvdEntityManagerFactory" />
      
       <factory name="order"
       value="#{orderHome.instance}"
       scope="stateless"
       auto-create="true"/>
       <framework:entity-home name="orderHome"
       entity-class="com.jboss.dvd.seam.Order"
       scope="conversation"
       auto-create="true">
       <framework:id>#{orderId}</framework:id>
       </framework:entity-home>
      
      
       <framework:entity-query name="allCategories"
       ejbql="select c from Category c"
       order="c.name">
       <!-- waiting for hibernate issue EJB-277
       <framework:hints>
       <key>org.hibernate.cacheable</key>
       <value>true</value>
       </framework:hints>
       -->
       </framework:entity-query>
      
      
       <factory name="topProducts"
       value="#{topQuery.resultList}" />
       <framework:entity-query name="topQuery"
       ejbql="select p from Product p"
       order="p.inventory.sales desc"
       max-results="8" />
       <component class="org.jboss.seam.web.MultipartFilter">
       <property name="createTempFiles">false</property>
       <property name="maxRequestSize">100000000</property>
       </component>
      
      </components>
      


      my web.xml
      <?xml version="1.0" ?>
      
      <web-app version="2.5"
       xmlns="http://java.sun.com/xml/ns/javaee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
      
       <listener>
       <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
       </listener>
      
       <context-param>
       <param-name>facelets.DEVELOPMENT</param-name>
       <param-value>true</param-value>
       </context-param>
      
       <context-param>
       <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
       <param-value>.xhtml</param-value>
       </context-param>
      
       <filter>
       <filter-name>Seam Filter</filter-name>
       <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
       </filter>
      
       <filter-mapping>
       <filter-name>Seam Filter</filter-name>
       <url-pattern>/*</url-pattern>
       </filter-mapping>
      
       <servlet>
       <servlet-name>Faces Servlet</servlet-name>
       <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
       <load-on-startup>1</load-on-startup>
       </servlet>
      
       <servlet-mapping>
       <servlet-name>Faces Servlet</servlet-name>
       <url-pattern>*.seam</url-pattern>
       </servlet-mapping>
      
       <security-constraint>
       <display-name>Restrict XHTML Documents</display-name>
       <web-resource-collection>
       <web-resource-name>XHTML</web-resource-name>
       <url-pattern>*.xhtml</url-pattern>
       </web-resource-collection>
       <auth-constraint>
       <role-name>NONE</role-name>
       </auth-constraint>
       </security-constraint>
      
       <session-config>
       <session-timeout>10</session-timeout>
       </session-config>
      
      </web-app>
      


      File.java
      
      /*
       * JBoss, Home of Professional Open Source
       *
       * Distributable under LGPL license.
       * See terms of license at gnu.org.
       */
      package com.jboss.dvd.seam;
      
      public interface File {
       public boolean isManaged() ;
       public String getFilename() ;
       public void setFilename(String filename);
       public String getContentType();
       public void setContentType(String contentType);
       public byte[] getFiledata() ;
       public void setFiledata(byte[] filedata);
       public void update2();
       public void destroy();
      }
      


      my FileAction.java
      package com.jboss.dvd.seam;
      
      import static javax.faces.application.FacesMessage.SEVERITY_WARN;
      
      import javax.ejb.Remove;
      import javax.swing.ImageIcon;
      
      import org.jboss.seam.annotations.*;
      import org.jboss.seam.ScopeType;
      
      import java.io.Serializable;
      import java.util.Map;
      
      @Name("file")
      @Scope(ScopeType.CONVERSATION)
      public class FileAction
      implements File,
      Serializable
      {
      
       public static final int PREVIEW_SIZE_MIN = 240;
      
       public static final int PREVIEW_SIZE_MAX = 1600;
      
       public static final int PREVIEW_ZOOM_STEP = 240;
      
       /* -------------------------- Context Wiring ------------------------------ */
      
       /* -------------------------- Internal State ------------------------------ */
      
       private String filename;
      
       private String contentType;
      
       // TODO: This should really use an InputStream and directly stream into the
       // BLOB without consuming server memory
       private byte[] filedata;
      
       private int imagePreviewSize = 240;
      
       public boolean isManaged() {
       return true;
       }
      
       public String getFilename() {
       return filename;
       }
      
       public void setFilename(String filename) {
       this.filename = filename;
       }
      
       public String getContentType() {
       return contentType;
       }
      
       public void setContentType(String contentType) {
       this.contentType = contentType;
       }
      
       public byte[] getFiledata() {
       return filedata;
       }
      
       public void setFiledata(byte[] filedata) {
       this.filedata = filedata;
       }
      
      
       public void update2(){
       if(getFiledata()!=null){
       System.out.println(getFiledata().length);
       System.out.println(getFilename());
       byte[] filedata=null;
       setFiledata(filedata);
       }
       else
       System.out.println("can't find file uploaded");
       }
       @Remove
       public void destroy() {};
      
      }
      


      my fileEdit.xhtml
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml"
       xmlns:ui="http://java.sun.com/jsf/facelets"
       xmlns:s="http://jboss.com/products/seam/taglib"
       xmlns:f="http://java.sun.com/jsf/core"
       xmlns:h="http://java.sun.com/jsf/html">
      <body>
       <h:outputText value="i am your friend" />
       <h:outputText value="#{file.contentType}" />
       <h:form enctype="multipart/form-data">
       <s:fileUpload id="upload" data="#{file.filedata}" contentType="#{file.contentType}" fileName="#{file.filename}"/>
       <h:commandLink id="update" action="#{file.update2}"
       rendered="#{file.managed}"
       tabindex="6" accesskey="U" styleClass="button"><span class="buttonLabel"><u>U</u>pdate</span></h:commandLink>
      
       </h:form>
      
      </body>
      </html>
      
      


        • 1. Re: :(   the huge log file.
          gringalet

          this is from the part of my log file, it looks like repeat doing something.

          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: org.jboss.seam.persistence.persistenceContexts
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.contexts.Contexts] found in conversation context: file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.file
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
          2008-02-05 22:37:39,765 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events


          • 2. Re: :(   the huge log file.

            You have to tune your jboss-log4j.xml config in the conf directory. Try to set the PRIORITY to INFO for the org.jboss category (just uncomment the category I think).


            Nicolas Leroux

            • 3. Re: :(   the huge log file.

              Why do you do the following:

              byte[] filedata=null;
              setFiledata(filedata);

              The attribute fileData is never set then.

              • 4. Re: :(   the huge log file.

                I think you don't need the setData in update2() because you already set the data in:

                <s:fileUpload id="upload" data="#{file.filedata}


                • 5. Re: :(   the huge log file.
                  gringalet

                  hi , pepite, thank you for your hand. i have been already fixed the trouble of big log file according to your advice .
                  would you like tell me why the tag of "<s:fileUpload>" is unstable in my program ,
                  now it spends tens minutes to upload a file with 1M size. and at the end , jboss says:

                  ....
                  2008-02-06 12:37:45,093 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <星期三, 6 二月 2008 12:37:45>
                  2008-02-06 12:37:45,093 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
                  2008-02-06 12:37:45,093 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                  2008-02-06 12:37:45,093 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                  2008-02-06 12:37:55,203 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <星期三, 6 二月 2008 12:37:55>
                  2008-02-06 12:37:55,203 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
                  2008-02-06 12:37:55,203 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                  2008-02-06 12:37:55,203 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
                  2008-02-06 12:39:55,203 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <星期三, 6 二月 2008 12:39:55>
                  2008-02-06 12:39:55,203 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
                  2008-02-06 12:39:55,203 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                  2008-02-06 12:39:55,203 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                  2008-02-06 12:40:05,250 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <星期三, 6 二月 2008 12:40:05>
                  2008-02-06 12:40:05,250 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
                  2008-02-06 12:40:05,250 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                  2008-02-06 12:40:05,250 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
                  2008-02-06 12:42:05,265 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <星期三, 6 二月 2008 12:42:05>
                  2008-02-06 12:42:05,265 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
                  2008-02-06 12:42:05,265 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                  2008-02-06 12:42:05,265 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                  2008-02-06 12:42:15,343 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <星期三, 6 二月 2008 12:42:15>
                  2008-02-06 12:42:15,343 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
                  2008-02-06 12:42:15,343 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                  2008-02-06 12:42:15,343 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
                  2008-02-06 12:44:15,546 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <星期三, 6 二月 2008 12:44:15>
                  2008-02-06 12:44:15,546 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
                  2008-02-06 12:44:15,546 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                  2008-02-06 12:44:15,546 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                  2008-02-06 12:44:25,750 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <星期三, 6 二月 2008 12:44:25>
                  2008-02-06 12:44:25,765 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
                  2008-02-06 12:44:25,765 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                  2008-02-06 12:44:25,765 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
                  2008-02-06 12:46:25,781 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <星期三, 6 二月 2008 12:46:25>
                  2008-02-06 12:46:25,781 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
                  2008-02-06 12:46:25,781 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                  2008-02-06 12:46:25,781 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                  2008-02-06 12:46:35,796 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <星期三, 6 二月 2008 12:46:35>
                  2008-02-06 12:46:35,796 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
                  2008-02-06 12:46:35,796 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                  2008-02-06 12:46:35,796 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
                  2008-02-06 12:46:42,968 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.BasicAction_58] - Abort of action id -3f57fe2e:be3:47a92f30:a5 invoked while multiple threads active within it.
                  2008-02-06 12:46:42,968 WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.CheckedAction_2] - CheckedAction::check - atomic action -3f57fe2e:be3:47a92f30:a5 aborting with 1 threads active!
                  2008-02-06 12:48:36,078 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <星期三, 6 二月 2008 12:48:36>
                  2008-02-06 12:48:36,078 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
                  2008-02-06 12:48:36,078 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                  2008-02-06 12:48:36,078 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                  2008-02-06 12:48:46,078 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <星期三, 6 二月 2008 12:48:46>
                  2008-02-06 12:48:46,078 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
                  2008-02-06 12:48:46,078 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                  2008-02-06 12:48:46,078 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass


                  thanks:)

                  • 6. Re: :(   the huge log file.
                    gringalet

                    hi, who can give me a hand? anybody see me? if it is bug from upload tag in the seam 2.0?

                    • 7. Re: :(   the huge log file.
                      pmuir

                      A load of transaction logging statements don't really help anyone. You'll need to get your debugger out.

                      • 8. Re: :(   the huge log file.
                        gringalet

                        hi pete.muir, would you like tell me what is the causes for the belows?

                        i click the button for uploading the file and i have to wait for a long time , and in the end, i got these messages:

                        17:41:30,187 ERROR [STDERR] 2008-2-7 17:41:30 com.sun.facelets.compiler.TagLibra
                        ryConfig loadImplicit
                        信�: Added Library from: jar:file:/D:/share2/CRMProjects/jboss-4.2.0_dvd/server
                        /default/tmp/deploy/tmp7917dvd.ear-contents/dvd-exp.war/WEB-INF/lib/jboss-seam-u
                        i.jar!/META-INF/s.taglib.xml
                        17:47:38,671 WARN [arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.BasicActio
                        n_58] - Abort of action id -3f57ffeb:1992:47aad1b3:48 invoked while multiple thr
                        eads active within it.
                        17:47:38,687 WARN [arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.CheckedAct
                        ion_2] - CheckedAction::check - atomic action -3f57ffeb:1992:47aad1b3:48 abortin
                        g with 1 threads active!
                        



                        • 9. Re: :(   the huge log file.
                          gringalet

                          nobody would like tell me how to move my trouble?:(

                          • 10. Re: :(   the huge log file.

                            I assume those are transaction failures from your request taking longer than the default tx timeout. That's only a symptom of whatever you are doing that is making your request take so long.