diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-24 12:01:49 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-24 12:01:49 +0000 |
commit | c572d6c4d9c68e64291c2d8527b19c3a18bd85fa (patch) | |
tree | 952e44331380bcdbdf99fb02660ebc2531f04b1b /branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault | |
parent | fea84bc2dd440ae3c7d36990ad24455166455415 (diff) |
TUSCANY-2930 extend default format test for the chase where default is specified on reference but not on the service
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@768265 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault')
-rw-r--r-- | branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault/helloworld.composite | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault/helloworld.composite b/branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault/helloworld.composite index 2c0fd1b27a..2c54bf8bc5 100644 --- a/branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault/helloworld.composite +++ b/branches/sca-java-1.x/itest/jms-format/src/main/resources/jmsdefault/helloworld.composite @@ -39,9 +39,15 @@ <reference name="helloWorldService3" > <binding.jms> <destination name="HelloWorldService3"/> + <tuscany:wireFormat.jmsdefault/> + </binding.jms> + </reference> + <reference name="helloWorldService4" > + <binding.jms> + <destination name="HelloWorldService4"/> <tuscany:wireFormat.jmsdefault sendFormat="text"/> </binding.jms> - </reference> + </reference> </component> <component name="HelloWorldServiceComponent1"> @@ -59,7 +65,6 @@ <interface.java interface="org.apache.tuscany.sca.binding.jms.format.jmsdefault.helloworld.HelloWorldService" /> <binding.jms> <destination name="HelloWorldService2"/> - <tuscany:wireFormat.jmsdefault/> </binding.jms> </service> </component> @@ -70,9 +75,20 @@ <!--interface.wsdl interface="http://helloworld/textxml#wsdl.interface(HelloWorld)" /--> <binding.jms> <destination name="HelloWorldService3"/> - <tuscany:wireFormat.jmsdefault sendFormat="text"/> + <tuscany:wireFormat.jmsdefault /> </binding.jms> </service> </component> + <component name="HelloWorldServiceComponent4"> + <implementation.java class="org.apache.tuscany.sca.binding.jms.format.jmsdefault.helloworld.HelloWorldServiceImpl" /> + <service name="HelloWorldService"> + <!--interface.wsdl interface="http://helloworld/textxml#wsdl.interface(HelloWorld)" /--> + <binding.jms> + <destination name="HelloWorldService4"/> + <tuscany:wireFormat.jmsdefault /> + </binding.jms> + </service> + </component> + </composite>
\ No newline at end of file |