blob: e502aac8bec0bce158d9536ac389e5ff62c84682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?xml version="1.0" encoding="UTF-8"?>
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0"
xmlns:dbsdo="http://tuscany.apache.org/xmlns/sca/databinding/sdo/1.0"
xmlns:e="http://hessian"
targetNamespace="http://FirstHessianSCA"
name="FirstHessianSCA">
<component name="SecondHessianComponent">
<implementation.java
class="org.zhulei.test.hessian.second.SecondImpl" />
<reference name="first">
<interface.java
interface="org.zhulei.test.hessian.first.IFirst" />
<e:binding.hessian
uri="http://localhost:8085/hessian1" />
</reference>
</component>
<service name="Hessian"
promote="SecondHessianComponent">
<interface.java
interface="org.zhulei.test.hessian.second.ISecond" />
<e:binding.hessian uri="/hessian2" />
</service>
</composite>
|