JMS binding schema contains a required headers element under OperationProperties
--------------------------------------------------------------------------------
Key: TUSCANY-3011
URL: https://issues.apache.org/jira/browse/TUSCANY-3011
Project: Tuscany
Issue Type: Bug
Components: Java SCA JMS Binding Extension
Reporter: Kaushik Mukherjee
Headers element should be be required.
<complexType name="OperationProperties">
<sequence>
<element name="property" type="sca:BindingProperty"
minOccurs="0" maxOccurs="unbounded"/>
<element name="headers" type="sca:Headers"/>
</sequence>
<attribute name="name" type="string" use="required"/>
<attribute name="nativeOperation" type="string"/>
</complexType>
should be changed to :
<complexType name="OperationProperties">
<sequence>
<element name="property" type="sca:BindingProperty"
minOccurs="0" maxOccurs="unbounded"/>
<element name="headers" type="sca:Headers"
minOccurs="0"/>
</sequence>
<attribute name="name" type="string" use="required"/>
<attribute name="nativeOperation" type="string"/>
</complexType>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.