Merging rename all config files #15
This commit is contained in:
commit
b5d695f030
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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 -->
|
|
@ -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>
|
|
@ -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"/>
|
|
@ -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;
|
||||||
|
|
|
@ -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"};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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"};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"};
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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" +
|
||||||
|
|
|
@ -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" +
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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 -->
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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-->
|
||||||
|
|
|
@ -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-->
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"/>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"/>
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"/>
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"/>
|
||||||
|
|
|
@ -286,7 +286,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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">
|
||||||
|
|
||||||
<jmx-domain>org.apache.activemq.backup1</jmx-domain>
|
<jmx-domain>org.apache.activemq.backup1</jmx-domain>
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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">
|
||||||
...
|
...
|
||||||
<large-messages-directory>/data/large-messages</large-messages-directory>
|
<large-messages-directory>/data/large-messages</large-messages-directory>
|
||||||
...
|
...
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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>/somewhere/paging-directory</paging-directory>
|
<paging-directory>/somewhere/paging-directory</paging-directory>
|
||||||
...</programlisting>
|
...</programlisting>
|
||||||
|
|
|
@ -151,7 +151,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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 ../schemas/hornetq-users.xsd ">
|
xsi:schemaLocation="urn:hornetq ../schemas/activemq-users.xsd ">
|
||||||
|
|
||||||
<defaultuser name="guest" password="guest">
|
<defaultuser name="guest" password="guest">
|
||||||
<role name="guest"/>
|
<role name="guest"/>
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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>
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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 ../schemas/hornetq-jms.xsd ">
|
xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd ">
|
||||||
|
|
||||||
<connection-factory name="ConnectionFactory">
|
<connection-factory name="ConnectionFactory">
|
||||||
<connectors>
|
<connectors>
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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 ../schemas/hornetq-jms.xsd ">
|
xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd ">
|
||||||
|
|
||||||
<connection-factory name="ConnectionFactory" signature="queue">
|
<connection-factory name="ConnectionFactory" signature="queue">
|
||||||
<xa>true</xa>
|
<xa>true</xa>
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<para>这个参数的名字是<literal>large-messages-directory</literal>:</para>
|
<para>这个参数的名字是<literal>large-messages-directory</literal>:</para>
|
||||||
<programlisting><configuration xmlns="urn:activemq"
|
<programlisting><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">
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
可以定义全局的分页转发参数。</para>
|
可以定义全局的分页转发参数。</para>
|
||||||
<programlisting><configuration xmlns="urn:activemq"
|
<programlisting><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">
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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 ../schemas/hornetq-users.xsd ">
|
xsi:schemaLocation="urn:hornetq ../schemas/activemq-users.xsd ">
|
||||||
|
|
||||||
<defaultuser name="guest" password="guest">
|
<defaultuser name="guest" password="guest">
|
||||||
<role name="guest"/>
|
<role name="guest"/>
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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 ../schemas/hornetq-jms.xsd ">
|
xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd ">
|
||||||
|
|
||||||
<connection-factory name="ConnectionFactory">
|
<connection-factory name="ConnectionFactory">
|
||||||
<connectors>
|
<connectors>
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<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 ../schemas/hornetq-jms.xsd ">
|
xsi:schemaLocation="urn:hornetq ../schemas/activemq-jms.xsd ">
|
||||||
|
|
||||||
<connection-factory name="ConnectionFactory" signature="queue">
|
<connection-factory name="ConnectionFactory" signature="queue">
|
||||||
<xa>true</xa>
|
<xa>true</xa>
|
||||||
|
|
|
@ -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">
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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>
|
|
@ -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>
|
|
@ -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"/>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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"/>
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
|
@ -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"/>
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
|
@ -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"/>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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"?>
|
<?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 -->
|
||||||
|
|
|
@ -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>
|
|
@ -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"
|
<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>
|
||||||
|
|
|
@ -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>
|
|
@ -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"
|
<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>
|
||||||
|
|
|
@ -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>
|
|
@ -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"
|
<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>
|
||||||
|
|
|
@ -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>
|
|
@ -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"
|
<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>
|
||||||
|
|
|
@ -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>
|
|
@ -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"
|
<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>
|
||||||
|
|
|
@ -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>
|
|
@ -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