]
Rob Stryker commented on JBIDE-21049:
-------------------------------------
Add "wildfly-messaging-activemq-deployment_1_0.xsd" to xml
catalog
------------------------------------------------------------------
Key: JBIDE-21049
URL:
https://issues.jboss.org/browse/JBIDE-21049
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: server
Affects Versions: 4.3.0.Final
Reporter: Wolfgang Knauf
Assignee: Rob Stryker
Priority: Minor
WildFly 10 introduced a new schema
"wildfly-messaging-activemq-deployment_1_0.xsd" for configuration of e.g. an
ActiveMQ queue as part of a deployable archive, e.g. an EAR file (a file with the
extension "...-jms.xml").
This schema file is missing in the XSD catalog.
Here is a sample xml instance:
{code:xml}
<?xml version="1.0" encoding="UTF-8"?>
<messaging-deployment
xmlns="urn:jboss:messaging-activemq-deployment:1.0">
<server>
<jms-destinations>
<jms-queue name="MessageBeanQueue">
<entry name="jms/queue/MessageBeanQueue"/>
</jms-queue>
</jms-destinations>
</server>
</messaging-deployment>
{code}