2015-01-05 07:45:36 -05:00
|
|
|
<?xml version='1.0'?>
|
|
|
|
<!--
|
|
|
|
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-20 03:44:13 -05:00
|
|
|
xsi:schemaLocation="urn:activemq /schema/activemq-configuration.xsd">
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
<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="tcp-no-delay" value="false"/>
|
|
|
|
<param key="tcp-send-buffer-size" value="1048576"/>
|
|
|
|
<param key="tcp-receive-buffer-size" value="1048576"/>
|
|
|
|
<param key="host" value="localhost"/>
|
|
|
|
</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="tcp-no-delay" value="false"/>
|
|
|
|
<param key="tcp-send-buffer-size" value="1048576"/>
|
|
|
|
<param key="tcp-receive-buffer-size" value="1048576"/>
|
|
|
|
<param key="host" value="localhost"/>
|
|
|
|
</acceptor>
|
|
|
|
</acceptors>
|
|
|
|
|
|
|
|
<security-enabled>false</security-enabled>
|
|
|
|
|
|
|
|
<persistence-enabled>false</persistence-enabled>
|
|
|
|
|
|
|
|
<server-dump-interval>30000</server-dump-interval>
|
|
|
|
|
|
|
|
<queues>
|
|
|
|
<queue name="soakQueue">
|
|
|
|
<address>soakAddress</address>
|
|
|
|
</queue>
|
|
|
|
</queues>
|
|
|
|
|
|
|
|
</configuration>
|