Hi,

my jboss doesn't start propperly, it hangs at
[myWMS] Starting
[myWMS] XA Connection pool myWMS bound to java:/myWMS

I removed the jboss-auto config file and moved the drivers jar-file to
lib/ext. I can access the database with isqlview which uses the same
driver. I trimmed the jbos.jcml to the necessary stuff that i guess it's
necessary.

What is wrong with my configuration?

Thanks
    Haug
...
[Webserver] Initializing
[Webserver] Initialized
[Naming] Initializing
[Naming] Initialized
[JNDIView] Initializing
[JNDIView] Initialized
[Transaction manager] Initializing
[Transaction manager] Initialized
[JDBC provider] Initializing
[JDBC provider] Loaded JDBC-driver:org.postgresql.Driver
[JDBC provider] Loaded JDBC-driver:org.hsql.jdbcDriver
[JDBC provider] Initialized
[myWMS] Initializing
[myWMS] Initialized
[Container factory] Initializing
[Container factory] Initialized
[Auto deploy] Initializing
[Auto deploy] Initialized
[RARDeployer] Initializing
[RARDeployer] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaXACMFactory] Initialized
[JMX RMI Adaptor] Initializing
[JMX RMI Adaptor] Initialized
[JMX RMI Connector] Initializing
[JMX RMI Connector] Initialized
[Mail Service] Initializing
[Mail Service] Initialized
[Service Control] Initialized 14 services
[Service Control] Starting 14 MBeans
[Webserver] Starting
[Webserver] Codebase set to http://brandine:8083/
[Webserver] Started webserver on port 8083
[Webserver] Started
[Naming] Starting
[Naming] Naming started on port 1099
[Naming] Started
[JNDIView] Starting
[JNDIView] Started
[Transaction manager] Starting
[Transaction manager] Started
[JDBC provider] Starting
[JDBC provider] Started
[myWMS] Starting
[myWMS] XA Connection pool myWMS bound to java:/myWMS


<?xml version="1.0" encoding="UTF-8"?>
<server>
  <!-- Classloading -->
  <mbean code="org.jboss.web.WebService"
name="DefaultDomain:service=Webserver">
    <attribute name="Port">8083</attribute>
  </mbean>

  <!-- JNDI -->
  <mbean code="org.jboss.naming.NamingService"
name="DefaultDomain:service=Naming">
    <attribute name="Port">1099</attribute>
  </mbean>
  <mbean code="org.jboss.naming.JNDIView"
name="DefaultDomain:service=JNDIView" />

  <!-- Transactions -->
  <mbean code="org.jboss.tm.TransactionManagerService"
name="DefaultDomain:service=TransactionManager">
    <attribute name="TransactionTimeout">300</attribute>
  </mbean>

  <!-- JDBC -->
  <!-- Drivers that could be used by jBoss -->
  <mbean code="org.jboss.jdbc.JdbcProvider"
      name="DefaultDomain:service=JdbcProvider">
    <attribute
name="Drivers">org.postgresql.Driver,org.hsql.jdbcDriver</attribute>
  </mbean>

  <mbean code="org.jboss.jdbc.XADataSourceLoader"
      name="DefaultDomain:service=XADataSource,name=myWMS">
    <attribute name="PoolName">myWMS</attribute>
    <attribute
name="DataSourceClass">org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImpl</attribute>

    <attribute name="Properties"></attribute>
    <attribute name="URL">jdbc:PostgreSQL://mona/myWMS</attribute>
    <attribute name="GCMinIdleTime">1200000</attribute>
    <attribute name="JDBCUser">buerger</attribute>
    <attribute name="MaxSize">10</attribute>
    <attribute name="Password" />
    <attribute name="GCEnabled">false</attribute>
    <attribute name="InvalidateOnError">false</attribute>
    <attribute name="TimestampUsed">false</attribute>
    <attribute name="Blocking">true</attribute>
    <attribute name="GCInterval">120000</attribute>
    <attribute name="IdleTimeout">1800000</attribute>
    <attribute name="IdleTimeoutEnabled">false</attribute>
    <attribute name="LoggingEnabled">false</attribute>
    <attribute name="MaxIdleTimeoutPercent">1.0</attribute>
    <attribute name="MinSize">0</attribute>
  </mbean>

  <!-- J2EE deployment -->
  <mbean code="org.jboss.ejb.ContainerFactory"
name=":service=ContainerFactory">
    <attribute name="VerifyDeployments">true</attribute>
    <attribute name="MetricsEnabled">false</attribute>
    <attribute name="VerifierVerbose">true</attribute>
    <attribute name="BeanCacheJMSMonitoringEnabled">false</attribute>
  </mbean>

  <mbean code="org.jboss.ejb.AutoDeployer"
name="EJB:service=AutoDeployer">
    <attribute name="Deployer">J2EE:service=J2eeDeployer</attribute>
    <attribute name="URLs">../deploy</attribute>
  </mbean>

  <!-- J2EE connector architecture -->
    <mbean code="org.jboss.resource.RARDeployer"
name="JCA:service=RARDeployer">
  </mbean>

  <!-- Minerva XA transaction connection manager factory

       Use this for resource adapters that support "xa"
       transactions. -->
  <mbean code="org.jboss.resource.ConnectionManagerFactoryLoader"

name="JCA:service=ConnectionManagerFactoryLoader,name=MinervaXACMFactory">

    <attribute name="FactoryName">MinervaXACMFactory</attribute>
    <attribute
name="FactoryClass">org.opentools.minerva.connector.jboss.MinervaXACMFactory</attribute>

    <attribute name="Properties"></attribute>
  </mbean>

  <!-- JMX adaptors -->
  <mbean code="org.jboss.jmx.server.JMXAdaptorService"
name="Adaptor:name=RMI" />

  <mbean code="org.jboss.jmx.server.RMIConnectorService"
name="Connector:name=RMI" />

  <mbean code="com.sun.jdmk.comm.HtmlAdaptorServer"
name="Adaptor:name=html">
    <attribute name="MaxActiveClientCount">10</attribute>
    <attribute name="Parser" />
    <attribute name="Port">8082</attribute>
  </mbean>

  <!-- Mail Connection Factory -->
  <mbean code="org.jboss.mail.MailService" name=":service=Mail">
    <attribute name="JNDIName">Mail</attribute>
    <attribute name="ConfigurationFile">mail.properties</attribute>
    <attribute name="User">user_id</attribute>
    <attribute name="Password">password</attribute>
  </mbean>
</server>


_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to