summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-08-17 11:14:17 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-08-17 11:14:17 +0000
commit8bf69f3ae7d037e4691b33fee2a0c55538d59546 (patch)
tree2b929df958e178e27354dcae7f3d9f08213eaf9a /sca-java-2.x/trunk/testing/itest/async-services/src/main/resources
parent70b0286aea824a52bf789e715466bf8c3344aae1 (diff)
Extend the async simple test to use the JMS binding. This doesn't work, it seems the runtime isn't doing the databinding conversion so the service gets argument type mismatch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1158631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/testing/itest/async-services/src/main/resources')
-rw-r--r--sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jms.composite38
1 files changed, 38 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jms.composite b/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jms.composite
new file mode 100644
index 0000000000..2f0685a8d0
--- /dev/null
+++ b/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jms.composite
@@ -0,0 +1,38 @@
+<?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://docs.oasis-open.org/ns/opencsa/sca/200912"
+ targetNamespace="http://docs.oasis-open.org/ns/opencsa/scatests/200903"
+ name="Test1JmsComposite">
+
+ <component name="Client">
+ <implementation.java class="org.apache.tuscany.sca.itest.Service1ClientImpl"/>
+ <reference name="service1">
+ <binding.jms uri="jms:queue:Service1AsyncServer"/>
+ </reference>
+ </component>
+
+ <component name="AsyncServiceComponent">
+ <implementation.java class="org.apache.tuscany.sca.itest.Service1AsyncServerImpl2"/>
+ <service name="Service1AsyncServer">
+ <binding.jms />
+ </service>
+ </component>
+
+</composite> \ No newline at end of file