1 Reply Latest reply on Jul 25, 2011 7:30 AM by mirkomali

    Changing database from default JBoss to Oracle 11

    mirkomali

      Hi guys, hope you can help me with this.

       

      I am trying to setup GateIn so that it would work with Oracle database 11 (Ent. editio).

      I have made following modifications

       

      To configuration.properties

       

      # JCR
      gatein.jcr.config.type=local
      gatein.jcr.datasource.name=java:jdbcjcr
      gatein.jcr.datasource.dialect=org.hibernate.dialect.Oracle10gDialect
      gatein.jcr.datasource.driver=oracle.jdbc.driver.OracleDriver
      gatein.jcr.datasource.url=jdbc:oracle:thin:@localhost:1521:mydb
      gatein.jcr.datasource.username=myUID
      gatein.jcr.datasource.password=myPASS
      
      gatein.jcr.data.dir=${gatein.data.dir}/jcr
      gatein.jcr.storage.data.dir=${gatein.jcr.data.dir}/values
      gatein.jcr.cache.config=classpath:/conf/jcr/jbosscache/${gatein.jcr.config.type}/config.xml
      gatein.jcr.lock.cache.config=classpath:/conf/jcr/jbosscache/${gatein.jcr.config.type}/lock-config.xml
      gatein.jcr.index.data.dir=${gatein.jcr.data.dir}/lucene
      gatein.jcr.index.changefilterclass=org.exoplatform.services.jcr.impl.core.query.DefaultChangesFilter
      gatein.jcr.index.cache.config=classpath:/conf/jcr/jbosscache/cluster/indexer-config.xml
      gatein.jcr.jgroups.config=classpath:/conf/jcr/jbosscache/cluster/udp-mux.xml
      
      # IDM
      gatein.idm.datasource.name=java:jdbcidm
      gatein.idm.datasource.driver=oracle.jdbc.driver.OracleDriver
      gatein.idm.datasource.url=jdbc:oracle:thin:@localhost:1521:mydb
      gatein.jcr.datasource.username=myUID
      gatein.jcr.datasource.password=myPASS
      

       

      To jcr-configuration.xml

       

       

      <property name="dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
      ....
      
      <description>ref-addresses</description>
      <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
      <property name="url" value="jdbc:oracle:thin:@localhost:1521:myDB"/>
      <property name="username" value="myUID"/>
      <property name="password" value="myPASS"/>
      </properties-param>
      

       

      To repository-configuration.xml, to every instance regarding dialect, i have modified following line

       

       <property name="dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
      

       

      And finally to idm-configuration.xml i have modified

       

      
      <properties-param>
      
      
      <name>ref-addresses</name>
      
      
      <description>ref-addresses</description>
      
      
      <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
      
      
      <property name="url" value="jdbc:oracle:thin:@localhost:1521:myDB"/>
      
      
      <property name="username" value="myUID"/>
      
      
      <property name="password" value="myPASS"/>
      
      
      
      
      </properties-param>
      
      

       

      After that setup i start server and get following errors (normal setup on JBoss server on sample-portal goes fine with no errors and portal can be accessed if default database is used).

       

      10:08:12,184 INFO  [ServerImpl] Starting JBoss (Microcontainer)...
      10:08:12,230 INFO  [ServerImpl] Release ID: JBoss [The Oracle] 5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)
      10:08:12,230 INFO  [ServerImpl] Bootstrap URL: null
      10:08:12,231 INFO  [ServerImpl] Home Dir: D:\whatisgoingon\GateIn-3.1.0-GA
      10:08:12,231 INFO  [ServerImpl] Home URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/
      10:08:12,231 INFO  [ServerImpl] Library URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/lib/
      10:08:12,232 INFO  [ServerImpl] Patch URL: null
      10:08:12,233 INFO  [ServerImpl] Common Base URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/common/
      10:08:13,323 INFO  [ServerImpl] Common Library URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/common/lib/
      10:08:13,327 INFO  [ServerImpl] Server Name: default
      10:08:13,327 INFO  [ServerImpl] Server Base Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server
      10:08:13,327 INFO  [ServerImpl] Server Base URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/
      10:08:13,327 INFO  [ServerImpl] Server Config URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/conf/
      10:08:13,327 INFO  [ServerImpl] Server Home Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default
      10:08:13,327 INFO  [ServerImpl] Server Home URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/
      10:08:13,327 INFO  [ServerImpl] Server Data Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default\data
      10:08:13,328 INFO  [ServerImpl] Server Library URL: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/lib/
      10:08:13,328 INFO  [ServerImpl] Server Log Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default\log
      10:08:13,328 INFO  [ServerImpl] Server Native Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default\tmp\native
      10:08:13,328 INFO  [ServerImpl] Server Temp Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default\tmp
      10:08:13,329 INFO  [ServerImpl] Server Temp Deploy Dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default\tmp\deploy
      10:08:14,241 INFO  [ServerImpl] Starting Microcontainer, bootstrapURL=file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/conf/bootstrap.xml
      10:08:15,386 INFO  [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.CombinedVFSCache]
      10:08:15,389 INFO  [VFSCacheFactory] Using VFSCache [CombinedVFSCache[real-cache: null]]
      10:08:15,755 INFO  [CopyMechanism] VFS temp dir: D:\whatisgoingon\GateIn-3.1.0-GA\server\default\tmp
      10:08:15,774 INFO  [ZipEntryContext] VFS force nested jars copy-mode is enabled.
      10:08:17,184 INFO  [ServerInfo] Java version: 1.6.0_26,Sun Microsystems Inc.
      10:08:17,184 INFO  [ServerInfo] Java Runtime: Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
      10:08:17,184 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 20.1-b02,Sun Microsystems Inc.
      10:08:17,185 INFO  [ServerInfo] OS-System: Windows 7 6.1,x86
      10:08:17,203 INFO  [ServerInfo] VM arguments: -Dprogram.name=run.bat -Xms128m -Xmx512m -XX:MaxPermSize=256m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.jboss.resolver.warning=true -Dexo.conf.dir.name=gatein -Dfile.encoding=Cp1250 
      10:08:17,272 INFO  [JMXKernel] Legacy JMX core initialized
      10:08:19,242 INFO  [ProfileServiceBootstrap] Loading profile: ProfileKey@4936f3[domain=default, server=default, name=default]
      10:08:22,097 INFO  [WebService] Using RMI server codebase: http://127.0.0.1:8083/
      10:08:29,367 INFO  [NativeServerConfig] JBoss Web Services - Stack Native Core
      10:08:29,367 INFO  [NativeServerConfig] 3.1.2.GA
      10:08:30,106 INFO  [AttributeCallbackItem] Owner callback not implemented.
      10:08:31,778 INFO  [LogNotificationListener] Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@1fac852[ defaultDomain='jboss' ]
      10:08:33,060 ERROR [ProfileDeployAction] Failed to add deployment: gatein-sample-portal.ear
      org.jboss.deployers.spi.DeploymentException: Exception determining structure: AbstractVFSDeployment(gatein-sample-portal.ear)
          at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49)
          at org.jboss.deployers.structure.spi.helpers.AbstractStructuralDeployers.determineStructure(AbstractStructuralDeployers.java:85)
          at org.jboss.deployers.plugins.main.MainDeployerImpl.determineStructure(MainDeployerImpl.java:1004)
          at org.jboss.deployers.plugins.main.MainDeployerImpl.determineDeploymentContext(MainDeployerImpl.java:440)
          at org.jboss.deployers.plugins.main.MainDeployerImpl.addDeployment(MainDeployerImpl.java:390)
          at org.jboss.deployers.plugins.main.MainDeployerImpl.addDeployment(MainDeployerImpl.java:300)
          at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.addDeployment(MainDeployerAdapter.java:86)
          at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDeployAction.java:61)
          at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractProfileAction.java:53)
          at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(AbstractProfileService.java:361)
          at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
          at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
          at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
          at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(AbstractProfileService.java:306)
          at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)
          at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
          at org.jboss.Main.boot(Main.java:221)
          at org.jboss.Main$1.run(Main.java:556)
          at java.lang.Thread.run(Unknown Source)
      Caused by: java.lang.RuntimeException: Error determining structure: gatein-sample-portal.ear
          at org.jboss.deployment.EARStructure.determineStructure(EARStructure.java:293)
          at org.jboss.deployers.vfs.plugins.structure.StructureDeployerWrapper.determineStructure(StructureDeployerWrapper.java:73)
          at org.jboss.deployers.vfs.plugins.structure.VFSStructuralDeployersImpl.doDetermineStructure(VFSStructuralDeployersImpl.java:196)
          at org.jboss.deployers.vfs.plugins.structure.VFSStructuralDeployersImpl.determineStructure(VFSStructuralDeployersImpl.java:221)
          at org.jboss.deployers.structure.spi.helpers.AbstractStructuralDeployers.determineStructure(AbstractStructuralDeployers.java:77)
          ... 21 more
      Caused by: org.jboss.xb.binding.JBossXBException: Failed to parse source: {http://java.sun.com/xml/ns/javaee}description not found as a child of application in unordered_sequence: module* security-role* {all descriptionGroup}?
          at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:203)
          at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:183)
          at org.jboss.xb.binding.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:161)
          at org.jboss.deployment.EARStructure.determineStructure(EARStructure.java:160)
          ... 25 more
      Caused by: org.jboss.xb.binding.JBossXBRuntimeException: {http://java.sun.com/xml/ns/javaee}description not found as a child of application in unordered_sequence: module* security-role* {all descriptionGroup}?
          at org.jboss.xb.binding.sunday.unmarshalling.SundayContentHandler.startElement(SundayContentHandler.java:383)
          at org.jboss.xb.binding.parser.sax.SaxJBossXBParser$DelegatingContentHandler.startElement(SaxJBossXBParser.java:401)
          at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
          at org.apache.xerces.xinclude.XIncludeHandler.startElement(Unknown Source)
          at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(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.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:199)
          ... 28 more
      10:08:51,436 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@19353867{vfsfile:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/profileservice-secured.jar/}
      10:08:51,436 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@19353867{vfsfile:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/profileservice-secured.jar/}
      10:08:51,436 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@19353867{vfsfile:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/profileservice-secured.jar/}
      10:08:51,437 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@19353867{vfsfile:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/profileservice-secured.jar/}
      10:08:56,394 INFO  [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:1090/jmxconnector
      10:08:56,669 INFO  [MailService] Mail Service bound to java:/Mail
      10:09:00,364 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.
      10:09:00,381 WARN  [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
      10:09:00,488 WARN  [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
      10:09:00,562 INFO  [TransactionManagerService] JBossTS Transaction Service (JTA version - tag:JBOSSTS_4_6_1_GA) - JBoss Inc.
      10:09:00,562 INFO  [TransactionManagerService] Setting up property manager MBean and JMX layer
      10:09:00,890 INFO  [TransactionManagerService] Initializing recovery manager
      10:09:01,923 INFO  [TransactionManagerService] Recovery manager configured
      10:09:01,923 INFO  [TransactionManagerService] Binding TransactionManager JNDI Reference
      10:09:01,959 INFO  [TransactionManagerService] Starting transaction recovery manager
      10:09:02,787 INFO  [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jre6\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:/Program Files/Java/jre6/lib/i386;D:\app\mstajcic\product\11.2.0\dbhome_2\bin;D:\app\mstajcic\product\11.2.0\dbhome_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;D:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;.
      10:09:02,915 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on http-127.0.0.1-8080
      10:09:03,038 INFO  [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009
      10:09:03,063 INFO  [StandardService] Starting service jboss.web
      10:09:03,066 INFO  [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.3.GA
      10:09:03,155 INFO  [Catalina] Server startup in 116 ms
      10:09:03,219 INFO  [TomcatDeployment] deploy, ctxPath=/web-console
      10:09:04,372 INFO  [TomcatDeployment] deploy, ctxPath=/invoker
      10:09:04,466 INFO  [TomcatDeployment] deploy, ctxPath=/jbossws
      10:09:04,585 INFO  [RARDeployment] Required license terms exist, view vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
      10:09:04,627 INFO  [RARDeployment] Required license terms exist, view vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
      10:09:04,653 INFO  [RARDeployment] Required license terms exist, view vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/jms-ra.rar/META-INF/ra.xml
      10:09:04,685 INFO  [RARDeployment] Required license terms exist, view vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/mail-ra.rar/META-INF/ra.xml
      10:09:04,733 INFO  [RARDeployment] Required license terms exist, view vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
      10:09:04,865 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: main
      10:09:05,707 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
      10:09:05,711 INFO  [RAMJobStore] RAMJobStore initialized.
      10:09:05,711 INFO  [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
      10:09:05,711 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2
      10:09:05,711 INFO  [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
      10:09:07,052 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
      10:09:08,116 INFO  [ServerPeer] JBoss Messaging 1.4.3.GA server [0] started
      10:09:08,265 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
      10:09:08,265 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@26edc5 started
      10:09:08,266 INFO  [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
      10:09:08,267 INFO  [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
      10:09:08,268 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
      10:09:08,269 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@1e287e5 started
      10:09:08,269 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
      10:09:08,270 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@1d0d735 started
      10:09:08,288 INFO  [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
      10:09:08,290 INFO  [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
      10:09:08,422 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
      10:09:09,790 INFO  [JBossASKernel] Created KernelDeployment for: profileservice-secured.jar
      10:09:09,800 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
      10:09:09,800 INFO  [JBossASKernel]   with dependencies:
      10:09:09,800 INFO  [JBossASKernel]   and demands:
      10:09:09,800 INFO  [JBossASKernel]     jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
      10:09:09,800 INFO  [JBossASKernel]     jboss.ejb:service=EJBTimerService
      10:09:09,800 INFO  [JBossASKernel]   and supplies:
      10:09:09,801 INFO  [JBossASKernel]     Class:org.jboss.profileservice.spi.ProfileService
      10:09:09,801 INFO  [JBossASKernel]     jndi:SecureProfileService/remote
      10:09:09,801 INFO  [JBossASKernel]     jndi:SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService
      10:09:09,801 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3) to KernelDeployment of: profileservice-secured.jar
      10:09:09,802 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
      10:09:09,802 INFO  [JBossASKernel]   with dependencies:
      10:09:09,802 INFO  [JBossASKernel]   and demands:
      10:09:09,802 INFO  [JBossASKernel]     jboss.ejb:service=EJBTimerService
      10:09:09,802 INFO  [JBossASKernel]   and supplies:
      10:09:09,802 INFO  [JBossASKernel]     jndi:SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager
      10:09:09,802 INFO  [JBossASKernel]     Class:org.jboss.deployers.spi.management.deploy.DeploymentManager
      10:09:09,803 INFO  [JBossASKernel]     jndi:SecureDeploymentManager/remote
      10:09:09,803 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3) to KernelDeployment of: profileservice-secured.jar
      10:09:09,803 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
      10:09:09,804 INFO  [JBossASKernel]   with dependencies:
      10:09:09,804 INFO  [JBossASKernel]   and demands:
      10:09:09,804 INFO  [JBossASKernel]     jboss.ejb:service=EJBTimerService
      10:09:09,804 INFO  [JBossASKernel]   and supplies:
      10:09:09,804 INFO  [JBossASKernel]     jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
      10:09:09,804 INFO  [JBossASKernel]     Class:org.jboss.deployers.spi.management.ManagementView
      10:09:09,804 INFO  [JBossASKernel]     jndi:SecureManagementView/remote
      10:09:09,804 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3) to KernelDeployment of: profileservice-secured.jar
      10:09:09,812 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@8836db{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
      10:09:09,812 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@138b0f9{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
      10:09:09,813 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@1ed83ec{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
      10:09:09,915 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
      10:09:09,926 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.SecureDeploymentManager ejbName: SecureDeploymentManager
      10:09:09,993 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
      
          SecureDeploymentManager/remote - EJB3.x Default Remote Business Interface
          SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager - EJB3.x Remote Business Interface
      
      10:09:10,165 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
      10:09:10,178 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.SecureManagementView ejbName: SecureManagementView
      10:09:10,200 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
      
          SecureManagementView/remote - EJB3.x Default Remote Business Interface
          SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView - EJB3.x Remote Business Interface
      
      10:09:10,247 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
      10:09:10,248 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.SecureProfileServiceBean ejbName: SecureProfileService
      10:09:10,261 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
      
          SecureProfileService/remote - EJB3.x Default Remote Business Interface
          SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService - EJB3.x Remote Business Interface
      
      10:09:10,413 INFO  [TomcatDeployment] deploy, ctxPath=/admin-console
      10:09:10,618 INFO  [config] Initializing Mojarra (1.2_12-b01-FCS) for context '/admin-console'
      10:09:15,334 INFO  [TomcatDeployment] deploy, ctxPath=/
      10:09:15,689 INFO  [TomcatDeployment] deploy, ctxPath=/gatein-sample-skin
      10:09:15,795 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:15,918 INFO  [TomcatDeployment] deploy, ctxPath=/jmx-console
      10:09:16,470 INFO  [TomcatDeployment] deploy, ctxPath=/sample-ext
      10:09:16,740 INFO  [RootContainer] Building root container
      10:09:16,831 INFO  [RootContainer] Active profiles [jboss]
      10:09:17,835 INFO  [RootContainer] Root container is built (build time 1094ms)
      10:09:17,835 INFO  [ExoContainerContext] Set the top container in its context
      10:09:17,835 INFO  [RootContainer] Root container booted
      10:09:17,840 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:39,631 INFO  [DefaultEndpointRegistry] register: jboss.ws:context=wsrp-producer,endpoint=ServiceDescriptionService
      10:09:39,633 INFO  [DefaultEndpointRegistry] register: jboss.ws:context=wsrp-producer,endpoint=MarkupService
      10:09:39,633 INFO  [DefaultEndpointRegistry] register: jboss.ws:context=wsrp-producer,endpoint=RegistrationService
      10:09:39,634 INFO  [DefaultEndpointRegistry] register: jboss.ws:context=wsrp-producer,endpoint=PortletManagementService
      10:09:45,088 INFO  [TomcatDeployment] deploy, ctxPath=/eXoResources
      10:09:45,158 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:45,175 INFO  [TomcatDeployment] deploy, ctxPath=/portal
      10:09:45,436 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:45,644 WARN  [TomcatDeployment] Failed to setup clustering, clustering disabled. NoClassDefFoundError: org/jboss/cache/pojo/jmx/PojoCacheJmxWrapperMBean
      10:09:45,650 INFO  [TomcatDeployment] deploy, ctxPath=/dashboard
      10:09:45,700 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:45,709 INFO  [TomcatDeployment] deploy, ctxPath=/eXoGadgetServer
      10:09:48,350 INFO  [EhCacheCacheProvider] Creating cache named httpResponses
      10:09:48,353 INFO  [EhCacheCacheProvider] Creating cache named invalidatedUsers
      10:09:48,376 INFO  [EhCacheCacheProvider] Creating cache named gadgetSpecs
      10:09:48,419 INFO  [EhCacheCacheProvider] Creating cache named parsedDocuments
      10:09:48,420 INFO  [EhCacheCacheProvider] Creating cache named parsedFragments
      10:09:48,467 INFO  [EhCacheCacheProvider] Creating cache named expressions
      10:09:48,479 INFO  [EhCacheCacheProvider] Creating cache named messageBundles
      10:09:48,489 INFO  [JsonContainerConfig] Loading resources from: containers/default/container.js
      10:09:48,489 INFO  [JsonContainerConfig] Reading container config: containers/default/container.js
      10:09:48,620 INFO  [ExoContainerConfig] Found key file D:\whatisgoingon\GateIn-3.1.0-GA\server\default\conf\gatein\gadgets\key.txt for gadgets security
      10:09:48,620 INFO  [gadgets] Loading resources from: features/features.txt
      10:09:48,653 INFO  [XmlUtil] Not using secure XML processing.
      10:09:48,654 INFO  [XmlUtil] Reusing document builders
      10:09:48,655 INFO  [XmlUtil] Created a new document builder
      10:09:48,670 WARNING [gadgets] Could not find resource: com/google/caja/plugin/domita-minified.opt.js-Can not locate resource: com/google/caja/plugin/domita-minified.opt.js
      10:09:48,692 WARNING [gadgets] Could not find resource: features/caja/caja.opt.js-Can not locate resource: features/caja/caja.opt.js
      10:09:48,694 WARNING [gadgets] Could not find resource: com/google/caja/plugin/valija.co.opt.js-Can not locate resource: com/google/caja/plugin/valija.co.opt.js
      10:09:48,709 WARNING [gadgets] Could not find resource: com/google/caja/plugin/html-sanitizer-minified.opt.js-Can not locate resource: com/google/caja/plugin/html-sanitizer-minified.opt.js
      10:09:49,047 INFO  [OAuthModule] Using random key for OAuth client-side state encryption
      10:09:49,146 INFO  [TomcatDeployment] deploy, ctxPath=/eXoGadgets
      10:09:49,204 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:49,215 INFO  [TomcatDeployment] deploy, ctxPath=/exoadmin
      10:09:49,326 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:49,343 INFO  [TomcatDeployment] deploy, ctxPath=/integration
      10:09:49,484 INFO  [TomcatDeployment] deploy, ctxPath=/rest
      10:09:49,533 INFO  [TomcatDeployment] deploy, ctxPath=/web
      10:09:49,623 INFO  [ResourceRequestFilter] Cache eXo Resource at client: true
      10:09:49,633 INFO  [TomcatDeployment] deploy, ctxPath=/wsrp-admin-gui
      10:09:49,678 INFO  [config] Initializing Mojarra (1.2_12-b01-FCS) for context '/wsrp-admin-gui'
      10:09:49,928 INFO  [TomcatDeployment] deploy, ctxPath=/wsrp-producer
      10:09:52,273 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_bindings.wsdl
      10:09:52,280 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_interfaces.wsdl
      10:09:52,292 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:09:52,520 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:09:52,616 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_bindings.wsdl
      10:09:52,620 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_interfaces.wsdl
      10:09:52,625 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:09:52,698 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:09:52,770 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:10:13,840 WARN  [JBossWSEntityResolver] Trying to resolve id as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:10:55,901 WARN  [SaxJBossXBParser] schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. @ *unknown*[26,158]
      10:10:56,164 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_bindings.wsdl
      10:10:56,168 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_interfaces.wsdl
      10:10:56,172 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:10:56,289 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:10:56,361 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:11:17,363 WARN  [JBossWSEntityResolver] Trying to resolve id as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:11:59,411 WARN  [SaxJBossXBParser] schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. @ *unknown*[26,158]
      10:11:59,703 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_bindings.wsdl
      10:11:59,707 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_interfaces.wsdl
      10:11:59,712 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:11:59,831 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:11:59,908 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:12:20,905 WARN  [JBossWSEntityResolver] Trying to resolve id as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:13:02,912 WARN  [SaxJBossXBParser] schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. @ *unknown*[26,158]
      10:13:03,173 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_bindings.wsdl
      10:13:03,177 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_interfaces.wsdl
      10:13:03,181 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:13:03,271 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein.ear/wsrp-producer.war/WEB-INF/wsdl/wsrp_v1_types.xsd
      10:13:03,338 WARN  [JBossEntityResolver] Trying to resolve systemId as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:13:24,335 WARN  [JBossWSEntityResolver] Trying to resolve id as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd
      10:14:06,357 WARN  [SaxJBossXBParser] schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. @ *unknown*[26,158]
      10:14:07,020 INFO  [WSDLFilePublisher] WSDL published to: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/data/wsdl/gatein.ear/wsrp-producer.war/wsrp_services.wsdl
      10:14:07,053 INFO  [WSDLFilePublisher] WSDL published to: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/data/wsdl/gatein.ear/wsrp-producer.war/wsrp_services.wsdl
      10:14:07,074 INFO  [WSDLFilePublisher] WSDL published to: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/data/wsdl/gatein.ear/wsrp-producer.war/wsrp_services.wsdl
      10:14:07,092 INFO  [WSDLFilePublisher] WSDL published to: file:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/data/wsdl/gatein.ear/wsrp-producer.war/wsrp_services.wsdl
      10:14:07,286 INFO  [TomcatDeployment] deploy, ctxPath=/starter
      10:14:07,322 INFO  [RootContainer] Trying to create the portal container 'portal'
      10:14:08,132 INFO  [InitialContextInitializer] Reference bound: java:jdbcjcr_portal
      10:14:08,132 INFO  [InitialContextInitializer] Reference bound: java:jdbcidm_portal
      10:14:10,211 INFO  [ExoCacheFactoryImpl] The configuration template will be used for the the cache 'MOPSessionManager'.
      10:14:10,843 INFO  [ExoCacheFactoryImpl] The cache 'MOPSessionManager' will be created with 'class org.exoplatform.commons.cache.SimpleExoCacheCreator'.
      10:14:10,953 INFO  [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
      10:14:10,955 INFO  [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.4.GA
      10:14:11,015 INFO  [ExoCacheFactoryImpl] The configuration template will be used for the the cache 'ResourceBundleData'.
      10:14:11,065 INFO  [ExoCacheFactoryImpl] The cache 'ResourceBundleData' will be created with 'class org.exoplatform.commons.cache.SimpleExoCacheCreator'.
      10:14:11,110 INFO  [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
      10:14:11,110 INFO  [ComponentRegistry] JBoss Cache version: JBossCache 'Malagueta' 3.2.4.GA
      10:14:11,308 INFO  [Version] Hibernate Annotations 3.4.0.GA
      10:14:11,343 INFO  [Environment] Hibernate 3.3.1.GA
      10:14:11,361 INFO  [Environment] hibernate.properties not found
      10:14:11,371 INFO  [Environment] Bytecode provider name : javassist
      10:14:11,378 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling
      10:14:11,574 INFO  [Version] Hibernate Commons Annotations 3.1.0.GA
      10:14:13,760 WARN  [AbstractDialectResolver] Unable to query java.sql.DatabaseMetaData : Unsupported feature
      10:14:13,762 ERROR [RootContainer] Cannot create the portal container 'portal' . ServletContext: org.apache.catalina.core.ApplicationContextFacade@78040c
      java.lang.RuntimeException: Cannot instantiate component key=org.exoplatform.services.organization.idm.PicketLinkIDMService type=org.exoplatform.services.organization.idm.PicketLinkIDMServiceImpl found at jndi:/localhost/portal/WEB-INF/conf/organization/idm-configuration.xml
          at org.exoplatform.container.jmx.MX4JComponentAdapter.getComponentInstance(MX4JComponentAdapter.java:124)
          at org.exoplatform.container.management.ManageableComponentAdapter.getComponentInstance(ManageableComponentAdapter.java:68)
          at org.exoplatform.container.ConcurrentPicoContainer.getInstance(ConcurrentPicoContainer.java:400)
          at org.exoplatform.container.ConcurrentPicoContainer.getComponentInstancesOfType(ConcurrentPicoContainer.java:350)
          at org.exoplatform.container.CachingContainer.getComponentInstancesOfType(CachingContainer.java:111)
          at org.picocontainer.defaults.LifecycleVisitor.visitContainer(LifecycleVisitor.java:97)
          at org.exoplatform.container.ConcurrentPicoContainer.accept(ConcurrentPicoContainer.java:506)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
          at java.lang.reflect.Method.invoke(Unknown Source)
          at org.picocontainer.defaults.AbstractPicoVisitor.traverse(AbstractPicoVisitor.java:32)
          at org.picocontainer.defaults.LifecycleVisitor.traverse(LifecycleVisitor.java:63)
          at org.picocontainer.defaults.LifecycleVisitor.start(LifecycleVisitor.java:113)
          at org.exoplatform.container.ConcurrentPicoContainer.start(ConcurrentPicoContainer.java:453)
          at org.exoplatform.container.ExoContainer.start(ExoContainer.java:186)
          at org.exoplatform.container.PortalContainer.start(PortalContainer.java:595)
          at org.exoplatform.container.ExoContainer.start(ExoContainer.java:180)
          at org.exoplatform.container.RootContainer.createPortalContainer(RootContainer.java:338)
          at org.exoplatform.container.RootContainer.createPortalContainers(RootContainer.java:233)
          at org.exoplatform.container.web.PortalContainerCreator.contextInitialized(PortalContainerCreator.java:57)
          at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)
          at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)
          at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:310)
          at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:142)
          at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
          at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
          at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
          at sun.reflect.GeneratedMethodAccessor295.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
          at java.lang.reflect.Method.invoke(Unknown Source)
          at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
          at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
          at $Proxy38.start(Unknown Source)
          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
          at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
          at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
          at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
          at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
          at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
          at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
          at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
          at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
          at org.jboss.system.ServiceController.start(ServiceController.java:460)
          at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
          at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
          at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
          at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
          at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
          at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
          at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
          at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
          at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
          at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1210)
          at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
          at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
          at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
          at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
          at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
          at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
          at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeployerAdapter.java:117)
          at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDeployAction.java:70)
          at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractProfileAction.java:53)
          at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(AbstractProfileService.java:361)
          at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
          at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
          at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
          at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
          at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
          at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(AbstractProfileService.java:306)
          at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)
          at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
          at org.jboss.Main.boot(Main.java:221)
          at org.jboss.Main$1.run(Main.java:556)
          at java.lang.Thread.run(Unknown Source)
      Caused by: java.lang.RuntimeException: Cannot instantiate component key=org.exoplatform.services.database.HibernateService type=org.exoplatform.services.database.impl.HibernateServiceImpl found at jndi:/localhost/portal/WEB-INF/conf/organization/idm-configuration.xml
          at org.exoplatform.container.jmx.MX4JComponentAdapter.getComponentInstance(MX4JComponentAdapter.java:124)
          at org.exoplatform.container.management.ManageableComponentAdapter.getComponentInstance(ManageableComponentAdapter.java:68)
          at org.exoplatform.container.ConcurrentPicoContainer.getInstance(ConcurrentPicoContainer.java:400)
          at org.exoplatform.container.ConcurrentPicoContainer.getComponentInstanceOfType(ConcurrentPicoContainer.java:389)
          at org.exoplatform.container.CachingContainer.getComponentInstanceOfType(CachingContainer.java:139)
          at org.exoplatform.container.ExoContainer.createComponent(ExoContainer.java:311)
          at org.exoplatform.container.jmx.MX4JComponentAdapter.getComponentInstance(MX4JComponentAdapter.java:94)
          ... 89 more
      Caused by: java.lang.reflect.InvocationTargetException
          at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
          at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
          at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
          at java.lang.reflect.Constructor.newInstance(Unknown Source)
          at org.exoplatform.container.ExoContainer.createComponent(ExoContainer.java:321)
          at org.exoplatform.container.jmx.MX4JComponentAdapter.getComponentInstance(MX4JComponentAdapter.java:94)
          ... 95 more
      Caused by: org.hibernate.HibernateException: Unable to access java.sql.DatabaseMetaData to determine appropriate Dialect to use
          at org.hibernate.dialect.resolver.DialectFactory.determineDialect(DialectFactory.java:141)
          at org.hibernate.dialect.resolver.DialectFactory.buildDialect(DialectFactory.java:97)
          at org.exoplatform.services.database.impl.HibernateServiceImpl.<init>(HibernateServiceImpl.java:143)
          ... 101 more
      Caused by: java.sql.SQLException: Unsupported feature
          at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
          at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
          at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
          at oracle.jdbc.dbaccess.DBError.throwUnsupportedFeatureSqlException(DBError.java:689)
          at oracle.jdbc.OracleDatabaseMetaData.getDatabaseMajorVersion(OracleDatabaseMetaData.java:4442)
          at org.hibernate.dialect.resolver.DialectFactory.determineDialect(DialectFactory.java:131)
          ... 103 more
      10:14:13,765 WARN  [RootContainer] The portal container 'portal' doesn't not exist or it has not yet been registered, please check your PortalContainerDefinitions and the loading order.
      10:14:13,803 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
      
      *** DEPLOYMENTS MISSING DEPLOYERS: Name
      
      vfszip:/D:/whatisgoingon/GateIn-3.1.0-GA/server/default/deploy/gatein-sample-portal.ear/
      
      10:14:13,817 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
      10:14:13,843 INFO  [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
      10:14:13,858 INFO  [ServerImpl] JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)] Started in 6m:527ms
      

       

      Any help would be much appreciated:)