12 Replies Latest reply on Jan 20, 2009 1:01 AM by alesj

    Problem with facelets when switching to Jboss 5.0

    misqu23

      Hi

      In our app we are using seam 2.1 + richfaces 3.2.2 + facelets (from Seam distrbution).

      When we decided to switch to the JBoss 5.0 server we have faced the folowing exceptions

      Caused by: java.lang.NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler

      I guess we should change something in the configuration but I don't know what is wrong.

      Here is the web.xml

      <?xml version="1.0" encoding="UTF-8"?>
      <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="http://java.sun.com/xml/ns/javaee"
      xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
      http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
       <display-name>foo bar</display-name>
       <welcome-file-list>
       <welcome-file>index.html</welcome-file>
       <welcome-file>index.htm</welcome-file>
       <welcome-file>index.jsp</welcome-file>
       <welcome-file>default.html</welcome-file>
       <welcome-file>default.htm</welcome-file>
       <welcome-file>default.jsp</welcome-file>
       </welcome-file-list>
      
       <!-- Listeners -->
       <!-- Seam -->
       <listener>
       <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
       </listener>
      
      
       <!-- Filters -->
       <!-- Seam -->
       <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>
      
       <!-- Servlets -->
       <!-- Seam -->
       <servlet>
       <servlet-name>Seam Resource Servlet</servlet-name>
       <servlet-class>
       org.jboss.seam.servlet.ResourceServlet
       </servlet-class>
       </servlet>
       <servlet-mapping>
       <servlet-name>Seam Resource Servlet</servlet-name>
       <url-pattern>/seam/resource/*</url-pattern>
       </servlet-mapping>
      
       <!-- JSF -->
       <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>
      
       <!-- ContextParams -->
       <!-- Facelets -->
       <context-param>
       <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
       <param-value>com.sun.facelets.FaceletViewHandler</param-value>
       </context-param>
       <context-param>
       <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
       <param-value>.xhtml</param-value>
       </context-param>
       <context-param>
       <param-name>facelets.DEVELOPMENT</param-name>
       <param-value>true</param-value>
       </context-param>
       <context-param>
       <param-name>facelets.REFRESH_PERIOD</param-name>
       <param-value>2</param-value>
       </context-param>
      
       <!-- Richfaces -->
       <context-param>
       <param-name>org.richfaces.SKIN</param-name>
       <param-value>classic</param-value>
       </context-param>
      
      </web-app>
      


      Here is the full stack trace of the exception :

      javax.servlet.ServletException: Servlet execution threw an exception
       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:313
      )
       at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
       at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:73)
       at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:177)
       at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:267)
       at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:380)
       at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:507)
       at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.web.HotDeployFilter.doFilter(HotDeployFilter.java:53)
       at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
       at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235
      )
       at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
       at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235
      )
       at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
       at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
       at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
       at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
      
       at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
       at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablish
      mentValve.java:126)
       at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishm
      entValve.java:70)
       at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
       at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
       at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
       at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
       at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
       at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
       at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
      
       at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
       at java.lang.Thread.run(Unknown Source)
      Caused by: java.lang.NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler
       at java.lang.ClassLoader.defineClass1(Native Method)
       at java.lang.ClassLoader.defineClass(Unknown Source)
       at org.jboss.classloader.spi.base.BaseClassLoader.access$200(BaseClassLoader.java:62)
       at org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:509)
       at org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:469)
       at java.security.AccessController.doPrivileged(Native Method)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:467)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:444)
       at org.jboss.classloader.spi.base.BaseDelegateLoader.loadClass(BaseDelegateLoader.java:134)
       at org.jboss.classloader.spi.filter.FilteredDelegateLoader.loadClass(FilteredDelegateLoader.java:13
      1)
       at org.jboss.classloader.spi.base.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:452)
       at org.jboss.classloader.spi.base.ClassLoaderManager.nextTask(ClassLoaderManager.java:254)
       at org.jboss.classloader.spi.base.ClassLoaderManager.process(ClassLoaderManager.java:148)
       at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:256)
       at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1099)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:735)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:378)
       at java.lang.ClassLoader.loadClass(Unknown Source)
       at java.lang.ClassLoader.loadClassInternal(Unknown Source)
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Unknown Source)
       at org.jboss.classloader.plugins.loader.ClassLoaderToLoaderAdapter.loadClass(ClassLoaderToLoaderAda
      pter.java:173)
       at org.jboss.classloader.spi.ClassLoaderDomain.loadClassFromParent(ClassLoaderDomain.java:352)
       at org.jboss.classloader.spi.ClassLoaderDomain.loadClassAfter(ClassLoaderDomain.java:323)
       at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:262)
       at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1099)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:735)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:378)
       at java.lang.ClassLoader.loadClass(Unknown Source)
       at java.lang.ClassLoader.loadClass(Unknown Source)
       at java.lang.ClassLoader.loadClassInternal(Unknown Source)
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Unknown Source)
       at com.sun.facelets.util.ReflectionUtil.forName(ReflectionUtil.java:36)
       at com.sun.facelets.compiler.TagLibraryConfig$LibraryHandler.createClass(TagLibraryConfig.java:291)
      
       at com.sun.facelets.compiler.TagLibraryConfig$LibraryHandler.endElement(TagLibraryConfig.java:210)
       at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
       at org.apache.xerces.impl.dtd.XMLDTDValidator.endNamespaceScope(Unknown Source)
       at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown Source)
       at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)
       at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
       at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
       Source)
       at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
       at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
       at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
       at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
       at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
       at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
       at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)
       at javax.xml.parsers.SAXParser.parse(Unknown Source)
       at com.sun.facelets.compiler.TagLibraryConfig.create(TagLibraryConfig.java:407)
       at com.sun.facelets.compiler.TagLibraryConfig.loadImplicit(TagLibraryConfig.java:431)
       at com.sun.facelets.compiler.Compiler.initialize(Compiler.java:87)
       at com.sun.facelets.compiler.Compiler.compile(Compiler.java:104)
       at com.sun.facelets.impl.DefaultFaceletFactory.createFacelet(DefaultFaceletFactory.java:218)
       at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:149)
       at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:100)
       at com.sun.facelets.FaceletViewHandler.buildView(FaceletViewHandler.java:517)
       at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:567)
       at org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
       at org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:196)
       at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
       at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
       at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
       at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290
      )
       ... 42 more
      Caused by: java.lang.ClassNotFoundException: com.sun.facelets.tag.jsf.ComponentHandler
       at java.net.URLClassLoader$1.run(Unknown Source)
       at java.security.AccessController.doPrivileged(Native Method)
       at java.net.URLClassLoader.findClass(Unknown Source)
       at java.lang.ClassLoader.loadClass(Unknown Source)
       at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
       at java.lang.ClassLoader.loadClass(Unknown Source)
       at java.lang.ClassLoader.loadClassInternal(Unknown Source)
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Unknown Source)
       at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:276)
       at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1099)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:735)
       at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:378)
       at java.lang.ClassLoader.loadClass(Unknown Source)
       at java.lang.ClassLoader.loadClassInternal(Unknown Source)
       ... 108 more
      


      Thanks
      Martin


        • 2. Re: Problem with facelets when switching to Jboss 5.0
          misqu23

          I'm afraid none of them ;(

          We have got also our own listeners (I didn't included configuration in the web.xml) and they works fine.


          We deploy our app as an explded ear and war within it, our folders do have the .ear and .war endings.

          We have got also problem with missing libraries but when we switch to the facelets from seam distribution problem dissapear.

          • 3. Re: Problem with facelets when switching to Jboss 5.0
            alesj

            The stacktrace doesn't tell me anything. ;-)
            Post more detailed classloader info at CNFE.
            It should be there, showing the vfs roots that constitute your classpath.

            • 4. Re: Problem with facelets when switching to Jboss 5.0
              misqu23

              I don't know what it is CNFE.

              Below I post full console log when the serwer starts and when I hit the login page.
              I can also post the boot.log and server.log.


              
              17:25:57,500 INFO [ServerImpl] Starting JBoss (Microcontainer)...
              17:25:57,500 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)
              17:25:57,500 INFO [ServerImpl] Bootstrap URL: null
              17:25:57,515 INFO [ServerImpl] Home Dir: C:\scentia\jboss-eas
              17:25:57,515 INFO [ServerImpl] Home URL: file:/C:/scentia/jboss-eas/
              17:25:57,515 INFO [ServerImpl] Library URL: file:/C:/scentia/jboss-eas/lib/
              17:25:57,515 INFO [ServerImpl] Patch URL: null
              17:25:57,515 INFO [ServerImpl] Common Base URL: file:/C:/scentia/jboss-eas/common/
              17:25:57,515 INFO [ServerImpl] Common Library URL: file:/C:/scentia/jboss-eas/common/lib/
              17:25:57,515 INFO [ServerImpl] Server Name: default
              17:25:57,515 INFO [ServerImpl] Server Base Dir: C:\scentia\jboss-eas\server
              17:25:57,515 INFO [ServerImpl] Server Base URL: file:/C:/scentia/jboss-eas/server/
              17:25:57,515 INFO [ServerImpl] Server Config URL: file:/C:/scentia/jboss-eas/server/default/conf/
              17:25:57,515 INFO [ServerImpl] Server Home Dir: C:\scentia\jboss-eas\server\default
              17:25:57,515 INFO [ServerImpl] Server Home URL: file:/C:/scentia/jboss-eas/server/default/
              17:25:57,515 INFO [ServerImpl] Server Data Dir: C:\scentia\jboss-eas\server\default\data
              17:25:57,515 INFO [ServerImpl] Server Library URL: file:/C:/scentia/jboss-eas/server/default/lib/
              17:25:57,515 INFO [ServerImpl] Server Log Dir: C:\scentia\jboss-eas\server\default\log
              17:25:57,515 INFO [ServerImpl] Server Native Dir: C:\scentia\jboss-eas\server\default\tmp\native
              17:25:57,515 INFO [ServerImpl] Server Temp Dir: C:\scentia\jboss-eas\server\default\tmp
              17:25:57,515 INFO [ServerImpl] Server Temp Deploy Dir: C:\scentia\jboss-eas\server\default\tmp\deploy
              17:25:58,687 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/scentia/jboss-eas/server/default/conf/bootstrap.xml
              17:25:59,734 INFO [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.IterableTimedVFSCache]
              17:25:59,750 INFO [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution=60}]
              17:26:00,406 INFO [CopyMechanism] VFS temp dir: C:\scentia\jboss-eas\server\default\tmp
              17:26:00,468 INFO [ZipEntryContext] VFS force nested jars copy-mode is enabled.
              17:26:02,546 INFO [ServerInfo] Java version: 1.6.0_11,Sun Microsystems Inc.
              17:26:02,546 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 11.0-b16,Sun Microsystems Inc.
              17:26:02,546 INFO [ServerInfo] OS-System: Windows XP 5.1,x86
              17:26:02,734 INFO [JMXKernel] Legacy JMX core initialized
              17:26:05,812 INFO [ProfileServiceImpl] Loading profile: default from: org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@4fd0e9(root=C:\scentia\jboss-eas\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
              17:26:05,812 INFO [ProfileImpl] Using repository:org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@4fd0e9(root=C:\scentia\jboss-eas\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
              17:26:05,812 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl@171d691{key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default]}
              17:26:09,031 INFO [WebService] Using RMI server codebase: http://localhost:8083/
              17:26:23,125 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
              17:26:23,125 INFO [NativeServerConfig] 3.0.4.SP1
              17:26:47,062 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@4128481{vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/jboss-seam.jar}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@4128481{vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/jboss-seam.jar}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30371356{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.business.jar/}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30371356{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.business.jar/}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30371356{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.business.jar/}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30371356{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.business.jar/}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@21363834{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.model.jar/}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@21363834{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.model.jar/}
              17:26:47,078 INFO [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@21363834{vfsfile:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.model.jar/}
              17:26:52,984 INFO [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://localhost/jndi/rmi://localhost:1090/jmxconnector
              17:26:53,703 INFO [MailService] Mail Service bound to java:/Mail
              17:26:59,406 WARN [JBossASSecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
              17:26:59,453 WARN [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
              17:26:59,906 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
              17:26:59,906 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer
              17:27:01,484 INFO [TransactionManagerService] Initializing recovery manager
              17:27:02,046 INFO [TransactionManagerService] Recovery manager configured
              17:27:02,046 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference
              17:27:02,125 INFO [TransactionManagerService] Starting transaction recovery manager
              17:27:04,421 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-localhost%2F127.0.0.1-8080
              17:27:04,437 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
              17:27:04,437 INFO [StandardService] Starting service jboss.web
              17:27:04,437 INFO [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.1.GA
              17:27:04,734 INFO [Catalina] Server startup in 518 ms
              17:27:04,781 INFO [TomcatDeployment] deploy, ctxPath=/invoker, vfsUrl=http-invoker.sar/invoker.war
              17:27:06,765 INFO [TomcatDeployment] deploy, ctxPath=/web-console, vfsUrl=management/console-mgr.sar/web-console.war
              17:27:08,562 INFO [TomcatDeployment] deploy, ctxPath=/jbossws, vfsUrl=jbossws.sar/jbossws-management.war
              17:27:08,921 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/scentia/jboss-eas/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
              17:27:08,984 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/scentia/jboss-eas/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
              17:27:09,031 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/scentia/jboss-eas/server/default/deploy/jms-ra.rar/META-INF/ra.xml
              17:27:09,093 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/scentia/jboss-eas/server/default/deploy/mail-ra.rar/META-INF/ra.xml
              17:27:09,203 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/scentia/jboss-eas/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
              17:27:09,578 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
              17:27:09,671 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
              17:27:09,671 INFO [RAMJobStore] RAMJobStore initialized.
              17:27:09,671 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
              17:27:09,671 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
              17:27:09,671 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
              17:27:09,843 INFO [DerbyDatabase] starting derby jdbc:derby:C:\scentia\jboss-eas\server\default\data/derby/smartofficeDB;create=true
              17:27:19,296 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=smartofficeDS' to JNDI name 'java:smartofficeDS'
              17:27:20,671 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
              17:27:21,593 WARN [QuartzTimerServiceFactory] sql failed: CREATE TABLE QRTZ_JOB_DETAILS(JOB_NAME VARCHAR(80) NOT NULL, JOB_GROUP VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(120) NULL, JOB_CLASS_NAME VARCHAR(128) NOT NULL, IS_DURABLE VARCHAR(1) NOT NULL, IS_VOLATILE VARCHAR(1) NOT NULL, IS_STATEFUL VARCHAR(1) NOT NULL, REQUESTS_RECOVERY VARCHAR(1) NOT NULL, JOB_DATA BINARY NULL, PRIMARY KEY (JOB_NAME,JOB_GROUP))
              17:27:21,812 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
              17:27:21,812 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
              17:27:21,812 INFO [JobStoreCMT] Using db table-based data access locking (synchronization).
              17:27:21,906 INFO [JobStoreCMT] Removed 0 Volatile Trigger(s).
              17:27:21,906 INFO [JobStoreCMT] Removed 0 Volatile Job(s).
              17:27:21,906 INFO [JobStoreCMT] JobStoreCMT initialized.
              17:27:21,906 INFO [StdSchedulerFactory] Quartz scheduler 'JBossEJB3QuartzScheduler' initialized from an externally provided properties instance.
              17:27:21,906 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
              17:27:21,906 INFO [JobStoreCMT] Freed 0 triggers from 'acquired' / 'blocked' state.
              17:27:21,906 INFO [JobStoreCMT] Recovering 0 jobs that were in-progress at the time of the last shut-down.
              17:27:21,906 INFO [JobStoreCMT] Recovery complete.
              17:27:21,906 INFO [JobStoreCMT] Removed 0 'complete' triggers.
              17:27:21,906 INFO [JobStoreCMT] Removed 0 stale fired job entries.
              17:27:21,937 INFO [QuartzScheduler] Scheduler JBossEJB3QuartzScheduler_$_NON_CLUSTERED started.
              17:27:22,640 INFO [ServerPeer] JBoss Messaging 1.4.1.GA server [0] started
              17:27:24,250 INFO [ConnectionFactory] Connector bisocket://localhost:4457 has leasing enabled, lease period 10000 milliseconds
              17:27:24,250 INFO [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@1e07991 started
              17:27:24,250 WARN [ConnectionFactoryJNDIMapper] supportsFailover attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support failover
              17:27:24,250 WARN [ConnectionFactoryJNDIMapper] supportsLoadBalancing attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support load balancing
              17:27:24,281 INFO [ConnectionFactory] Connector bisocket://localhost:4457 has leasing enabled, lease period 10000 milliseconds
              17:27:24,281 INFO [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@172ebc1 started
              17:27:24,281 INFO [ConnectionFactory] Connector bisocket://localhost:4457 has leasing enabled, lease period 10000 milliseconds
              17:27:24,281 INFO [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@b86e48 started
              17:27:24,328 INFO [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
              17:27:24,328 INFO [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
              17:27:24,953 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
              17:27:25,000 INFO [TomcatDeployment] deploy, ctxPath=/, vfsUrl=ROOT.war
              17:27:25,234 INFO [TomcatDeployment] deploy, ctxPath=/jmx-console, vfsUrl=jmx-console.war
              17:27:35,078 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1928df
              17:27:35,125 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1928df
              17:27:35,343 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1928df
              17:27:35,359 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1928df
              17:27:36,656 INFO [JBossASKernel] Created KernelDeployment for: jboss-seam.jar
              17:27:36,687 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher,service=EJB3
              17:27:36,687 INFO [JBossASKernel] with dependencies:
              17:27:36,687 INFO [JBossASKernel] and demands:
              17:27:36,687 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:36,687 INFO [JBossASKernel] and supplies:
              17:27:36,687 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TimerServiceDispatcher/local-org.jboss.seam.async.LocalTimerServiceDispatcher
              17:27:36,687 INFO [JBossASKernel] Class:org.jboss.seam.async.LocalTimerServiceDispatcher
              17:27:36,687 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TimerServiceDispatcher/remote
              17:27:36,687 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TimerServiceDispatcher/local
              17:27:36,687 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher,service=EJB3) to KernelDeployment of: jboss-seam.jar
              17:27:36,687 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=jboss-seam.jar,name=EjbSynchronizations,service=EJB3
              17:27:36,687 INFO [JBossASKernel] with dependencies:
              17:27:36,687 INFO [JBossASKernel] and demands:
              17:27:36,687 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:36,687 INFO [JBossASKernel] and supplies:
              17:27:36,687 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/EjbSynchronizations/remote
              17:27:36,687 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/EjbSynchronizations/local
              17:27:36,687 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/EjbSynchronizations/local-org.jboss.seam.transaction.LocalEjbSynchronizations
              17:27:36,687 INFO [JBossASKernel] Class:org.jboss.seam.transaction.LocalEjbSynchronizations
              17:27:36,687 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=jboss-seam.jar,name=EjbSynchronizations,service=EJB3) to KernelDeployment of: jboss-seam.jar
              17:27:51,171 WARN [Ejb3AnnotationHandler] JBMETA-4: did not find any bean meta data for annotation bean TimerServiceDispatcher, will create some
              17:27:51,312 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@185ed18
              17:27:51,390 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@185ed18
              17:27:51,421 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@185ed18
              17:27:51,468 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@185ed18
              17:27:51,640 WARN [Ejb3AnnotationHandler] JBMETA-4: did not find any bean meta data for annotation bean EjbSynchronizations, will create some
              17:27:54,234 INFO [JBossASKernel] Created KernelDeployment for: pl.scentia.smartoffice.business.jar
              17:27:54,234 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ContactActionBean,service=EJB3
              17:27:54,234 INFO [JBossASKernel] with dependencies:
              17:27:54,234 INFO [JBossASKernel] and demands:
              17:27:54,234 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,234 INFO [JBossASKernel] and supplies:
              17:27:54,234 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IContactBeanLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ContactActionBean/local-pl.scentia.smartcrm.business.interfaces.IContactBeanLocal
              17:27:54,234 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ContactActionBean/local
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ContactActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ContactActionBean/remote
              17:27:54,234 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ContactActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,234 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerActionBean,service=EJB3
              17:27:54,234 INFO [JBossASKernel] with dependencies:
              17:27:54,234 INFO [JBossASKernel] and demands:
              17:27:54,234 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,234 INFO [JBossASKernel] and supplies:
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerActionBean/local
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerActionBean/remote
              17:27:54,234 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,234 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.ICustomerActionLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerActionBean/local-pl.scentia.smartcrm.business.interfaces.ICustomerActionLocal
              17:27:54,234 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,234 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerSingleViewAction,service=EJB3
              17:27:54,234 INFO [JBossASKernel] with dependencies:
              17:27:54,234 INFO [JBossASKernel] and demands:
              17:27:54,234 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,234 INFO [JBossASKernel] and supplies:
              17:27:54,234 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.ICustomerSingleViewLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerSingleViewAction/local-pl.scentia.smartcrm.business.interfaces.ICustomerSingleViewLocal
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerSingleViewAction/remote
              17:27:54,234 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerSingleViewAction/local
              17:27:54,234 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerSingleViewAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerUploadAction,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerUploadAction/local
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerUploadAction/local-pl.scentia.smartcrm.business.interfaces.ICustomerUploadLocal
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.ICustomerUploadLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CustomerUploadAction/remote
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerUploadAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InBoxActionBean,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IInBoxLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InBoxActionBean/local-pl.scentia.smartcrm.business.interfaces.IInBoxLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InBoxActionBean/local
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InBoxActionBean/remote
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InBoxActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TaskManagerAction,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TaskManagerAction/local-pl.scentia.smartcrm.business.interfaces.ITaskManagerLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TaskManagerAction/remote
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TaskManagerAction/local
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.ITaskManagerLocal
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TaskManagerAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InvoiceAction,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceAction/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceAction/local
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceAction/remote
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.invoice.IInvoiceLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceAction/local-pl.scentia.smartcrm.business.invoice.IInvoiceLocal
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InvoiceAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InvoiceTest,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceTest/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceTest/remote
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceTest/local
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.invoice.IInvoiceTest
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/InvoiceTest/local-pl.scentia.smartcrm.business.invoice.IInvoiceTest
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InvoiceTest,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=LoginAction,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/LoginAction/remote
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/LoginAction/local-pl.scentia.smartcrm.business.interfaces.ILoginLocal
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.ILoginLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/LoginAction/local
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=LoginAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,250 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=NewsTableAction,service=EJB3
              17:27:54,250 INFO [JBossASKernel] with dependencies:
              17:27:54,250 INFO [JBossASKernel] and demands:
              17:27:54,250 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,250 INFO [JBossASKernel] and supplies:
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/NewsTableAction/local-pl.scentia.smartcrm.business.interfaces.INewsTableLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/NewsTableAction/remote
              17:27:54,250 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.INewsTableLocal
              17:27:54,250 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/NewsTableAction/local
              17:27:54,250 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=NewsTableAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,265 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=DocumentActionBean,service=EJB3
              17:27:54,265 INFO [JBossASKernel] with dependencies:
              17:27:54,265 INFO [JBossASKernel] and demands:
              17:27:54,265 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,265 INFO [JBossASKernel] and supplies:
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/DocumentActionBean/local-pl.scentia.smartcrm.business.interfaces.IDocumentActionLocal
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/DocumentActionBean/local
              17:27:54,265 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IDocumentActionLocal
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/DocumentActionBean/remote
              17:27:54,265 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=DocumentActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,265 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=FieldActionBean,service=EJB3
              17:27:54,265 INFO [JBossASKernel] with dependencies:
              17:27:54,265 INFO [JBossASKernel] and demands:
              17:27:54,265 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,265 INFO [JBossASKernel] and supplies:
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FieldActionBean/local-pl.scentia.smartcrm.business.interfaces.IFieldLocal
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FieldActionBean/remote
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FieldActionBean/local
              17:27:54,265 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IFieldLocal
              17:27:54,265 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=FieldActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,265 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ProcessActionBean,service=EJB3
              17:27:54,265 INFO [JBossASKernel] with dependencies:
              17:27:54,265 INFO [JBossASKernel] and demands:
              17:27:54,265 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,265 INFO [JBossASKernel] and supplies:
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ProcessActionBean/remote
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ProcessActionBean/local
              17:27:54,265 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IProcessBeanLocal
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ProcessActionBean/local-pl.scentia.smartcrm.business.interfaces.IProcessBeanLocal
              17:27:54,265 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ProcessActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,265 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ReportGeneratorAction,service=EJB3
              17:27:54,265 INFO [JBossASKernel] with dependencies:
              17:27:54,265 INFO [JBossASKernel] and demands:
              17:27:54,265 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,265 INFO [JBossASKernel] and supplies:
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ReportGeneratorAction/remote
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ReportGeneratorAction/local
              17:27:54,265 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IReportGeneratorLocal
              17:27:54,265 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/ReportGeneratorAction/local-pl.scentia.smartcrm.business.interfaces.IReportGeneratorLocal
              17:27:54,265 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ReportGeneratorAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,281 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=FileRepositoryAction,service=EJB3
              17:27:54,281 INFO [JBossASKernel] with dependencies:
              17:27:54,281 INFO [JBossASKernel] and demands:
              17:27:54,281 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,281 INFO [JBossASKernel] and supplies:
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FileRepositoryAction/local
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FileRepositoryAction/local-pl.scentia.smartcrm.business.interfaces.IFileRepositoryLocal
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FileRepositoryAction/remote
              17:27:54,281 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IFileRepositoryLocal
              17:27:54,281 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/FileRepositoryAction/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,281 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=FileRepositoryAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,281 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CampaignActionBean,service=EJB3
              17:27:54,281 INFO [JBossASKernel] with dependencies:
              17:27:54,281 INFO [JBossASKernel] and demands:
              17:27:54,281 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,281 INFO [JBossASKernel] and supplies:
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CampaignActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CampaignActionBean/local
              17:27:54,281 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,281 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/CampaignActionBean/remote
              17:27:54,281 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CampaignActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,281 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=NetworkAccountAction,service=EJB3
              17:27:54,281 INFO [JBossASKernel] with dependencies:
              17:27:54,281 INFO [JBossASKernel] and demands:
              17:27:54,296 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,296 INFO [JBossASKernel] and supplies:
              17:27:54,296 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/NetworkAccountAction/remote
              17:27:54,296 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/NetworkAccountAction/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,296 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/NetworkAccountAction/local
              17:27:54,296 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,296 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=NetworkAccountAction,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,296 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TransactionListenerBean,service=EJB3
              17:27:54,296 INFO [JBossASKernel] with dependencies:
              17:27:54,296 INFO [JBossASKernel] and demands:
              17:27:54,296 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,296 INFO [JBossASKernel] and supplies:
              17:27:54,296 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TransactionListenerBean/local
              17:27:54,296 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TransactionListenerBean/remote
              17:27:54,296 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.ITransactionListenerLocal
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/TransactionListenerBean/local-pl.scentia.smartcrm.business.interfaces.ITransactionListenerLocal
              17:27:54,312 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TransactionListenerBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,312 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=OperationActionBean,service=EJB3
              17:27:54,312 INFO [JBossASKernel] with dependencies:
              17:27:54,312 INFO [JBossASKernel] and demands:
              17:27:54,312 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,312 INFO [JBossASKernel] and supplies:
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/OperationActionBean/remote
              17:27:54,312 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/OperationActionBean/local-pl.scentia.smartcrm.business.interfaces.IOperationActionLocal
              17:27:54,312 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IOperationActionLocal
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/OperationActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/OperationActionBean/local
              17:27:54,312 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=OperationActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,312 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=PaymentActionBean,service=EJB3
              17:27:54,312 INFO [JBossASKernel] with dependencies:
              17:27:54,312 INFO [JBossASKernel] and demands:
              17:27:54,312 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,312 INFO [JBossASKernel] and supplies:
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/PaymentActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/PaymentActionBean/local
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/PaymentActionBean/remote
              17:27:54,312 INFO [JBossASKernel] jndi:pl.scentia.smartoffice.ear/PaymentActionBean/local-pl.scentia.smartcrm.business.interfaces.IPaymentActionLocal
              17:27:54,312 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal
              17:27:54,312 INFO [JBossASKernel] Class:pl.scentia.smartcrm.business.interfaces.IPaymentActionLocal
              17:27:54,312 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=PaymentActionBean,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,312 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TimerServiceDispatcher,service=EJB3
              17:27:54,312 INFO [JBossASKernel] with dependencies:
              17:27:54,312 INFO [JBossASKernel] and demands:
              17:27:54,312 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,312 INFO [JBossASKernel] and supplies:
              17:27:54,312 INFO [JBossASKernel] Class:org.jboss.seam.async.LocalTimerServiceDispatcher
              17:27:54,312 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TimerServiceDispatcher,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,312 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=EjbSynchronizations,service=EJB3
              17:27:54,312 INFO [JBossASKernel] with dependencies:
              17:27:54,312 INFO [JBossASKernel] and demands:
              17:27:54,312 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:54,312 INFO [JBossASKernel] and supplies:
              17:27:54,312 INFO [JBossASKernel] Class:org.jboss.seam.transaction.LocalEjbSynchronizations
              17:27:54,312 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=EjbSynchronizations,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.business.jar
              17:27:54,421 WARN [Ejb3AnnotationHandler] JBMETA-4: did not find any bean meta data for annotation bean TimerServiceDispatcher, will create some
              17:27:54,562 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1162507
              17:27:54,593 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1162507
              17:27:54,625 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1162507
              17:27:54,671 WARN [InjectInterceptorsFactory] WEIRDNESS IN AOP: advisor org.jboss.ejb3.aop.ExtendedManagedObjectAdvisor@1162507
              17:27:54,812 WARN [Ejb3AnnotationHandler] JBMETA-4: did not find any bean meta data for annotation bean EjbSynchronizations, will create some
              17:27:55,375 INFO [JBossASKernel] Created KernelDeployment for: pl.scentia.smartoffice.model.jar
              17:27:55,375 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.model.jar,name=TimerServiceDispatcher,service=EJB3
              17:27:55,375 INFO [JBossASKernel] with dependencies:
              17:27:55,375 INFO [JBossASKernel] and demands:
              17:27:55,375 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:55,375 INFO [JBossASKernel] and supplies:
              17:27:55,375 INFO [JBossASKernel] Class:org.jboss.seam.async.LocalTimerServiceDispatcher
              17:27:55,375 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.model.jar,name=TimerServiceDispatcher,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.model.jar
              17:27:55,390 INFO [JBossASKernel] installing bean: jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.model.jar,name=EjbSynchronizations,service=EJB3
              17:27:55,390 INFO [JBossASKernel] with dependencies:
              17:27:55,390 INFO [JBossASKernel] and demands:
              17:27:55,390 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
              17:27:55,390 INFO [JBossASKernel] and supplies:
              17:27:55,390 INFO [JBossASKernel] Class:org.jboss.seam.transaction.LocalEjbSynchronizations
              17:27:55,390 INFO [JBossASKernel] Added bean(jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.model.jar,name=EjbSynchronizations,service=EJB3) to KernelDeployment of: pl.scentia.smartoffice.model.jar
              17:27:55,703 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher,service=EJB3
              17:27:55,812 INFO [EJBContainer] STARTED EJB: org.jboss.seam.async.TimerServiceDispatcher ejbName: TimerServiceDispatcher
              17:27:55,921 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/TimerServiceDispatcher/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/TimerServiceDispatcher/local-org.jboss.seam.async.LocalTimerServiceDispatcher - EJB3.x Local Business Interface
              
              17:27:56,156 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=jboss-seam.jar,name=EjbSynchronizations,service=EJB3
              17:27:56,156 INFO [EJBContainer] STARTED EJB: org.jboss.seam.transaction.EjbSynchronizations ejbName: EjbSynchronizations
              17:27:56,234 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/EjbSynchronizations/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/EjbSynchronizations/local-org.jboss.seam.transaction.LocalEjbSynchronizations - EJB3.x Local Business Interface
              
              17:27:56,437 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ContactActionBean,service=EJB3
              17:27:56,437 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.customer.ContactActionBean ejbName: ContactActionBean
              17:27:56,484 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/ContactActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/ContactActionBean/local-pl.scentia.smartcrm.business.interfaces.IContactBeanLocal - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/ContactActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:56,562 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerActionBean,service=EJB3
              17:27:56,562 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.customer.CustomerActionBean ejbName: CustomerActionBean
              17:27:56,625 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/CustomerActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/CustomerActionBean/local-pl.scentia.smartcrm.business.interfaces.ICustomerActionLocal - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/CustomerActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:56,687 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerSingleViewAction,service=EJB3
              17:27:56,687 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.customer.CustomerSingleViewAction ejbName: CustomerSingleViewAction
              17:27:56,703 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/CustomerSingleViewAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/CustomerSingleViewAction/local-pl.scentia.smartcrm.business.interfaces.ICustomerSingleViewLocal - EJB3.x Local Business Interface
              
              17:27:56,781 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CustomerUploadAction,service=EJB3
              17:27:56,781 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.customer.CustomerUploadAction ejbName: CustomerUploadAction
              17:27:56,828 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/CustomerUploadAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/CustomerUploadAction/local-pl.scentia.smartcrm.business.interfaces.ICustomerUploadLocal - EJB3.x Local Business Interface
              
              17:27:56,921 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InBoxActionBean,service=EJB3
              17:27:56,921 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.inbox.InBoxActionBean ejbName: InBoxActionBean
              17:27:56,968 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/InBoxActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/InBoxActionBean/local-pl.scentia.smartcrm.business.interfaces.IInBoxLocal - EJB3.x Local Business Interface
              
              17:27:57,062 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TaskManagerAction,service=EJB3
              17:27:57,062 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.inbox.TaskManagerAction ejbName: TaskManagerAction
              17:27:57,109 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/TaskManagerAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/TaskManagerAction/local-pl.scentia.smartcrm.business.interfaces.ITaskManagerLocal - EJB3.x Local Business Interface
              
              17:27:57,187 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InvoiceAction,service=EJB3
              17:27:57,187 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.invoice.InvoiceAction ejbName: InvoiceAction
              17:27:57,265 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/InvoiceAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/InvoiceAction/local-pl.scentia.smartcrm.business.invoice.IInvoiceLocal - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/InvoiceAction/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:57,343 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=InvoiceTest,service=EJB3
              17:27:57,343 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.invoice.InvoiceTest ejbName: InvoiceTest
              17:27:57,375 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/InvoiceTest/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/InvoiceTest/local-pl.scentia.smartcrm.business.invoice.IInvoiceTest - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/InvoiceTest/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:57,437 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=LoginAction,service=EJB3
              17:27:57,437 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.login.LoginAction ejbName: LoginAction
              17:27:57,484 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/LoginAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/LoginAction/local-pl.scentia.smartcrm.business.interfaces.ILoginLocal - EJB3.x Local Business Interface
              
              17:27:57,593 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=NewsTableAction,service=EJB3
              17:27:57,593 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.news.NewsTableAction ejbName: NewsTableAction
              17:27:57,640 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/NewsTableAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/NewsTableAction/local-pl.scentia.smartcrm.business.interfaces.INewsTableLocal - EJB3.x Local Business Interface
              
              17:27:57,718 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=DocumentActionBean,service=EJB3
              17:27:57,718 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.process.DocumentActionBean ejbName: DocumentActionBean
              17:27:57,781 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/DocumentActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/DocumentActionBean/local-pl.scentia.smartcrm.business.interfaces.IDocumentActionLocal - EJB3.x Local Business Interface
              
              17:27:57,875 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=FieldActionBean,service=EJB3
              17:27:57,875 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.process.FieldActionBean ejbName: FieldActionBean
              17:27:57,921 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/FieldActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/FieldActionBean/local-pl.scentia.smartcrm.business.interfaces.IFieldLocal - EJB3.x Local Business Interface
              
              17:27:57,968 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ProcessActionBean,service=EJB3
              17:27:57,968 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.process.ProcessActionBean ejbName: ProcessActionBean
              17:27:58,031 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/ProcessActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/ProcessActionBean/local-pl.scentia.smartcrm.business.interfaces.IProcessBeanLocal - EJB3.x Local Business Interface
              
              17:27:58,109 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=ReportGeneratorAction,service=EJB3
              17:27:58,109 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.reports.ReportGeneratorAction ejbName: ReportGeneratorAction
              17:27:58,125 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/ReportGeneratorAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/ReportGeneratorAction/local-pl.scentia.smartcrm.business.interfaces.IReportGeneratorLocal - EJB3.x Local Business Interface
              
              17:27:58,203 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=FileRepositoryAction,service=EJB3
              17:27:58,203 INFO [EJBContainer] STARTED EJB: pl.scentia.smartcrm.business.repository.FileRepositoryAction ejbName: FileRepositoryAction
              17:27:58,265 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/FileRepositoryAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/FileRepositoryAction/local-pl.scentia.smartcrm.business.interfaces.IFileRepositoryLocal - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/FileRepositoryAction/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:58,359 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=CampaignActionBean,service=EJB3
              17:27:58,359 INFO [EJBContainer] STARTED EJB: pl.scentia.smartnet.business.campaign.CampaignActionBean ejbName: CampaignActionBean
              17:27:58,375 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/CampaignActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/CampaignActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:58,468 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=NetworkAccountAction,service=EJB3
              17:27:58,468 INFO [EJBContainer] STARTED EJB: pl.scentia.smartnet.business.network.NetworkAccountAction ejbName: NetworkAccountAction
              17:27:58,484 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/NetworkAccountAction/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/NetworkAccountAction/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:58,546 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TransactionListenerBean,service=EJB3
              17:27:58,546 INFO [EJBContainer] STARTED EJB: pl.scentia.smartnet.business.network.TransactionListenerBean ejbName: TransactionListenerBean
              17:27:58,609 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/TransactionListenerBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/TransactionListenerBean/local-pl.scentia.smartcrm.business.interfaces.ITransactionListenerLocal - EJB3.x Local Business Interface
              
              17:27:58,671 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=OperationActionBean,service=EJB3
              17:27:58,671 INFO [EJBContainer] STARTED EJB: pl.scentia.smartnet.business.operations.OperationActionBean ejbName: OperationActionBean
              17:27:58,703 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/OperationActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/OperationActionBean/local-pl.scentia.smartcrm.business.interfaces.IOperationActionLocal - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/OperationActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:58,765 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=PaymentActionBean,service=EJB3
              17:27:58,781 INFO [EJBContainer] STARTED EJB: pl.scentia.smartnet.business.payments.PaymentActionBean ejbName: PaymentActionBean
              17:27:58,843 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
               pl.scentia.smartoffice.ear/PaymentActionBean/local - EJB3.x Default Local Business Interface
               pl.scentia.smartoffice.ear/PaymentActionBean/local-pl.scentia.smartcrm.business.interfaces.IPaymentActionLocal - EJB3.x Local Business Interface
               pl.scentia.smartoffice.ear/PaymentActionBean/local-pl.scentia.smartcrm.business.interfaces.IEntityManagerLocal - EJB3.x Local Business Interface
              
              17:27:58,937 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=TimerServiceDispatcher,service=EJB3
              17:27:58,937 INFO [EJBContainer] STARTED EJB: org.jboss.seam.async.TimerServiceDispatcher ejbName: TimerServiceDispatcher
              17:27:58,937 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
              
              17:27:59,046 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.business.jar,name=EjbSynchronizations,service=EJB3
              17:27:59,046 INFO [EJBContainer] STARTED EJB: org.jboss.seam.transaction.EjbSynchronizations ejbName: EjbSynchronizations
              17:27:59,046 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
              
              17:27:59,093 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.model.jar,name=TimerServiceDispatcher,service=EJB3
              17:27:59,093 INFO [EJBContainer] STARTED EJB: org.jboss.seam.async.TimerServiceDispatcher ejbName: TimerServiceDispatcher
              17:27:59,093 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
              
              17:27:59,187 INFO [SessionSpecContainer] Starting jboss.j2ee:ear=pl.scentia.smartoffice.ear.ear,jar=pl.scentia.smartoffice.model.jar,name=EjbSynchronizations,service=EJB3
              17:27:59,203 INFO [EJBContainer] STARTED EJB: org.jboss.seam.transaction.EjbSynchronizations ejbName: EjbSynchronizations
              17:27:59,203 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
              
              
              17:27:59,375 INFO [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.model.jar#smartoffice
              17:28:00,078 INFO [Version] Hibernate Annotations 3.4.0.GA
              17:28:00,625 INFO [Environment] Hibernate 3.3.1.GA
              17:28:00,718 INFO [Environment] hibernate.properties not found
              17:28:00,828 INFO [Environment] Bytecode provider name : javassist
              17:28:00,906 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
              17:28:02,281 INFO [Version] Hibernate Commons Annotations 3.1.0.GA
              17:28:02,343 INFO [Version] Hibernate EntityManager 3.4.0.GA
              17:28:02,812 WARN [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
              17:28:03,875 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.customer.Customer
              17:28:04,265 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.customer.Customer on table SMR_CUSTOMERS
              17:28:06,125 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.customer.contact.Contact
              17:28:06,125 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.customer.contact.Contact on table SMR_CONTACTS
              17:28:06,156 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.menu.MenuItem
              17:28:06,156 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.menu.MenuItem on table SMR_MENU_ITEM
              17:28:06,171 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.invoice.number.InvoiceSchema
              17:28:06,171 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.invoice.number.InvoiceSchema on table SMR_INVOICE_NUMER_SCHEMA
              17:28:06,171 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartnet.model.payments.Payment
              17:28:06,171 INFO [EntityBinder] Bind entity pl.scentia.smartnet.model.payments.Payment on table SMR_PAYMENTS
              17:28:06,187 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.product.CategoryEntity
              17:28:06,187 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.product.CategoryEntity on table SMR_CATEGORIES
              17:28:06,203 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.document.forms.WorkOrderForm
              17:28:06,203 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.document.forms.WorkOrderForm on table SMR_WORKORDER_FORM
              17:28:06,218 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartnet.model.payments.Transfer
              17:28:06,218 INFO [EntityBinder] Bind entity pl.scentia.smartnet.model.payments.Transfer on table SMR_TRANSFERS
              17:28:06,234 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.derpartment.DepartmentEntity
              17:28:06,234 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.derpartment.DepartmentEntity on table SMRT_DEPARTMENT
              17:28:06,234 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.invoice.RateVat
              17:28:06,234 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.invoice.RateVat on table SMR_RATE_VAT
              17:28:06,250 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.news.News
              17:28:06,250 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.news.News on table SMR_NEWS
              17:28:06,250 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.document.DocumentDef
              17:28:06,250 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.document.DocumentDef on table SMR_DOCUMENT_DEFS
              17:28:06,265 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.invoice.InvoicePayments
              17:28:06,265 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.invoice.InvoicePayments on table SMR_INVOICE_PAYMENTS
              17:28:06,281 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.document.forms.WorkOrderRecord
              17:28:06,281 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.document.forms.WorkOrderRecord on table SMR_WORKORDER_RECORD
              17:28:06,296 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.invoice.Invoice
              17:28:06,296 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.invoice.Invoice on table SMR_INVOICE
              17:28:06,312 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.document.FieldValue
              17:28:06,312 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.document.FieldValue on table SMR_FIELD_VALUES
              17:28:06,312 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.product.ProductEntity
              17:28:06,312 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.product.ProductEntity on table SMR_PRODUCTS
              17:28:06,328 INFO [AnnotationBinder] Binding entity from annotated class: pl.scentia.smartcrm.model.document.Document
              17:28:06,328 INFO [EntityBinder] Bind entity pl.scentia.smartcrm.model.document.Document on table SMR_DOCUMENTS
              17:28:06,328 INFO [AnnotationBinder] Binding entity fr


              • 5. Re: Problem with facelets when switching to Jboss 5.0
                alesj

                 

                "misqu23" wrote:
                I don't know what it is CNFE.

                ClassNotFoundException. ;-)

                "misqu23" wrote:

                Below I post full console log when the serwer starts and when I hit the login page.

                Where's the exception?

                "misqu23" wrote:

                I can also post the boot.log and server.log.

                No need for all unnecessary info,
                just post a meaningful snippet.

                A debug/warn/error of the cause of when the CNFE pops.

                • 6. Re: Problem with facelets when switching to Jboss 5.0
                  misqu23

                  I guess my post was to long and get stripped.

                  Once again :

                  17:29:44,453 WARN [InterceptorsFactory] EJBTHREE-1246: Do not use InterceptorsFactory with a ManagedObjectAdvisor, InterceptorRegistry should be used via the bean container
                  17:29:44,453 WARN [InterceptorsFactory] EJBTHREE-1246: Do not use InterceptorsFactory with a ManagedObjectAdvisor, InterceptorRegistry should be used via the bean container
                  17:29:44,453 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.beforeCompletion() throws javax.ejb.EJBException,java.rmi.RemoteException
                  17:29:44,484 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterCompletion(boolean) throws javax.ejb.EJBException,java.rmi.RemoteException
                  17:29:44,500 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.destroy()
                  17:29:44,546 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterTransactionBegin()
                  17:29:44,546 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterBegin()
                  17:29:44,562 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.beforeTransactionCommit()
                  17:29:44,562 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.registerSynchronization(javax.transaction.Synchronization)
                  17:29:44,562 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterTransactionCommit(boolean)
                  17:29:44,562 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterTransactionRollback()
                  17:29:44,578 WARN [InterceptorRegistry] applicable interceptors is non-existent for public boolean org.jboss.seam.transaction.EjbSynchronizations.isAwareOfContainerTransactions()
                  17:29:44,578 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.beforeCompletion() throws javax.ejb.EJBException,java.rmi.RemoteException
                  17:29:44,593 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterCompletion(boolean) throws javax.ejb.EJBException,java.rmi.RemoteException
                  17:29:44,593 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.destroy()
                  17:29:44,609 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterTransactionBegin()
                  17:29:44,609 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterBegin()
                  17:29:44,609 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.beforeTransactionCommit()
                  17:29:44,625 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.registerSynchronization(javax.transaction.Synchronization)
                  17:29:44,625 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterTransactionCommit(boolean)
                  17:29:44,640 WARN [InterceptorRegistry] applicable interceptors is non-existent for public void org.jboss.seam.transaction.EjbSynchronizations.afterTransactionRollback()
                  17:29:44,640 WARN [InterceptorRegistry] applicable interceptors is non-existent for public boolean org.jboss.seam.transaction.EjbSynchronizations.isAwareOfContainerTransactions()
                  17:29:51,937 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.web.war/WEB-INF/lib/jboss-seam-mail.jar/META-INF/seam-mail.taglib.xml
                  17:29:51,984 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.web.war/WEB-INF/lib/jsf-facelets.jar/META-INF/jsf-core.taglib.xml
                  17:29:52,062 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.web.war/WEB-INF/lib/jsf-facelets.jar/META-INF/jsf-html.taglib.xml
                  17:29:52,078 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.web.war/WEB-INF/lib/jsf-facelets.jar/META-INF/jsf-ui.taglib.xml
                  17:29:52,093 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.web.war/WEB-INF/lib/jsf-facelets.jar/META-INF/jstl-core.taglib.xml
                  17:29:52,109 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/pl.scentia.smartoffice.web.war/WEB-INF/lib/jsf-facelets.jar/META-INF/jstl-fn.taglib.xml
                  17:29:52,109 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/lib/jboss-seam-ui.jar/META-INF/s.taglib.xml
                  17:29:52,156 WARN [ExceptionFilter] handling uncaught exception
                  javax.servlet.ServletException: Servlet execution threw an exception
                   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:313)
                   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
                   at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:73)
                   at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:177)
                   at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:267)
                   at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:380)
                   at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:507)
                   at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.web.HotDeployFilter.doFilter(HotDeployFilter.java:53)
                   at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
                   at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
                   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
                   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
                   at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
                   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
                   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
                   at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
                   at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
                   at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
                   at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
                   at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
                   at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
                   at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
                   at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
                   at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
                   at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
                   at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
                   at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
                   at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
                   at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
                   at java.lang.Thread.run(Unknown Source)
                  Caused by: java.lang.NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler
                   at java.lang.ClassLoader.defineClass1(Native Method)
                   at java.lang.ClassLoader.defineClass(Unknown Source)
                   at org.jboss.classloader.spi.base.BaseClassLoader.access$200(BaseClassLoader.java:62)
                   at org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:509)
                   at org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:469)
                   at java.security.AccessController.doPrivileged(Native Method)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:467)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:444)
                   at org.jboss.classloader.spi.base.BaseDelegateLoader.loadClass(BaseDelegateLoader.java:134)
                   at org.jboss.classloader.spi.filter.FilteredDelegateLoader.loadClass(FilteredDelegateLoader.java:131)
                   at org.jboss.classloader.spi.base.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:452)
                   at org.jboss.classloader.spi.base.ClassLoaderManager.nextTask(ClassLoaderManager.java:254)
                   at org.jboss.classloader.spi.base.ClassLoaderManager.process(ClassLoaderManager.java:148)
                   at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:256)
                   at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1099)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:735)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:378)
                   at java.lang.ClassLoader.loadClass(Unknown Source)
                   at java.lang.ClassLoader.loadClassInternal(Unknown Source)
                   at java.lang.Class.forName0(Native Method)
                   at java.lang.Class.forName(Unknown Source)
                   at org.jboss.classloader.plugins.loader.ClassLoaderToLoaderAdapter.loadClass(ClassLoaderToLoaderAdapter.java:173)
                   at org.jboss.classloader.spi.ClassLoaderDomain.loadClassFromParent(ClassLoaderDomain.java:352)
                   at org.jboss.classloader.spi.ClassLoaderDomain.loadClassAfter(ClassLoaderDomain.java:323)
                   at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:262)
                   at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1099)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:735)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:378)
                   at java.lang.ClassLoader.loadClass(Unknown Source)
                   at java.lang.ClassLoader.loadClass(Unknown Source)
                   at java.lang.ClassLoader.loadClassInternal(Unknown Source)
                   at java.lang.Class.forName0(Native Method)
                   at java.lang.Class.forName(Unknown Source)
                   at com.sun.facelets.util.ReflectionUtil.forName(ReflectionUtil.java:36)
                   at com.sun.facelets.compiler.TagLibraryConfig$LibraryHandler.createClass(TagLibraryConfig.java:291)
                   at com.sun.facelets.compiler.TagLibraryConfig$LibraryHandler.endElement(TagLibraryConfig.java:210)
                   at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
                   at org.apache.xerces.impl.dtd.XMLDTDValidator.endNamespaceScope(Unknown Source)
                   at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown Source)
                   at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)
                   at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
                   at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
                   at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
                   at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
                   at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
                   at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
                   at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
                   at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
                   at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)
                   at javax.xml.parsers.SAXParser.parse(Unknown Source)
                   at com.sun.facelets.compiler.TagLibraryConfig.create(TagLibraryConfig.java:407)
                   at com.sun.facelets.compiler.TagLibraryConfig.loadImplicit(TagLibraryConfig.java:431)
                   at com.sun.facelets.compiler.Compiler.initialize(Compiler.java:87)
                   at com.sun.facelets.compiler.Compiler.compile(Compiler.java:104)
                   at com.sun.facelets.impl.DefaultFaceletFactory.createFacelet(DefaultFaceletFactory.java:218)
                   at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:149)
                   at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:100)
                   at com.sun.facelets.FaceletViewHandler.buildView(FaceletViewHandler.java:517)
                   at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:567)
                   at org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
                   at org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:196)
                   at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
                   at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
                   at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
                   at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
                   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
                   ... 42 more
                  Caused by: java.lang.ClassNotFoundException: com.sun.facelets.tag.jsf.ComponentHandler
                   at java.net.URLClassLoader$1.run(Unknown Source)
                   at java.security.AccessController.doPrivileged(Native Method)
                   at java.net.URLClassLoader.findClass(Unknown Source)
                   at java.lang.ClassLoader.loadClass(Unknown Source)
                   at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
                   at java.lang.ClassLoader.loadClass(Unknown Source)
                   at java.lang.ClassLoader.loadClassInternal(Unknown Source)
                   at java.lang.Class.forName0(Native Method)
                   at java.lang.Class.forName(Unknown Source)
                   at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:276)
                   at org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1099)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:735)
                   at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:378)
                   at java.lang.ClassLoader.loadClass(Unknown Source)
                   at java.lang.ClassLoader.loadClassInternal(Unknown Source)
                   ... 108 more
                  17:29:52,156 WARN [ExceptionFilter] exception root cause
                  17:29:52,156 WARN [ExceptionFilter] running exception handlers
                  17:29:53,078 INFO [lifecycle] WARNING: FacesMessage(s) have been enqueued, but may not have been displayed.
                  sourceId=null[severity=(INFO 0), summary=(Servlet execution threw an exception), detail=(Servlet execution threw an exception)]
                  18:00:15,578 INFO [Log] Current Session destroyed : 0C4D90A4749A2A196FF0DA79A613D5CD, Logging out user...
                  
                  


                  • 7. Re: Problem with facelets when switching to Jboss 5.0
                    alesj

                     

                    "misqu23" wrote:

                    17:29:52,109 INFO [compiler] Added Library from: vfszip:/C:/scentia/jboss-eas/server/default/deploy/pl.scentia.smartoffice.ear.ear/lib/jboss-seam-ui.jar/META-INF/s.taglib.xml
                    17:29:52,156 WARN [ExceptionFilter] handling uncaught exception
                    javax.servlet.ServletException: Servlet execution threw an exception
                    


                    What about if you put jboss-seam-ui.jar into war's /WEB-INF/lib?

                    • 8. Re: Problem with facelets when switching to Jboss 5.0
                      misqu23

                      I've also have jboss-seam-ui.jar in the WEB-INF/lib. I removed this jar and the exception also occured.

                      • 9. Re: Problem with facelets when switching to Jboss 5.0
                        alesj

                         

                        "misqu23" wrote:
                        I removed this jar and the exception also occured.

                        Removed which one?
                        Just keep the one in war.

                        • 10. Re: Problem with facelets when switching to Jboss 5.0
                          misqu23


                          With the jboss-seam-ui.jar only in WEB-INF/lib directory problem is the same. Still have the same exception ;(

                          • 11. Re: Problem with facelets when switching to Jboss 5.0
                            alesj

                            Post the debug log snippet of the exception's cause.

                            • 12. Re: Problem with facelets when switching to Jboss 5.0
                              alesj

                               

                              "alesj" wrote:
                              Post the debug log snippet of the exception's cause.

                              So we see how exactly your classloader looks like (its roots),
                              like here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=146964