You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "freetwix (JIRA)" <ji...@apache.org> on 2009/02/04 17:44:59 UTC

[jira] Created: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

WARN AdvisoryBroker - Failed to fire message master broker advisory
-------------------------------------------------------------------

                 Key: AMQ-2096
                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
             Project: ActiveMQ
          Issue Type: Bug
    Affects Versions: 5.2.0
         Environment: mac os x 10.5.6, java 1.5.0_16
            Reporter: freetwix


Starting up activemq with a default configuration + simple authentification like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentification plugin. any ideas?

thankx,
jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


Re: [jira] Updated: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by danbucatanschi <dg...@me.com>.
One more thing I would like to add:

It might help actually looking at 
https://issues.apache.org/activemq/browse/AMQ-1541 Issue AMQ-1541 . This is
the original request to introduce an Advisory message for whenever the
Broker becomes a Master Broker ("Request for notification on failover in
master/slave configuration"). If one looks at the source file diffs, one can
easily see the where all the code was modified to introduce this kind of
advisory message. Maybe this will help into tracking down the issue more
easily.

Thanks,
-Dan

-- 
View this message in context: http://www.nabble.com/-jira--Created%3A-%28AMQ-2096%29-WARN-AdvisoryBroker---Failed-to-fire-message-master-broker-advisory-tp21834409p21936676.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.


Re: [jira] Updated: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by danbucatanschi <dg...@me.com>.
Hi!

I would like to add that I came across the same problem. At my organization
we are NOT using the default ActiveMQ Security Filter, but we have developed
our own security plugin, which is very similar to the one that ActiveMQ
comes with.

Here are some more details about the issue with respect to what I have seen
happening on my system:

1. We are using the journaledJDBC persistence adapter (I would actually like
to know if freetwix is using the same thing).

2. By default, the broker seems to use JDBC Master Slave pattern to start up
with a database backend.

3. We have only 1 broker connected to our database. However, even so, the
default behavior of ActiveMQ is to try to become the Master broker, so that
is what it is doing, correctly I might add.

4. When ActiveMQ becomes the Master broker, the
org.apache.activemq.advisory.AdvisoryBroker.nowMasterBroker() method is
called so that a message is fired on the ActiveMQ.Advisory.MasterBroker.

5. Since the ActiveMQ.Advisory.MasterBroker destination does not exist, one
is attempted to be created. This process has to go through the Security
Plugin. The Security plugin tries to check the SecurityContext of the
ConnectionContext. However it fails to find a SecurityContext (it is null),
thus concludes that the user trying to create this destination is not
authenticated and aborts the operation. The JMSSecurity exception is being
propagated up to the AdvisoryBroker class which prints out the "Failed to
fire message master broker advisory" message to the log.

6. The problem seems to stem from the fact that the
org.apache.activemq.advisory.AdvisoryBroker.nowMasterBroker() method is
called without any "ActiveMQ" SecurityContext being created for the
ConnectionContext where the advisory message is being fired. I could not
figure it out fully (since I am still not fully familiar with the ActiveMQ
internals), but this problem seems to come from one of the following 2
possible scenarios:

   (a) The connection to the DB backend and the locking of the database
(i.e. becoming Master) is happening BEFORE some initialization code that
creates the "ActiveMQ" user SecurityContext that is used to identify
(re)creation of destinations while the broker starts up. Thus the Security
plugin sees a SecurityContext equal to null in the ConnectionContext,
decides that the user trying to send the advisory message is not
authenticated so it just does not allow the creation of the
Advisory.MasterBroker destination; or,

   (b) The code that executes when nowMasterBroker() is called inside the
AdvisoryBroker plugin does not create the SecurityContext properly for the
ConnectionContext used to create the Advisory message. I certainly have not
seen any code that creates the SecurityContext in the AdvisoryBroker class.

These observations should apply equally to the security plugins coming with
ActiveMQ by default since ours was inspired and modeled as closely as
possible to the default ones.

Here is a printout of the debug logs when ActiveMQ starts up with this error
message. Ignore the long exceptions (those are typical of the JDBC adapter
when it starts up). Most of the important messages are at the end.

Please notice that the JDBCPersistenceAdapter is starting BEFORE
BrokerService says "ActiveMQ 5.2.0 JMS Message Broker (jms1) is starting".
Also notice that the RitisSecurityFilter says that user "null" is not
authenticated. The is no user because there is no SecurityContext created
either.

----Start log dump------
INFO   | jvm 1    | 2009/02/10 10:22:37 | ACTIVEMQ_HOME: /opt/activemq
INFO   | jvm 1    | 2009/02/10 10:22:37 | ACTIVEMQ_BASE: /opt/activemq
INFO   | jvm 1    | 2009/02/10 10:22:37 | Loading message broker from:
xbean:activemq.xml
INFO   | jvm 1    | 2009/02/10 10:22:38 | DEBUG XBeanBrokerFactory            
- Now attempting to figure out the type of resource: activemq.xml
INFO   | jvm 1    | 2009/02/10 10:22:39 | DEBUG JournalPersistenceAdapter     
- Checkpoint started.
INFO   | jvm 1    | 2009/02/10 10:22:39 | DEBUG JournalPersistenceAdapter     
- Checkpoint done.
INFO   | jvm 1    | 2009/02/10 10:22:39 | INFO  BrokerService                 
- Using Persistence Adapter:
JournalPersistenceAdapator(JDBCPersistenceAdaptor(org.postgresql.ds.PGPoolingDataSource@1589e56))
INFO   | jvm 1    | 2009/02/10 10:22:39 | INFO  JDBCPersistenceAdapter        
- Database driver recognized: [postgresql_native_driver]
INFO   | jvm 1    | 2009/02/10 10:22:39 | DEBUG DefaultJDBCAdapter            
- Executing SQL: CREATE TABLE ACTIVEMQ_MSGS(ID INTEGER NOT NULL, CONTAINER
VARCHAR(250), MSGID_PROD VARCHAR(250), MSGID_SEQ INTEGER, EXPIRATION BIGINT,
MSG BYTEA, PRIMARY KEY ( ID ) )
INFO   | jvm 1    | 2009/02/10 10:22:39 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
CREATE TABLE ACTIVEMQ_MSGS(ID INTEGER NOT NULL, CONTAINER VARCHAR(250),
MSGID_PROD VARCHAR(250), MSGID_SEQ INTEGER, EXPIRATION BIGINT, MSG BYTEA,
PRIMARY KEY ( ID ) ) Message: ERROR: relation "activemq_msgs" already exists
SQLState: 42P07 Vendor code: 0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: relation "activemq_msgs" already exists
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: relation "activemq_msgs" already exists
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_MIDX ON ACTIVEMQ_MSGS
(MSGID_PROD,MSGID_SEQ)
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
CREATE INDEX ACTIVEMQ_MSGS_MIDX ON ACTIVEMQ_MSGS (MSGID_PROD,MSGID_SEQ)
Message: ERROR: current transaction is aborted, commands ignored until end
of transaction block SQLState: 25P02 Vendor code: 0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: current transaction is aborted, commands ignored
until end of transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: current transaction is aborted, commands ignored until end of
transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_CIDX ON ACTIVEMQ_MSGS
(CONTAINER)
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
CREATE INDEX ACTIVEMQ_MSGS_CIDX ON ACTIVEMQ_MSGS (CONTAINER) Message: ERROR:
current transaction is aborted, commands ignored until end of transaction
block SQLState: 25P02 Vendor code: 0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: current transaction is aborted, commands ignored
until end of transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: current transaction is aborted, commands ignored until end of
transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_EIDX ON ACTIVEMQ_MSGS
(EXPIRATION)
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
CREATE INDEX ACTIVEMQ_MSGS_EIDX ON ACTIVEMQ_MSGS (EXPIRATION) Message:
ERROR: current transaction is aborted, commands ignored until end of
transaction block SQLState: 25P02 Vendor code: 0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: current transaction is aborted, commands ignored
until end of transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: current transaction is aborted, commands ignored until end of
transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: CREATE TABLE ACTIVEMQ_ACKS(CONTAINER VARCHAR(250) NOT NULL,
SUB_DEST VARCHAR(250), CLIENT_ID VARCHAR(250) NOT NULL, SUB_NAME
VARCHAR(250) NOT NULL, SELECTOR VARCHAR(250), LAST_ACKED_ID INTEGER, PRIMARY
KEY ( CONTAINER, CLIENT_ID, SUB_NAME))
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
CREATE TABLE ACTIVEMQ_ACKS(CONTAINER VARCHAR(250) NOT NULL, SUB_DEST
VARCHAR(250), CLIENT_ID VARCHAR(250) NOT NULL, SUB_NAME VARCHAR(250) NOT
NULL, SELECTOR VARCHAR(250), LAST_ACKED_ID INTEGER, PRIMARY KEY ( CONTAINER,
CLIENT_ID, SUB_NAME)) Message: ERROR: current transaction is aborted,
commands ignored until end of transaction block SQLState: 25P02 Vendor code:
0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: current transaction is aborted, commands ignored
until end of transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: current transaction is aborted, commands ignored until end of
transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: CREATE TABLE ACTIVEMQ_LOCK( ID BIGINT NOT NULL, TIME
BIGINT, BROKER_NAME VARCHAR(250), PRIMARY KEY (ID) )
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
CREATE TABLE ACTIVEMQ_LOCK( ID BIGINT NOT NULL, TIME BIGINT, BROKER_NAME
VARCHAR(250), PRIMARY KEY (ID) ) Message: ERROR: current transaction is
aborted, commands ignored until end of transaction block SQLState: 25P02
Vendor code: 0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: current transaction is aborted, commands ignored
until end of transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: current transaction is aborted, commands ignored until end of
transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: INSERT INTO ACTIVEMQ_LOCK(ID) VALUES (1)
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  DefaultJDBCAdapter            
- Could not create JDBC tables; they could already exist. Failure was:
INSERT INTO ACTIVEMQ_LOCK(ID) VALUES (1) Message: ERROR: current transaction
is aborted, commands ignored until end of transaction block SQLState: 25P02
Vendor code: 0
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Failure details: ERROR: current transaction is aborted, commands ignored
until end of transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 | org.postgresql.util.PSQLException:
ERROR: current transaction is aborted, commands ignored until end of
transaction block
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection$StatementHandler.invoke(AbstractJdbc23PooledConnection.java:477)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at $Proxy1.execute(Unknown
Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doCreateTables(DefaultJDBCAdapter.java:93)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.start(JDBCPersistenceAdapter.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.store.journal.JournalPersistenceAdapter.start(JournalPersistenceAdapter.java:228)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerService.afterPropertiesSet(XBeanBrokerService.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1368)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.security.AccessController.doPrivileged(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:64)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.xbean.spring.context.ResourceXmlApplicationContext.<init>(ResourceXmlApplicationContext.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createApplicationContext(XBeanBrokerFactory.java:96)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.xbean.XBeanBrokerFactory.createBroker(XBeanBrokerFactory.java:52)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:71)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.broker.BrokerFactory.createBroker(BrokerFactory.java:54)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.startBroker(StartCommand.java:115)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.StartCommand.runTask(StartCommand.java:74)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.runTask(ShellCommand.java:129)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.AbstractCommand.execute(AbstractCommand.java:57)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.command.ShellCommand.main(ShellCommand.java:79)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.runTaskClass(Main.java:225)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.apache.activemq.console.Main.main(Main.java:106)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
org.tanukisoftware.wrapper.WrapperSimpleApp.run(WrapperSimpleApp.java:240)
INFO   | jvm 1    | 2009/02/10 10:22:40 |       at
java.lang.Thread.run(Unknown Source)
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  DefaultDatabaseLocker         
- Attempting to acquire the exclusive lock to become the Master broker
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  DefaultDatabaseLocker         
- Becoming the master on dataSource:
org.postgresql.ds.PGPoolingDataSource@1589e56
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  BrokerService                 
- ActiveMQ 5.2.0 JMS Message Broker (jms1) is starting
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  BrokerService                 
- For help or more information please see: http://activemq.apache.org/
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  RitisSecurityFilter           
- RitisSecurityFilter created.
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG RitisSecurityFilter           
- User null attempting to create: topic://ActiveMQ.Advisory.MasterBroker
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  RitisSecurityFilter           
- Creating destination failed. User null is not authenticated.
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  SecurityLog                   
- Creating destination failed. User null is not authenticated.
INFO   | jvm 1    | 2009/02/10 10:22:40 | WARN  AdvisoryBroker                
- Failed to fire message master broker advisory
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Cleaning up old messages.
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Executing SQL: DELETE FROM ACTIVEMQ_MSGS WHERE ( EXPIRATION<>0 AND
EXPIRATION<?) OR ID <= ( SELECT min(ACTIVEMQ_ACKS.LAST_ACKED_ID) FROM
ACTIVEMQ_ACKS WHERE ACTIVEMQ_ACKS.CONTAINER=ACTIVEMQ_MSGS.CONTAINER)
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG DefaultJDBCAdapter            
- Deleted 0 old message(s).
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JDBCPersistenceAdapter        
- Cleanup done.
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  JournalPersistenceAdapter     
- Journal Recovery Started from: Active Journal: using 2 x 20.0 Megs at:
/opt/apache-activemq-5.2.0/data/journal
INFO   | jvm 1    | 2009/02/10 10:22:40 | DEBUG JournalPersistenceAdapter     
- TRACE Entry: RECOVERED
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  JournalPersistenceAdapter     
- Journal Recovered: 0 message(s) in transactions recovered.
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  RitisSecurityFilter           
- RitisSecurityFilter started.
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  SecurityLog                   
- RitisSecurityFilter started.
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  TransportServerThreadSupport  
- Listening for connections at: tcp://jmstest.something.org:61616
INFO   | jvm 1    | 2009/02/10 10:22:40 | INFO  TransportConnector            
- Connector openwire Started
INFO   | jvm 1    | 2009/02/10 10:22:41 | INFO  TransportServerThreadSupport  
- Listening for connections at: ssl://jmstest.something.org:61617
INFO   | jvm 1    | 2009/02/10 10:22:41 | INFO  TransportConnector            
- Connector ssl Started
INFO   | jvm 1    | 2009/02/10 10:22:41 | INFO  TransportServerThreadSupport  
- Listening for connections at: stomp://jmstest.something.org:61613
INFO   | jvm 1    | 2009/02/10 10:22:41 | INFO  TransportConnector            
- Connector stomp Started
INFO   | jvm 1    | 2009/02/10 10:22:41 | INFO  BrokerService                 
- ActiveMQ JMS Message Broker (jms1,
ID:jmstest.something.org-33980-1234279360206-0:0) started
----End log dump------




JIRA jira@apache.org wrote:
> 
> 
>      [
> https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
> ]
> 
> freetwix updated AMQ-2096:
> --------------------------
> 
>     Description: 
> Starting up activemq with a default configuration + simple authentication
> like:
> 
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}"
> password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
> 
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers"
> read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers"
> read="consumers" admin="admins" />
> 
>                      <authorizationEntry queue="ActiveMQ.Advisory.>"
> write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>"
> write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> 
> results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker
> advisory
> 
> there seems to be no problems in the further processing of advisory
> messages, but the warning is introduced with the use of the authentication
> plugin. any ideas?
> 
> thankx,
> jochen
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/-jira--Created%3A-%28AMQ-2096%29-WARN-AdvisoryBroker---Failed-to-fire-message-master-broker-advisory-tp21834409p21936466.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.


[jira] Updated: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by "freetwix (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

freetwix updated AMQ-2096:
--------------------------

    Description: 
Starting up activemq with a default configuration + simple authentication + mysql-ds like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin.

greets,
jochen

  was:
Starting up activemq with a default configuration + simple authentication + mysql-ds like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin. any ideas?

thankx,
jochen


> WARN AdvisoryBroker - Failed to fire message master broker advisory
> -------------------------------------------------------------------
>
>                 Key: AMQ-2096
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.2.0
>         Environment: mac os x 10.5.6, java 1.5.0_16
>            Reporter: freetwix
>
> Starting up activemq with a default configuration + simple authentication + mysql-ds like:
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}" password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker advisory
> there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin.
> greets,
> jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by "Dan Bucatanschi (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=49299#action_49299 ] 

Dan Bucatanschi commented on AMQ-2096:
--------------------------------------

Please see these links for more information I found on this issue:

http://www.nabble.com/-jira--Created%3A-%28AMQ-2096%29-WARN-AdvisoryBroker---Failed-to-fire-message-master-broker-advisory-tp21834409p21936466.html

http://www.nabble.com/-jira--Created%3A-%28AMQ-2096%29-WARN-AdvisoryBroker---Failed-to-fire-message-master-broker-advisory-tp21834409p21936676.html

Thanks,
-Dan


> WARN AdvisoryBroker - Failed to fire message master broker advisory
> -------------------------------------------------------------------
>
>                 Key: AMQ-2096
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.2.0
>         Environment: mac os x 10.5.6, java 1.5.0_16
>            Reporter: freetwix
>
> Starting up activemq with a default configuration + simple authentication + mysql-ds like:
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}" password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker advisory
> there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin.
> greets,
> jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by "freetwix (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

