2 /// Put the interfaces in a module, to avoid global namespace pollution
5 /// A sequence of octets for sending large messages.
6 typedef sequence
<octet
> Octets
;
8 /// A very simple interface
11 /// A method to test out a small request
12 oneway
void send_forty_two
(in long forty_two
);
14 /// A method to test bigger requests
15 oneway
void send_large_octet_array
(in Octets payload
);
17 /// A method to shutdown the ORB
19 * This method is used to simplify the test shutdown process
21 oneway
void shutdown
();