2 /// Put the interfaces in a module, to avoid global namespace pollution
6 typedef sequence
<octet
> Octet_Seq
;
8 /// A very simple interface
11 /// Return a simple string
12 string get_string
(in string mystring
);
14 /// Return binary info
15 Octet_Seq get_big_reply
(in unsigned long size
);
17 ///recieve a large number of bytes
18 void big_request
(in Octet_Seq octet_in
);
20 /// A method to shutdown the ORB
22 * This method is used to simplify the test shutdown process
24 oneway
void shutdown
();