freetwix updated AMQ-2096:
--------------------------

    Description: 
Starting up activemq with a default configuration + simple authentication + mysql-ds like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin. any ideas?

thankx,
jochen

  was:
Starting up activemq with a default configuration + simple authentication like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin. any ideas?

thankx,
jochen


> WARN AdvisoryBroker - Failed to fire message master broker advisory
> -------------------------------------------------------------------
>
>                 Key: AMQ-2096
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.2.0
>         Environment: mac os x 10.5.6, java 1.5.0_16
>            Reporter: freetwix
>
> Starting up activemq with a default configuration + simple authentication + mysql-ds like:
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}" password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker advisory
> there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin. any ideas?
> thankx,
> jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by "freetwix (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

freetwix updated AMQ-2096:
--------------------------

    Description: 
Starting up activemq with a default configuration + simple authentication like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin. any ideas?

thankx,
jochen

  was:
Starting up activemq with a default configuration + simple authentification like:

        <plugins>
            <simpleAuthenticationPlugin>
              <users>
                <authenticationUser username="${activemq.username}" password="${activemq.password}"
                  groups="producers,consumers,admins"/>
              </users>
            </simpleAuthenticationPlugin>

            <authorizationPlugin>
               <map>
                 <authorizationMap>
                   <authorizationEntries>
                     <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
                     <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />

                     <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                     <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
                   </authorizationEntries>
                 </authorizationMap>
               </map>
            </authorizationPlugin>            
        </plugins>         

