Re: how to deploy application scope activemq broker?

2008-10-13 Thread aaaaa
Kevan Miller wrote: On Oct 7, 2008, at 3:50 PM, a wrote: can anybody give me a hint what I'm doing wrong? I would like to have both brokers running... Hmm. Not sure... Are you sure that the second broker is up and listening on 62626? Can you 'telnet localhost 62626

Re: how to deploy application scope activemq broker?

2008-10-07 Thread aaaaa
I have working spring web app which is using default jms broker, DefaultActiveMQConnectionFactory, SendReceiveQueue ... in addition to the default broker I've created second one defined like: ... dep:gbean class=org.apache.geronimo.activemq.management.ActiveMQManagerGBean

how to add activemq to little-g?

2008-10-06 Thread aaaaa
hi all, how do I add activemq broker to little-g? I used ./deploy.sh search-plugins http://geronimo.apache.org/plugins/geronimo-2.1.3/ , but it tried also to install systemdb and other stuff and eventually failed... thanks. -- View this message in context:

Re: how to add activemq to little-g?

2008-10-06 Thread aaaaa
1 ./deploy.sh search-plugins http://geronimo.apache.org/plugins/geronimo-2.1.3/ 2 I choose to install broker and resource adapter like: Install Services [enter a comma separated list of numbers or 'q' to quit]: 60,63 I can see the new file geronimo-plugins.xml.000 at

how to deploy application scope activemq broker?

2008-10-06 Thread aaaaa
hi all, how do I deploy application scope activemq broker? Is there step by step how-to anywhere? :-) thank you. -- View this message in context: http://www.nabble.com/how-to-deploy-application-scope-activemq-broker--tp19842755s134p19842755.html Sent from the Apache Geronimo - Users mailing

Deploying a Module-Scoped Connection Pool...

2008-10-04 Thread aaaaa
hi all, how should I add module-scoped conn. pool to geronimo-web.xml in 2.1.3? can I still do it like : resource external-raradapter/external-rar !-- Begin -- connector xmlns=http://geronimo.apache.org/xml/ns/j2ee/connector-1.2; . . .

activemq jdbc persistence...

2008-09-22 Thread aaaaa
hi all, how do I change persistence for default jms broker from SystemDatabase to a different db? thanks. Alex. -- View this message in context: http://www.nabble.com/activemq-jdbc-persistence...-tp19609218s134p19609218.html Sent from the Apache Geronimo - Users mailing list archive at

Re: Caused by: java.lang.NoClassDefFoundError: org/springframework/beans/factory/InitializingBean

2008-09-21 Thread aaaaa
Hi Tim, It is working now. so, I guess, it was a different reason why I was getting this error. thanks! Tim McConnell-2 wrote: Hi a, that should normally work assuming you have the hidden-classes tag in your geronimo-web.xml deployment plan and your spring jars are in the web-inf

Caused by: java.lang.NoClassDefFoundError: org/springframework/beans/factory/InitializingBean

2008-09-18 Thread aaaaa
hi all, I'm trying to run web app under geronimo.. I'm getting this error , but I have all spring libraries in web-inf/ Caused by: java.lang.NoClassDefFoundError: org/springframework/beans/factory/InitializingBean I tried this: dep:hidden-classes

multiple activemq brokers?

2008-09-08 Thread aaaaa
hi all, is it possible to create and start multiple activemq brokers using geronimo 2.1.1? thanks. -- View this message in context: http://www.nabble.com/multiple-activemq-brokers--tp19366719s134p19366719.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

config file for a jms broker

2008-09-08 Thread aaaaa
hi all, I'm trying to use standalone config file for a new jms broker like: ... gbean name=ActiveMQ2 class=org.apache.geronimo.activemq.BrokerServiceGBeanImpl attribute

org.apache.activemq.store.jdbc.JDBCPersistenceAdapterGBean

2008-09-07 Thread aaaaa
hi all, what jar contains org.apache.activemq.store.jdbc.JDBCPersistenceAdapterGBean? I'm trying to create a broker with jdbc pers. and I get error: couldn't load org.apache.activemq.store.jdbc.JDBCPersistenceAdapterGBean... thanks. -- View this message in context:

spring configuration to get datasource via jndi from geronimo

2008-09-05 Thread aaaaa
hi all, I'm trying to get geronimo datasource via jndi to use in junit test like: Code: ... UserDAOTest extends AbstractDependencyInjectionSpringContextTests{ ... protected DataSource dataSource; public UserDAOTest() { setPopulateProtectedVariables(true); } ... how