2 #if
!defined
(_ECHO_IDL
)
8 // Defines an interface that encapsulates operations that return the
9 // mesg string to be displayed and shuts down the server.
11 typedef sequence
<Object> List
;
13 List echo_list
(in string message);
14 // This operation returns the message as a sequence of Objects and
15 // displays it on the screen as a string.
17 string echo_string
(in string message);
18 // This operation returns the message as a string and displays it on
21 oneway
void shutdown
();
22 // This operation will shutdown the server.
25 #endif
/* _ECHO_IDL */