module Test { typedef sequence Payload; interface Payload_Receiver { exception Invalid_Payload { }; /// Send the data using a twoway operation void more_data (in Payload the_payload) raises (Invalid_Payload); /// Shudown the remote ORB oneway void shutdown (); }; };