results in the following warning message:
 
         WARN AdvisoryBroker - Failed to fire message master broker advisory

there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentification plugin. any ideas?

thankx,
jochen


> WARN AdvisoryBroker - Failed to fire message master broker advisory
> -------------------------------------------------------------------
>
>                 Key: AMQ-2096
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.2.0
>         Environment: mac os x 10.5.6, java 1.5.0_16
>            Reporter: freetwix
>
> Starting up activemq with a default configuration + simple authentication like:
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}" password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker advisory
> there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin. any ideas?
> thankx,
> jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by "Dejan Bosanac (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dejan Bosanac resolved AMQ-2096.
--------------------------------

       Resolution: Fixed
    Fix Version/s: 5.3.0

Fixed in SVN revision 744082 by adding broker security context when firing the advisory

> WARN AdvisoryBroker - Failed to fire message master broker advisory
> -------------------------------------------------------------------
>
>                 Key: AMQ-2096
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.2.0
>         Environment: mac os x 10.5.6, java 1.5.0_16
>            Reporter: freetwix
>            Assignee: Dejan Bosanac
>             Fix For: 5.3.0
>
>
> Starting up activemq with a default configuration + simple authentication + mysql-ds like:
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}" password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker advisory
> there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin.
> greets,
> jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (AMQ-2096) WARN AdvisoryBroker - Failed to fire message master broker advisory

