summaryrefslogtreecommitdiff
path: root/modules/CIAO/examples/Display/descriptors/run_NodeDaemons.pl
blob: e07c2aedd67a45f02b5deabf67acaf3a182c54a0 (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
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
    & eval 'exec perl -S $0 $argv:q'
    if 0;

# $Id$
# -*- perl -*-

use lib "$ENV{ACE_ROOT}/bin";
use PerlACE::TestTarget;

$tg = PerlACE::TestTarget::create_target (1) || die "Create target for ns failed\n";

$iorbase1 = "NodeApp1.ior";
$iorfile1 = $tg->LocalFile ($iorbase1);
$iorbase2 = "NodeApp2.ior";
$iorfile2 = $tg->LocalFile ($iorbase2);

$iorfile1 = $tg->DeleteFile ($iorbase1);
$iorfile2 = $tg->DeleteFile ($iorbase2);

$CIAO_ROOT=$ENV{'CIAO_ROOT'};

$SV1 = $tg->CreateProcess ("$DANCE_ROOT/bin/dance_node_manager",
                             "-ORBEndpoint iiop://localhost:10001 -s $CIAO_ROOT/DAnCE/NodeApplication/NodeApplication");

$SV2 = $tg->CreateProcess ("$DANCE_ROOT/bin/dance_node_manager",
                             "-ORBEndpoint iiop://localhost:20001 -s $CIAO_ROOT/DAnCE/NodeApplication/NodeApplication");

$SV1->Spawn ();
$SV2->Spawn ();

sleep (99999999999);