diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-26 13:23:57 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-26 13:23:57 +0000 |
commit | aef1e52d6377f18516371655c32125c68bac0cce (patch) | |
tree | 598aeb93747d119998df3f87b22eacb0125efaa3 /branches/sca-java-1.x/modules/assembly-xsd | |
parent | de53364092d375a98144b29e85e09abc8842268e (diff) |
TUSCANY-2931 - allow separate request and response wire formats in binding.jms. The tuscany binding.jms XSD has been extended to allow a response wireFormat element to be specified. The knock on effect of all this is that the Operation interface has been changed to allow input and output wrapper info to be held separately. Also Interface has some new operations. There are changes across the code base to take account of this interface change.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@758625 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/modules/assembly-xsd')
-rw-r--r-- | branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd | 2 | ||||
-rw-r--r-- | branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd index b315ca0ad1..faaa7640ee 100644 --- a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd +++ b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd @@ -98,6 +98,8 @@ <element name="connectionFactory" type="sca:ConnectionFactory" minOccurs="0"/> <element name="activationSpec" type="sca:ActivationSpec" minOccurs="0"/> + <any namespace="##other" processContents="lax" + minOccurs="0" maxOccurs="unbounded"/> </sequence> </complexType> diff --git a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd index b998427ecb..7ecf58df30 100644 --- a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd +++ b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd @@ -24,7 +24,10 @@ elementFormDefault="qualified"> <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-binding-jms.xsd"/> - + + <complexType name="WireFormatJMSDefaultType"/> + <element name="wireFormat.jmsDefault" type="t:WireFormatJMSDefaultType"/> + <complexType name="WireFormatJMSTextXMLType"/> <element name="wireFormat.jmsTextXML" type="t:WireFormatJMSTextXMLType"/> |