summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/jms-noreplyto/src/main/resources/service.composite
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-01-30 15:24:05 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-01-30 15:24:05 +0000
commit3aba227b7df7d0a8b30e28ce6e934ca15944129c (patch)
treeb894466ad45ccc84dd20eb9a0622317eba8095b8 /branches/sca-java-1.x/itest/jms-noreplyto/src/main/resources/service.composite
parentcc79a0f4730051baab7fe19efd8d608368e97a16 (diff)
TUSCANY-2798: Add an itest for a service sending the response to the response destination defined on the jms binding element if the request message doesn't have a replyTo set
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@739304 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/itest/jms-noreplyto/src/main/resources/service.composite37
1 files changed, 37 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/itest/jms-noreplyto/src/main/resources/service.composite b/branches/sca-java-1.x/itest/jms-noreplyto/src/main/resources/service.composite
new file mode 100644
index 0000000000..f6cc48fa0f
--- /dev/null
+++ b/branches/sca-java-1.x/itest/jms-noreplyto/src/main/resources/service.composite
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ -->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
+ name="SimpleServiceComposite">
+
+ <component name="HelloWorldService">
+ <implementation.java class="org.apache.tuscany.sca.binding.jms.HelloWorldServiceImpl"/>
+ <service name="HelloWorldService">
+ <binding.jms>
+ <destination name="RequestQueue"/>
+ <response>
+ <destination name="ResponseQueue"/>
+ </response>
+ <tuscany:wireFormat.jmsObject/>
+ </binding.jms>
+ </service>
+ </component>
+
+</composite>