Merging rename all config files #15

This commit is contained in:
Clebert Suconic 2014-11-18 11:11:10 -05:00
commit b5d695f030
672 changed files with 2405 additions and 2454 deletions

View File

@ -80,7 +80,7 @@ public class JMSServerDeployer extends XmlDeployer
@Override @Override
public void validate(final Node rootNode) throws Exception public void validate(final Node rootNode) throws Exception
{ {
org.apache.activemq.utils.XMLUtil.validate(rootNode, "schema/hornetq-jms.xsd"); org.apache.activemq.utils.XMLUtil.validate(rootNode, "schema/activemq-jms.xsd");
} }
/** /**

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<persistence-enabled>false</persistence-enabled> <persistence-enabled>false</persistence-enabled>
<!-- Connectors --> <!-- Connectors -->

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -32,7 +32,7 @@ public final class FileConfiguration extends ConfigurationImpl
private static final long serialVersionUID = -4766689627675039596L; private static final long serialVersionUID = -4766689627675039596L;
// Constants ------------------------------------------------------------------------ // Constants ------------------------------------------------------------------------
private static final String DEFAULT_CONFIGURATION_URL = "hornetq-configuration.xml"; private static final String DEFAULT_CONFIGURATION_URL = "activemq-configuration.xml";
// For a bridge confirmations must be activated or send acknowledgments won't return // For a bridge confirmations must be activated or send acknowledgments won't return
public static final int DEFAULT_CONFIRMATION_WINDOW_SIZE = 1024 * 1024; public static final int DEFAULT_CONFIRMATION_WINDOW_SIZE = 1024 * 1024;

View File

@ -71,7 +71,7 @@ public class AddressSettingsDeployer extends XmlDeployer
@Override @Override
public String[] getDefaultConfigFileNames() public String[] getDefaultConfigFileNames()
{ {
return new String[]{"hornetq-configuration.xml", "hornetq-queues.xml"}; return new String[]{"activemq-configuration.xml", "activemq-queues.xml"};
} }
/** /**

View File

@ -140,6 +140,6 @@ public class BasicUserCredentialsDeployer extends XmlDeployer
@Override @Override
public String[] getDefaultConfigFileNames() public String[] getDefaultConfigFileNames()
{ {
return new String[]{"hornetq-users.xml"}; return new String[]{"activemq-users.xml"};
} }
} }

View File

@ -69,7 +69,7 @@ import org.w3c.dom.Node;
import org.w3c.dom.NodeList; import org.w3c.dom.NodeList;
/** /**
* Parses an XML document according to the {@literal hornetq-configuration.xsd} schema. * Parses an XML document according to the {@literal activemq-configuration.xsd} schema.
* *
* @author <a href="ataylor@redhat.com">Andy Taylor</a> * @author <a href="ataylor@redhat.com">Andy Taylor</a>
* @author <a href="tim.fox@jboss.com">Tim Fox</a> * @author <a href="tim.fox@jboss.com">Tim Fox</a>

View File

@ -87,7 +87,7 @@ public class QueueDeployer extends XmlDeployer
@Override @Override
public String[] getDefaultConfigFileNames() public String[] getDefaultConfigFileNames()
{ {
return new String[]{"hornetq-configuration.xml", "hornetq-queues.xml"}; return new String[]{"activemq-configuration.xml", "activemq-queues.xml"};
} }
} }

View File

@ -108,6 +108,6 @@ public class SecurityDeployer extends XmlDeployer
@Override @Override
public String[] getDefaultConfigFileNames() public String[] getDefaultConfigFileNames()
{ {
return new String[]{"hornetq-configuration.xml", SecurityDeployer.QUEUES_XML}; return new String[]{"activemq-configuration.xml", SecurityDeployer.QUEUES_XML};
} }
} }

View File

@ -36,7 +36,7 @@ public class EmbeddedHornetQ
protected MBeanServer mbeanServer; protected MBeanServer mbeanServer;
/** /**
* Classpath resource for hornetq server config. Defaults to 'hornetq-configuration.xml'. * Classpath resource for hornetq server config. Defaults to 'activemq-configuration.xml'.
* *
* @param filename * @param filename
*/ */
@ -92,7 +92,7 @@ public class EmbeddedHornetQ
{ {
if (configuration == null) if (configuration == null)
{ {
if (configResourcePath == null) configResourcePath = "hornetq-configuration.xml"; if (configResourcePath == null) configResourcePath = "activemq-configuration.xml";
FileConfiguration config = new FileConfiguration(configResourcePath); FileConfiguration config = new FileConfiguration(configResourcePath);
config.start(); config.start();
configuration = config; configuration = config;

View File

@ -129,7 +129,7 @@ public class FileConfigurationParserTest extends UnitTestCase
private static String firstPart = private static String firstPart =
"<configuration xmlns=\"urn:hornetq\"\n" + "<configuration xmlns=\"urn:hornetq\"\n" +
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" + "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" +
"xsi:schemaLocation=\"urn:hornetq /schema/hornetq-configuration.xsd\">\n" + "xsi:schemaLocation=\"urn:hornetq /schema/activemq-configuration.xsd\">\n" +
"<name>HornetQ.main.config</name>" + "\n" + "<name>HornetQ.main.config</name>" + "\n" +
"<backup-group-name>abackupgroupname</backup-group-name>" + "\n" + "<backup-group-name>abackupgroupname</backup-group-name>" + "\n" +
"<scale-down-group-name>ascaledowngroupname</scale-down-group-name>" + "\n" + "<scale-down-group-name>ascaledowngroupname</scale-down-group-name>" + "\n" +

View File

@ -62,7 +62,7 @@ public class WrongRoleFileConfigurationParserTest extends UnitTestCase
private static final String configuration = private static final String configuration =
"<configuration xmlns=\"urn:hornetq\"\n" + "<configuration xmlns=\"urn:hornetq\"\n" +
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" + "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" +
"xsi:schemaLocation=\"urn:hornetq /schema/hornetq-configuration.xsd\">\n" + "xsi:schemaLocation=\"urn:hornetq /schema/activemq-configuration.xsd\">\n" +
"<name>HornetQ.main.config</name>" + "\n" + "<name>HornetQ.main.config</name>" + "\n" +
"<backup-group-name>anodegroupname</backup-group-name>" + "\n" + "<backup-group-name>anodegroupname</backup-group-name>" + "\n" +
"<log-delegate-factory-class-name>org.apache.activemq.integration.logging.Log4jLogDelegateFactory</log-delegate-factory-class-name>" + "\n" + "<log-delegate-factory-class-name>org.apache.activemq.integration.logging.Log4jLogDelegateFactory</log-delegate-factory-class-name>" + "\n" +

View File

@ -1,6 +1,6 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/schemas/hornetq-configuration.xsd "> xsi:schemaLocation="urn:hornetq ../../src/schemas/activemq-configuration.xsd ">
<!-- just use the defaults --> <!-- just use the defaults -->
</configuration> </configuration>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<resolve-protocols>false</resolve-protocols> <resolve-protocols>false</resolve-protocols>
<clustered>true</clustered> <clustered>true</clustered>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size> <scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
<thread-pool-max-size>54321</thread-pool-max-size> <thread-pool-max-size>54321</thread-pool-max-size>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size> <scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
<thread-pool-max-size>54321</thread-pool-max-size> <thread-pool-max-size>54321</thread-pool-max-size>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size> <scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
<thread-pool-max-size>54321</thread-pool-max-size> <thread-pool-max-size>54321</thread-pool-max-size>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size> <scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
<thread-pool-max-size>54321</thread-pool-max-size> <thread-pool-max-size>54321</thread-pool-max-size>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size> <scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
<thread-pool-max-size>54321</thread-pool-max-size> <thread-pool-max-size>54321</thread-pool-max-size>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../src/config/common/schema/activemq-configuration.xsd">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size> <scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
<thread-pool-max-size>54321</thread-pool-max-size> <thread-pool-max-size>54321</thread-pool-max-size>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<replication> <replication>
<colocated> <colocated>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<shared-store> <shared-store>
<colocated> <colocated>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<!-- We need to make it clustered otherwise the bridge won't deploy --> <!-- We need to make it clustered otherwise the bridge won't deploy -->

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<live-only> <live-only>
<scale-down> <scale-down>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<!--only one of the following--> <!--only one of the following-->
<!--on server shutdown scale down to another live server--> <!--on server shutdown scale down to another live server-->

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<!--only one of the following--> <!--only one of the following-->
<!--on server shutdown scale down to another live server--> <!--on server shutdown scale down to another live server-->

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy/> <ha-policy/>
</configuration> </configuration>

View File

@ -1,6 +1,6 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
</configuration> </configuration>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<replication> <replication>
<slave> <slave>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<replication> <replication>
<slave> <slave>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<replication> <replication>
<slave> <slave>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<replication> <replication>
<master> <master>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<shared-store> <shared-store>
<master> <master>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<shared-store> <shared-store>
<slave> <slave>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<shared-store> <shared-store>
<slave> <slave>

View File

@ -1,7 +1,7 @@
<configuration <configuration
xmlns="urn:activemq" xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<ha-policy> <ha-policy>
<shared-store> <shared-store>
<slave> <slave>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<paging-directory>${data.dir:../data}/paging</paging-directory> <paging-directory>${data.dir:../data}/paging</paging-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<connection-factory name="NettyXAConnectionFactory"> <connection-factory name="NettyXAConnectionFactory">
<xa>true</xa> <xa>true</xa>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<paging-directory>${data.dir:../data}/paging</paging-directory> <paging-directory>${data.dir:../data}/paging</paging-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<connection-factory name="NettyXAConnectionFactory"> <connection-factory name="NettyXAConnectionFactory">
<xa>true</xa> <xa>true</xa>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<!-- <!--
if you want to run this as a backup on different ports you would need to set the following variable if you want to run this as a backup on different ports you would need to set the following variable
export CLUSTER_PROPS="-Djnp.port=1199 -Djnp.rmiPort=1198 -Djnp.host=localhost -Dhornetq.remoting.netty.host=localhost -Dhornetq.remoting.netty.port=5545 -Dhornetq.remoting.netty.batch.port=5555 -Dhornetq.backup=true" export CLUSTER_PROPS="-Djnp.port=1199 -Djnp.rmiPort=1198 -Djnp.host=localhost -Dhornetq.remoting.netty.host=localhost -Dhornetq.remoting.netty.port=5545 -Dhornetq.remoting.netty.batch.port=5555 -Dhornetq.backup=true"

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<connection-factory name="NettyXAConnectionFactory"> <connection-factory name="NettyXAConnectionFactory">
<xa>true</xa> <xa>true</xa>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<!-- <!--
if you want to run this as a backup on different ports you would need to set the following variable if you want to run this as a backup on different ports you would need to set the following variable
export CLUSTER_PROPS="-Djnp.port=1199 -Djnp.rmiPort=1198 -Djnp.host=localhost -Dhornetq.remoting.netty.host=localhost -Dhornetq.remoting.netty.port=5545 -Dhornetq.remoting.netty.batch.port=5555 -Dhornetq.backup=true" export CLUSTER_PROPS="-Djnp.port=1199 -Djnp.rmiPort=1198 -Djnp.host=localhost -Dhornetq.remoting.netty.host=localhost -Dhornetq.remoting.netty.port=5545 -Dhornetq.remoting.netty.batch.port=5555 -Dhornetq.backup=true"

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<connection-factory name="NettyXAConnectionFactory"> <connection-factory name="NettyXAConnectionFactory">
<xa>true</xa> <xa>true</xa>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -286,7 +286,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
&lt;jmx-domain>org.apache.activemq.backup1&lt;/jmx-domain> &lt;jmx-domain>org.apache.activemq.backup1&lt;/jmx-domain>

View File

@ -47,7 +47,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
... ...
&lt;large-messages-directory>/data/large-messages&lt;/large-messages-directory> &lt;large-messages-directory>/data/large-messages&lt;/large-messages-directory>
... ...

View File

@ -50,7 +50,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
... ...
&lt;paging-directory>/somewhere/paging-directory&lt;/paging-directory> &lt;paging-directory>/somewhere/paging-directory&lt;/paging-directory>
...</programlisting> ...</programlisting>

View File

@ -151,7 +151,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../schemas/hornetq-users.xsd "> xsi:schemaLocation="urn:hornetq ../schemas/activemq-users.xsd ">
&lt;defaultuser name="guest" password="guest"> &lt;defaultuser name="guest" password="guest">
&lt;role name="guest"/> &lt;role name="guest"/>

View File

@ -40,7 +40,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
&lt;!--the connection factory used by the example--> &lt;!--the connection factory used by the example-->
&lt;connection-factory name="ConnectionFactory"> &lt;connection-factory name="ConnectionFactory">
&lt;connectors> &lt;connectors>

View File

@ -65,7 +65,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../schemas/hornetq-jms.xsd "> xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd ">
&lt;connection-factory name="ConnectionFactory"> &lt;connection-factory name="ConnectionFactory">
&lt;connectors> &lt;connectors>
@ -151,7 +151,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../schemas/hornetq-jms.xsd "> xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd ">
&lt;connection-factory name="ConnectionFactory" signature="queue"> &lt;connection-factory name="ConnectionFactory" signature="queue">
&lt;xa>true&lt;/xa> &lt;xa>true&lt;/xa>

View File

@ -33,7 +33,7 @@
<para>这个参数的名字是<literal>large-messages-directory</literal></para> <para>这个参数的名字是<literal>large-messages-directory</literal></para>
<programlisting>&lt;configuration xmlns="urn:activemq" <programlisting>&lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
... ...

View File

@ -38,7 +38,7 @@
可以定义全局的分页转发参数。</para> 可以定义全局的分页转发参数。</para>
<programlisting>&lt;configuration xmlns="urn:activemq" <programlisting>&lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
... ...

View File

@ -114,7 +114,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../schemas/hornetq-users.xsd "&gt; xsi:schemaLocation="urn:hornetq ../schemas/activemq-users.xsd "&gt;
&lt;defaultuser name="guest" password="guest"&gt; &lt;defaultuser name="guest" password="guest"&gt;
&lt;role name="guest"/&gt; &lt;role name="guest"/&gt;

View File

@ -46,7 +46,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../schemas/hornetq-jms.xsd "&gt; xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd "&gt;
&lt;connection-factory name="ConnectionFactory"&gt; &lt;connection-factory name="ConnectionFactory"&gt;
&lt;connectors> &lt;connectors>
@ -129,7 +129,7 @@
<programlisting> <programlisting>
&lt;configuration xmlns="urn:activemq" &lt;configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../schemas/hornetq-jms.xsd "&gt; xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd "&gt;
&lt;connection-factory name="ConnectionFactory" signature="queue"&gt; &lt;connection-factory name="ConnectionFactory" signature="queue"&gt;
&lt;xa>true&lt;/xa> &lt;xa>true&lt;/xa>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>target/server0/data/messaging/bindings</bindings-directory> <bindings-directory>target/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>target/server0/data/messaging/bindings</bindings-directory> <bindings-directory>target/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -1,5 +1,5 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null--> <!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest"> <defaultuser name="guest" password="guest">
<role name="guest"/> <role name="guest"/>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<!-- Connectors --> <!-- Connectors -->
<connectors> <connectors>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +0,0 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<!-- Connectors --> <!-- Connectors -->

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +0,0 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +0,0 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server1/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server1/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +0,0 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +0,0 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory" signature="queue"> <connection-factory name="ConnectionFactory" signature="queue">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,7 +0,0 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq ../../../../../../../../hornetq-server/src/main/resources/schema/hornetq-configuration.xsd"> xsi:schemaLocation="urn:hornetq ../../../../../../../../hornetq-server/src/main/resources/schema/activemq-configuration.xsd">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -1,6 +1,6 @@
<configuration xmlns="urn:activemq" <configuration xmlns="urn:activemq"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd"> xsi:schemaLocation="urn:hornetq /schema/activemq-jms.xsd">
<!--the connection factory used by the example--> <!--the connection factory used by the example-->
<connection-factory name="ConnectionFactory"> <connection-factory name="ConnectionFactory">
<connectors> <connectors>

View File

@ -0,0 +1,7 @@
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hornetq /schema/activemq-users.xsd">
<!-- the default user. this is used where username is null-->
<defaultuser name="guest" password="guest">
<role name="guest"/>
</defaultuser>
</configuration>

Some files were not shown because too many files have changed in this diff Show More