ACTIVEMQ6-4 - rename all config files
https://issues.apache.org/jira/browse/ACTIVEMQ6-4 rename all the config files to activemq and fix schema names in them
This commit is contained in:
parent
571fb7a236
commit
aeaba39219
|
@ -80,7 +80,7 @@ public class JMSServerDeployer extends XmlDeployer
|
|||
@Override
|
||||
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");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
<!-- Connectors -->
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
|
@ -32,7 +32,7 @@ public final class FileConfiguration extends ConfigurationImpl
|
|||
private static final long serialVersionUID = -4766689627675039596L;
|
||||
// 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
|
||||
public static final int DEFAULT_CONFIRMATION_WINDOW_SIZE = 1024 * 1024;
|
||||
|
|
|
@ -71,7 +71,7 @@ public class AddressSettingsDeployer extends XmlDeployer
|
|||
@Override
|
||||
public String[] getDefaultConfigFileNames()
|
||||
{
|
||||
return new String[]{"hornetq-configuration.xml", "hornetq-queues.xml"};
|
||||
return new String[]{"activemq-configuration.xml", "activemq-queues.xml"};
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -140,6 +140,6 @@ public class BasicUserCredentialsDeployer extends XmlDeployer
|
|||
@Override
|
||||
public String[] getDefaultConfigFileNames()
|
||||
{
|
||||
return new String[]{"hornetq-users.xml"};
|
||||
return new String[]{"activemq-users.xml"};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ import org.w3c.dom.Node;
|
|||
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="tim.fox@jboss.com">Tim Fox</a>
|
||||
|
|
|
@ -87,7 +87,7 @@ public class QueueDeployer extends XmlDeployer
|
|||
@Override
|
||||
public String[] getDefaultConfigFileNames()
|
||||
{
|
||||
return new String[]{"hornetq-configuration.xml", "hornetq-queues.xml"};
|
||||
return new String[]{"activemq-configuration.xml", "activemq-queues.xml"};
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -108,6 +108,6 @@ public class SecurityDeployer extends XmlDeployer
|
|||
@Override
|
||||
public String[] getDefaultConfigFileNames()
|
||||
{
|
||||
return new String[]{"hornetq-configuration.xml", SecurityDeployer.QUEUES_XML};
|
||||
return new String[]{"activemq-configuration.xml", SecurityDeployer.QUEUES_XML};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ public class EmbeddedHornetQ
|
|||
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
|
||||
*/
|
||||
|
@ -92,7 +92,7 @@ public class EmbeddedHornetQ
|
|||
{
|
||||
if (configuration == null)
|
||||
{
|
||||
if (configResourcePath == null) configResourcePath = "hornetq-configuration.xml";
|
||||
if (configResourcePath == null) configResourcePath = "activemq-configuration.xml";
|
||||
FileConfiguration config = new FileConfiguration(configResourcePath);
|
||||
config.start();
|
||||
configuration = config;
|
||||
|
|
|
@ -129,7 +129,7 @@ public class FileConfigurationParserTest extends UnitTestCase
|
|||
private static String firstPart =
|
||||
"<configuration xmlns=\"urn:hornetq\"\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" +
|
||||
"<backup-group-name>abackupgroupname</backup-group-name>" + "\n" +
|
||||
"<scale-down-group-name>ascaledowngroupname</scale-down-group-name>" + "\n" +
|
||||
|
|
|
@ -62,7 +62,7 @@ public class WrongRoleFileConfigurationParserTest extends UnitTestCase
|
|||
private static final String configuration =
|
||||
"<configuration xmlns=\"urn:hornetq\"\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" +
|
||||
"<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" +
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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 -->
|
||||
</configuration>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<resolve-protocols>false</resolve-protocols>
|
||||
<clustered>true</clustered>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
|
||||
<thread-pool-max-size>54321</thread-pool-max-size>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
|
||||
<thread-pool-max-size>54321</thread-pool-max-size>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
|
||||
<thread-pool-max-size>54321</thread-pool-max-size>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
|
||||
<thread-pool-max-size>54321</thread-pool-max-size>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
|
||||
<thread-pool-max-size>54321</thread-pool-max-size>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<scheduled-thread-pool-max-size>12345</scheduled-thread-pool-max-size>
|
||||
<thread-pool-max-size>54321</thread-pool-max-size>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<replication>
|
||||
<colocated>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<shared-store>
|
||||
<colocated>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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 -->
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<live-only>
|
||||
<scale-down>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<!--only one of the following-->
|
||||
<!--on server shutdown scale down to another live server-->
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<!--only one of the following-->
|
||||
<!--on server shutdown scale down to another live server-->
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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/>
|
||||
|
||||
</configuration>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<replication>
|
||||
<slave>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<replication>
|
||||
<slave>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<replication>
|
||||
<slave>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<replication>
|
||||
<master>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<shared-store>
|
||||
<master>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<shared-store>
|
||||
<slave>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<shared-store>
|
||||
<slave>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<configuration
|
||||
xmlns="urn:activemq"
|
||||
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>
|
||||
<shared-store>
|
||||
<slave>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
<xa>true</xa>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
<xa>true</xa>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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
|
||||
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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
<xa>true</xa>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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
|
||||
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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
<xa>true</xa>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
||||
|
|
|
@ -286,7 +286,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
|
||||
<jmx-domain>org.apache.activemq.backup1</jmx-domain>
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
...
|
||||
<large-messages-directory>/data/large-messages</large-messages-directory>
|
||||
...
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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>/somewhere/paging-directory</paging-directory>
|
||||
...</programlisting>
|
||||
|
|
|
@ -151,7 +151,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 ">
|
||||
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 ">
|
||||
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
||||
|
@ -151,7 +151,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 ">
|
||||
|
||||
<connection-factory name="ConnectionFactory" signature="queue">
|
||||
<xa>true</xa>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
<para>这个参数的名字是<literal>large-messages-directory</literal>:</para>
|
||||
<programlisting><configuration xmlns="urn:activemq"
|
||||
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">
|
||||
|
||||
...
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
可以定义全局的分页转发参数。</para>
|
||||
<programlisting><configuration xmlns="urn:activemq"
|
||||
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">
|
||||
|
||||
...
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 ">
|
||||
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 ">
|
||||
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
||||
|
@ -129,7 +129,7 @@
|
|||
<programlisting>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 ">
|
||||
|
||||
<connection-factory name="ConnectionFactory" signature="queue">
|
||||
<xa>true</xa>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -1,5 +1,5 @@
|
|||
<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-->
|
||||
<defaultuser name="guest" password="guest">
|
||||
<role name="guest"/>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration xmlns="urn:activemq"
|
||||
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 -->
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory" signature="queue">
|
||||
<connectors>
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<configuration xmlns="urn:activemq"
|
||||
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-->
|
||||
<connection-factory name="ConnectionFactory">
|
||||
<connectors>
|
|
@ -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
Loading…
Reference in New Issue