summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/jms/src/main/resources/simple
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-03-26 13:23:57 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-03-26 13:23:57 +0000
commitaef1e52d6377f18516371655c32125c68bac0cce (patch)
tree598aeb93747d119998df3f87b22eacb0125efaa3 /branches/sca-java-1.x/itest/jms/src/main/resources/simple
parentde53364092d375a98144b29e85e09abc8842268e (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/itest/jms/src/main/resources/simple')
-rw-r--r--branches/sca-java-1.x/itest/jms/src/main/resources/simple/client.composite3
-rw-r--r--branches/sca-java-1.x/itest/jms/src/main/resources/simple/service.composite3
2 files changed, 4 insertions, 2 deletions
diff --git a/branches/sca-java-1.x/itest/jms/src/main/resources/simple/client.composite b/branches/sca-java-1.x/itest/jms/src/main/resources/simple/client.composite
index 3e16e794cb..6454370419 100644
--- a/branches/sca-java-1.x/itest/jms/src/main/resources/simple/client.composite
+++ b/branches/sca-java-1.x/itest/jms/src/main/resources/simple/client.composite
@@ -28,7 +28,8 @@
<reference name="serviceA" promote="HelloWorldClient/serviceA">
<interface.java interface="org.apache.tuscany.sca.binding.jms.HelloWorldService" />
<binding.jms>
- <destination name="DestQueueA"/>
+ <destination name="DestQueueA">
+ </destination>
<response>
<destination name="RespQueueA"/>
</response>
diff --git a/branches/sca-java-1.x/itest/jms/src/main/resources/simple/service.composite b/branches/sca-java-1.x/itest/jms/src/main/resources/simple/service.composite
index 2ab92923f6..4dfdb5f27d 100644
--- a/branches/sca-java-1.x/itest/jms/src/main/resources/simple/service.composite
+++ b/branches/sca-java-1.x/itest/jms/src/main/resources/simple/service.composite
@@ -24,7 +24,8 @@
<implementation.java class="org.apache.tuscany.sca.binding.jms.HelloWorldServiceImpl"/>
<service name="HelloWorldService">
<binding.jms>
- <destination name="DestQueueA" create="always"/>
+ <destination name="DestQueueA" create="always">
+ </destination>
<response>
<destination name="RespQueueA" create="always"/>
</response>