Salome HOME
f22989570795a1ab9fa999f0703e0815fc5d25b7
[modules/yacs.git] / src / yacsloader / samples / bschema.xml
1 <!--
2   Copyright (C) 2006-2008  CEA/DEN, EDF R&D
3
4   This library is free software; you can redistribute it and/or
5   modify it under the terms of the GNU Lesser General Public
6   License as published by the Free Software Foundation; either
7   version 2.1 of the License.
8
9   This library is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with this library; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17
18   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 -->
21 <proc>
22
23     <!-- types -->
24     <!-- inline -->
25     <!-- service -->
26     <service name="node1" >
27         <ref>corbaname:rir:#test.my_context/Echo.Object</ref>
28         <method>echoDouble</method>
29         <inport name="p1" type="double"/>
30         <outport name="p1" type="double"/>
31     </service>
32
33     <service name="node2" >
34         <node>node1</node>
35         <method>echoString</method>
36         <inport name="p1" type="string"/>
37         <outport name="p1" type="string"/>
38     </service>
39
40     <!--control -->
41     <control> <fromnode>node1</fromnode> <tonode>node2</tonode> </control>
42
43     <!--parameters -->
44     <parameter>
45         <tonode>node1</tonode> <toport>p1</toport>
46         <value><double>23.</double></value>
47     </parameter>
48     <parameter>
49         <tonode>node2</tonode> <toport>p1</toport>
50         <value><string>coucou</string></value>
51     </parameter>
52
53 </proc>