diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-16 16:51:51 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-16 16:51:51 +0000 |
commit | e86867392665ea27caadf5408f797a95ae046c96 (patch) | |
tree | 71d3101babe225b875d53552b5347873ea327d37 /java/sca/modules/binding-sca-axis2-runtime/src/test/resources/asynchService/HelloWorld.composite | |
parent | 3b703d40d4bd3387b8c751fab8065350703e8620 (diff) |
TUSCANY-3092 pull in binding-sca-axis2 from 1.x. Not in build and only two of the unit tests are working at the moment.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@785290 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/binding-sca-axis2-runtime/src/test/resources/asynchService/HelloWorld.composite')
-rw-r--r-- | java/sca/modules/binding-sca-axis2-runtime/src/test/resources/asynchService/HelloWorld.composite | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/java/sca/modules/binding-sca-axis2-runtime/src/test/resources/asynchService/HelloWorld.composite b/java/sca/modules/binding-sca-axis2-runtime/src/test/resources/asynchService/HelloWorld.composite new file mode 100644 index 0000000000..3d7c5f5832 --- /dev/null +++ b/java/sca/modules/binding-sca-axis2-runtime/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://www.osoa.org/xmlns/sca/1.0" + targetNamespace="http://sample" + xmlns:sample="http://sample" + name="HelloWorld"> + + + <!-- callback remote wire --> + <component name="BHelloWorldServiceCallbackRemote"> + <implementation.java class="org.apache.tuscany.sca.binding.sca.axis2.helloworld.impl.HelloWorldServiceCallbackOnewayRemoteImpl" /> + <service name="HelloWorldServiceCallbackOnewayRemote"> + <binding.sca uri="http://localhost:8085/BHelloWorldServiceCallbackRemote"/> + <callback> + <binding.sca uri="http://localhost:8084/AHelloWorldClientCallbackRemote"/> + </callback> + </service> + </component> + + +</composite> |