Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / DSI_Gateway / test.idl
blob6d2ce5475a7f7065ca18ca1e1d1eac61d7cb31f9
2 typedef sequence<long> DSI_LongSeq;
4 struct Structure
6 short i;
7 DSI_LongSeq seq;
8 };
10 exception test_exception
12 short error_code;
13 string error_message;
14 string status_message;
17 interface Simple_Server
19 attribute long test_val;
21 long test_method (in long x,
22 in Structure the_in_structure,
23 out Structure the_out_structure,
24 inout string name);
26 void raise_user_exception () raises (test_exception);
28 void raise_system_exception ();
30 oneway void shutdown ();