[hornetq-commits] JBoss hornetq SVN: r8995 - trunk/src/config/common/schema.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Mar 29 05:57:27 EDT 2010


Author: jmesnil
Date: 2010-03-29 05:57:27 -0400 (Mon, 29 Mar 2010)
New Revision: 8995

Modified:
   trunk/src/config/common/schema/hornetq-jms.xsd
Log:
https://jira.jboss.org/jira/browse/HORNETQ-292: '/' character not supported in queue names

* changed queueType and topicType attribute 'name' to xsd:string instead of xsd:ID 

Modified: trunk/src/config/common/schema/hornetq-jms.xsd
===================================================================
--- trunk/src/config/common/schema/hornetq-jms.xsd	2010-03-29 09:35:53 UTC (rev 8994)
+++ trunk/src/config/common/schema/hornetq-jms.xsd	2010-03-29 09:57:27 UTC (rev 8995)
@@ -162,13 +162,13 @@
             </xsd:element>
             <xsd:element name="durable" type="xsd:boolean" maxOccurs="1" minOccurs="0"></xsd:element>
     	</xsd:sequence>
-    	<xsd:attribute name="name" type="xsd:ID" use="required"></xsd:attribute>
+    	<xsd:attribute name="name" type="xsd:string" use="required"></xsd:attribute>
     </xsd:complexType>
 
     <xsd:complexType name="topicType">
     	<xsd:sequence>
     		<xsd:element name="entry" type="entryType" maxOccurs="unbounded" minOccurs="1"></xsd:element>
     	</xsd:sequence>
-    	<xsd:attribute name="name" type="xsd:ID" use="required"></xsd:attribute>
+    	<xsd:attribute name="name" type="xsd:string" use="required"></xsd:attribute>
     </xsd:complexType>
 </xsd:schema>



More information about the hornetq-commits mailing list