blob: 061db64d81c1c77bb9f321c1cb58ae9c0caba175 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?xml version="1.0"?> <!-- -*- SGML -*- -->
<!-- If this file is moved to a different directory, make sure to change the
path to the DTD below. Otherwise the examples won't work. -->
<!DOCTYPE componentassembly SYSTEM "http://www.dre.vanderbilt.edu/CIAO/DTD/componentassembly.dtd">
<componentassembly id="Single-process Basic assembly">
<componentfiles>
<componentfile id="com-RoundTripClient">
<fileinarchive name="RoundTripClient.csd"/>
</componentfile>
</componentfiles>
<partitioning>
<homeplacement id="a_RoundTripClientHome">
<componentfileref idref="com-RoundTripClient"/>
<componentinstantiation id="a_RoundTripClient">
<registercomponent>
<!-- writeiortofile is a non-standard CIAO extension. -->
<writeiortofile name="test.ior"/>
</registercomponent>
</componentinstantiation>
</homeplacement>
</partitioning>
<connections>
<connectinterface>
<usesport>
<usesidentifier>latency</usesidentifier>
<componentinstantiationref idref="a_RoundTripClient"/>
</usesport>
<existinginterface>
<findby>
<!-- One needs to add the correct IOR of the server here -->
<stringifiedobjectref></stringifiedobjectref>
</findby>
</existinginterface>
</connectinterface>
</connections>
</componentassembly>
|