Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / ZIOP / Test.idl
blobb8f187431775e15ddd7f152b537e26535f3b0eaa
2 /// Put the interfaces in a module, to avoid global namespace pollution
3 module Test
5 /// for big files
6 typedef sequence<octet> Octet_Seq;
8 /// A very simple interface
9 interface Hello
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
21 /**
22 * This method is used to simplify the test shutdown process
24 oneway void shutdown ();