You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "Kaushik Mukherjee (JIRA)" <de...@tuscany.apache.org> on 2009/05/07 22:08:45 UTC

[jira] Created: (TUSCANY-3011) JMS binding schema contains a required headers element under OperationProperties

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.


[jira] Assigned: (TUSCANY-3011) JMS binding schema contains a required headers element under OperationProperties

Posted by "Simon Laws (JIRA)" <de...@tuscany.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-3011?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Simon Laws reassigned TUSCANY-3011:
-----------------------------------

    Assignee: Simon Laws

> 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
>            Assignee: Simon Laws
>
> 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.


[jira] Resolved: (TUSCANY-3011) JMS binding schema contains a required headers element under OperationProperties

Posted by "Simon Laws (JIRA)" <de...@tuscany.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-3011?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Simon Laws resolved TUSCANY-3011.
---------------------------------

       Resolution: Fixed
    Fix Version/s: Java-SCA-Next

Committed at revision: 772958  


> 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
>            Assignee: Simon Laws
>             Fix For: Java-SCA-Next
>
>
> 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.