renamed schemas

This commit is contained in:
Andy Taylor 2015-04-29 10:49:43 +01:00
parent ac5bb8fd6c
commit 24a4c63458
191 changed files with 188 additions and 188 deletions

View File

@ -20,7 +20,7 @@ under the License.
<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:activemq /schema/activemq-configuration.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<queue name="DLQ"/> <queue name="DLQ"/>
<queue name="ExpiryQueue"/> <queue name="ExpiryQueue"/>

View File

@ -38,7 +38,7 @@ import java.util.Map;
public class FileJMSConfiguration extends JMSConfigurationImpl implements Deployable public class FileJMSConfiguration extends JMSConfigurationImpl implements Deployable
{ {
private static final String CONFIGURATION_SCHEMA_URL = "schema/activemq-jms.xsd"; private static final String CONFIGURATION_SCHEMA_URL = "schema/artemis-jms.xsd";
private static final String CONFIGURATION_SCHEMA_ROOT_ELEMENT = "jms"; private static final String CONFIGURATION_SCHEMA_ROOT_ELEMENT = "jms";

View File

@ -16,7 +16,7 @@
--> -->
<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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="exampleQueue"/> <queue name="exampleQueue"/>

View File

@ -34,7 +34,7 @@ public final class FileConfiguration extends ConfigurationImpl implements Deploy
{ {
private static final long serialVersionUID = -4766689627675039596L; private static final long serialVersionUID = -4766689627675039596L;
private static final String CONFIGURATION_SCHEMA_URL = "schema/activemq-configuration.xsd"; private static final String CONFIGURATION_SCHEMA_URL = "schema/artemis-configuration.xsd";
private static final String CONFIGURATION_SCHEMA_ROOT_ELEMENT = "core"; private static final String CONFIGURATION_SCHEMA_ROOT_ELEMENT = "core";

View File

@ -73,7 +73,7 @@ import org.w3c.dom.Node;
import org.w3c.dom.NodeList; import org.w3c.dom.NodeList;
/** /**
* Parses an XML document according to the {@literal activemq-configuration.xsd} schema. * Parses an XML document according to the {@literal artemis-configuration.xsd} schema.
*/ */
public final class FileConfigurationParser extends XMLConfigurationUtil public final class FileConfigurationParser extends XMLConfigurationUtil
{ {

View File

@ -64,7 +64,7 @@ public class WrongRoleFileConfigurationParserTest extends UnitTestCase
private static final String configuration = private static final String configuration =
"<configuration xmlns=\"urn:activemq\"\n" + "<configuration xmlns=\"urn:activemq\"\n" +
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" + "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" +
"xsi:schemaLocation=\"urn:activemq /schema/activemq-configuration.xsd\">\n" + "xsi:schemaLocation=\"urn:activemq /schema/artemis-configuration.xsd\">\n" +
"<name>ActiveMQ.main.config</name>" + "\n" + "<name>ActiveMQ.main.config</name>" + "\n" +
"<log-delegate-factory-class-name>org.apache.activemq.artemis.integration.logging.Log4jLogDelegateFactory</log-delegate-factory-class-name>" + "\n" + "<log-delegate-factory-class-name>org.apache.activemq.artemis.integration.logging.Log4jLogDelegateFactory</log-delegate-factory-class-name>" + "\n" +
"<bindings-directory>${jboss.server.data.dir}/activemq/bindings</bindings-directory>" + "\n" + "<bindings-directory>${jboss.server.data.dir}/activemq/bindings</bindings-directory>" + "\n" +

View File

@ -17,7 +17,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:activemq ../../src/schemas/activemq-server.xsd "> xsi:schemaLocation="urn:activemq ../../src/schemas/artemis-server.xsd ">
<!-- just use the defaults --> <!-- just use the defaults -->
<core xmlns="urn:activemq:core"/> <core xmlns="urn:activemq:core"/>
</configuration> </configuration>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<name>SomeNameForUseOnTheApplicationServer</name> <name>SomeNameForUseOnTheApplicationServer</name>
<resolve-protocols>false</resolve-protocols> <resolve-protocols>false</resolve-protocols>

View File

@ -17,7 +17,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:activemq ../../src/config/common/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../src/config/common/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<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>

View File

@ -17,7 +17,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:activemq ../../src/config/common/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../src/config/common/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<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>

View File

@ -17,7 +17,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:activemq ../../src/config/common/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../src/config/common/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<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>

View File

@ -17,7 +17,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:activemq ../../src/config/common/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../src/config/common/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<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>

View File

@ -17,7 +17,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:activemq ../../src/config/common/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../src/config/common/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<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>

View File

@ -17,7 +17,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:activemq ../../src/config/common/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../src/config/common/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<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>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<discovery-groups> <discovery-groups>
<discovery-group name="wahey"/> <discovery-group name="wahey"/>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>
<shared-store> <shared-store>

View File

@ -16,7 +16,7 @@
--> -->
<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:activemq /schema/activemq-configuration.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<discovery-groups> <discovery-groups>
<discovery-group name="wahey"/> <discovery-group name="wahey"/>

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>
<!--only one of the following--> <!--only one of the following-->

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>
<!--only one of the following--> <!--only one of the following-->

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy/> <ha-policy/>
</core> </core>

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"/> <core xmlns="urn:activemq:core"/>

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<discovery-groups> <discovery-groups>
<discovery-group name="wahey"/> <discovery-group name="wahey"/>

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>

View File

@ -17,7 +17,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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>
<shared-store> <shared-store>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<discovery-groups> <discovery-groups>
<discovery-group name="wahey"/> <discovery-group name="wahey"/>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>
<shared-store> <shared-store>

View File

@ -17,7 +17,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:activemq ../../../../activemq-server/src/main/resources/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../activemq-server/src/main/resources/schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<ha-policy> <ha-policy>
<shared-store> <shared-store>

View File

@ -32,7 +32,7 @@ large messages are stored.
<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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
... ...
<large-messages-directory>/data/large-messages</large-messages-directory> <large-messages-directory>/data/large-messages</large-messages-directory>
... ...

View File

@ -45,7 +45,7 @@ Global paging parameters are specified on the main configuration file
<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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
... ...
<paging-directory>/somewhere/paging-directory</paging-directory> <paging-directory>/somewhere/paging-directory</paging-directory>
... ...

View File

@ -12,7 +12,7 @@ Let's take this `activemq-jms.xml` file for instance:
<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:activemq /schema/activemq-jms.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-jms.xsd">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="exampleQueue"/> <queue name="exampleQueue"/>

View File

@ -20,7 +20,7 @@ under the License.
<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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<bindings-directory>target/server0/data/messaging/bindings</bindings-directory> <bindings-directory>target/server0/data/messaging/bindings</bindings-directory>

View File

@ -20,7 +20,7 @@ under the License.
<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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">
<bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory> <bindings-directory>${build.directory}/server0/data/messaging/bindings</bindings-directory>

View File

@ -20,7 +20,7 @@ under the License.
<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:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="exampleQueue"/> <queue name="exampleQueue"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
</jms> </jms>

View File

@ -21,7 +21,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="sausage-factory"/> <queue name="sausage-factory"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
</jms> </jms>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="exampleQueue"/> <queue name="exampleQueue"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="exampleQueue"/> <queue name="exampleQueue"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->
<queue name="exampleQueue"/> <queue name="exampleQueue"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
</jms> </jms>
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -17,7 +17,7 @@
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -17,7 +17,7 @@
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -17,7 +17,7 @@
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -17,7 +17,7 @@
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -17,7 +17,7 @@
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!-- Destinations used by the example --> <!-- Destinations used by the example -->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!-- Destinations used by the example --> <!-- Destinations used by the example -->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<core xmlns="urn:activemq:core"> <core xmlns="urn:activemq:core">

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<topic name="topic"/> <topic name="topic"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<queue name="target"/> <queue name="target"/>

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the topic used by the example--> <!--the topic used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq /schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

View File

@ -20,7 +20,7 @@ under the License.
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:activemq" xmlns="urn:activemq"
xsi:schemaLocation="urn:activemq ../../../../src/schema/activemq-server.xsd"> xsi:schemaLocation="urn:activemq ../../../../src/schema/artemis-server.xsd">
<jms xmlns="urn:activemq:jms"> <jms xmlns="urn:activemq:jms">
<!--the queue used by the example--> <!--the queue used by the example-->

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