blob: 20d41932272e30c193009c29922a012315f90601 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
xmlns:wsdli="http://www.w3.org/2006/01/wsdl-instance"
name="autohelloworldws">
<component name="HelloWorldClientComponent">
<implementation.java class="helloworld.HelloWorldClientImpl"/>
<reference name="helloWorldService">
<binding.ws uri="http://localhost:8085/HelloWorldServiceComponent"/>
<callback>
<binding.ws uri="http://localhost:8085/HelloWorldClientComponent/helloWorldService"/>
</callback>
</reference>
</component>
<component name="HelloWorldServiceComponent">
<implementation.java class="helloworld.HelloWorldServiceImpl"/>
<service name="HelloWorldService">
<interface.java interface="helloworld.HelloWorldService" callbackInterface="helloworld.HelloWorldCallback"/>
<binding.ws uri="http://localhost:8085/HelloWorldServiceComponent"/>
<callback>
<binding.ws uri="http://localhost:8085/HelloWorldClientComponent/helloWorldService"/>
</callback>
</service>
</component>
</composite>
|