blob: ff064d0118cecb6b486dbe694eaf8fa6fdd5004d (
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
|
$Id$
CORBA Messaging
File: DevGuideExamples/Messaging/AMIcallback/README
This directory contains an example illustrating the Asynchronous
Method Invocation (AMI) feature of TAO. This feature permits
requests to be made that do not require a client to block while
waiting for a reply from a server.
This example is based on the Messenger example in GettingStarted
directory. A message is send by MessengerClient and displayed by
MessengerServer. The server responds to provide confirmation
that the message was received. The delay for this exchange of
messages is then displayed.
How to Run
----------
To start the server:
------------------
./MessengerServer
To start the client:
------------------
./MessengerClient
Exeuction via Perl Script
-------------------------
A Perl script has been created to automate the steps shown
above. This script can be run via the following command:
./run_test.pl
|