Posted by "Dejan Bosanac (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dejan Bosanac reassigned AMQ-2096:
----------------------------------

    Assignee: Dejan Bosanac

> WARN AdvisoryBroker - Failed to fire message master broker advisory
> -------------------------------------------------------------------
>
>                 Key: AMQ-2096
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2096
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.2.0
>         Environment: mac os x 10.5.6, java 1.5.0_16
>            Reporter: freetwix
>            Assignee: Dejan Bosanac
>
> Starting up activemq with a default configuration + simple authentication + mysql-ds like:
>         <plugins>
>             <simpleAuthenticationPlugin>
>               <users>
>                 <authenticationUser username="${activemq.username}" password="${activemq.password}"
>                   groups="producers,consumers,admins"/>
>               </users>
>             </simpleAuthenticationPlugin>
>             <authorizationPlugin>
>                <map>
>                  <authorizationMap>
>                    <authorizationEntries>
>                      <authorizationEntry queue=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry topic=">" write="producers" read="consumers" admin="admins" />
>                      <authorizationEntry queue="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                      <authorizationEntry topic="ActiveMQ.Advisory.>" write="all" read="all" admin="all" />
>                    </authorizationEntries>
>                  </authorizationMap>
>                </map>
>             </authorizationPlugin>            
>         </plugins>         
> and a default mysql-ds as jdbcPersistenceAdapter results in the following warning message:
>  
>          WARN AdvisoryBroker - Failed to fire message master broker advisory
> there seems to be no problems in the further processing of advisory messages, but the warning is introduced with the use of the authentication plugin.
> greets,
> jochen

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.