Re: Configuration of custom plugins with XBeans

2013-09-25 Thread Christian Posta
yah probably because you're declaring the to be in the spring schema, so everything else within the bean def will expect to be w/in spring schema. would probably need to augment the auto generated activemq schema to support your new schema On Wed, Sep 25, 2013 at 2:54 PM, Frizz wrote: > He

Re: Configuration of custom plugins with XBeans

2013-09-25 Thread Frizz
Hello Christian, that was an interesting read. Thank you. I tried to "incorporate" your simpleController example into my activemq.xml. It works fine outside of the definition, but when I do something like this I get an IllegalArgumentException: Cannot locate BeanDefinitionDecorator for element

Re: Configuration of custom plugins with XBeans

2013-09-25 Thread Christian Posta
not sure if this will help, but i did write a blog about how ActiveMQ uses xbeans to generate its XSD: http://www.christianposta.com/blog/?p=111 On Wed, Sep 25, 2013 at 3:26 AM, Frizz wrote: > Hello, > > I create my own BrokerPlugin and configured it in activemq.xml like this: > > http://activ

Configuration of custom plugins with XBeans

2013-09-25 Thread Frizz
Hello, I create my own BrokerPlugin and configured it in activemq.xml like this: http://activemq.apache.org/schema/core"; brokerName="localhost" dataDirectory="${activemq.data}"> http://www.springframework.org/schema/beans"; id="myBrokerPlugin" class="myPackage.MyBrokerPlugin">