summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/binding-sca-runtime-rmi/src/test/resources/asynchService/HelloWorld.composite
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-11-01 22:50:25 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-11-01 22:50:25 +0000
commit9ea808f62ef15eba6b1501c9400ab23f7d2154e7 (patch)
treeb63632a3446b7abb34c1a2b955f194fb242300a0 /java/sca/modules/binding-sca-runtime-rmi/src/test/resources/asynchService/HelloWorld.composite
parentce1e7b164a361313c301f63643d6b75ac703fa96 (diff)
Add an RMI version of the SCA Binding. (As its much easier to use as the dependencies are in Java instead of the massive dependency tree of the Axis2 based SCA binding
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@831773 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/modules/binding-sca-runtime-rmi/src/test/resources/asynchService/HelloWorld.composite38
1 files changed, 38 insertions, 0 deletions
diff --git a/java/sca/modules/binding-sca-runtime-rmi/src/test/resources/asynchService/HelloWorld.composite b/java/sca/modules/binding-sca-runtime-rmi/src/test/resources/asynchService/HelloWorld.composite
new file mode 100644
index 0000000000..4e3e0c269b
--- /dev/null
+++ b/java/sca/modules/binding-sca-runtime-rmi/src/test/resources/asynchService/HelloWorld.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/200903"
+ targetNamespace="http://sample"
+ xmlns:sample="http://sample"
+ name="HelloWorld">
+
+
+ <!-- callback remote wire -->
+ <component name="BHelloWorldServiceCallbackRemote">
+ <implementation.java class="org.apache.tuscany.sca.binding.sca.rmi.helloworld.impl.HelloWorldServiceCallbackOnewayRemoteImpl" />
+ <service name="HelloWorldServiceCallbackOnewayRemote">
+ <binding.sca uri="http://localhost:8085/BHelloWorldServiceCallbackRemote"/>
+ <callback>
+ <binding.sca/>
+ </callback>
+ </service>
+ </component>
+
+
+</composite>