2015-01-05 07:45:36 -05:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2014-11-17 08:54:11 -05:00
|
|
|
<configuration xmlns="urn:activemq"
|
2014-10-31 06:20:28 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2014-11-19 05:39:29 -05:00
|
|
|
xsi:schemaLocation="urn:activemq /schema/activemq-configuration.xsd">
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
<backup>true</backup>
|
|
|
|
|
2014-11-19 14:58:44 -05:00
|
|
|
<journal-directory>/tmp/activemq-unit-test/start-stop-data-backup</journal-directory>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
<!-- Connectors -->
|
|
|
|
|
|
|
|
<connectors>
|
|
|
|
<connector name="netty-connector">
|
2014-11-17 09:23:06 -05:00
|
|
|
<factory-class>org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory</factory-class>
|
2014-10-31 06:20:28 -04:00
|
|
|
<param key="port" value="5446"/>
|
|
|
|
</connector>
|
|
|
|
</connectors>
|
|
|
|
|
|
|
|
<!-- Acceptors -->
|
|
|
|
<acceptors>
|
|
|
|
<acceptor name="netty-acceptor">
|
2014-11-17 09:23:06 -05:00
|
|
|
<factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory</factory-class>
|
2014-10-31 06:20:28 -04:00
|
|
|
<param key="port" value="5446"/>
|
|
|
|
</acceptor>
|
|
|
|
</acceptors>
|
|
|
|
|
|
|
|
|
|
|
|
<security-enabled>false</security-enabled>
|
|
|
|
|
|
|
|
<queues>
|
|
|
|
<queue name="myQueue">
|
|
|
|
<address>myAddress</address>
|
|
|
|
</queue>
|
|
|
|
|
|
|
|
<queue name="jms.queue.myJMSQueue">
|
|
|
|
<address>jms.queue.myJMSAddress</address>
|
|
|
|
</queue>
|
|
|
|
</queues>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|