diff options
Diffstat (limited to 'TAO/tests/GIOP_Fragments/Java_Big_Request/Test.idl')
-rw-r--r-- | TAO/tests/GIOP_Fragments/Java_Big_Request/Test.idl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/GIOP_Fragments/Java_Big_Request/Test.idl b/TAO/tests/GIOP_Fragments/Java_Big_Request/Test.idl new file mode 100644 index 00000000000..902aed29cf4 --- /dev/null +++ b/TAO/tests/GIOP_Fragments/Java_Big_Request/Test.idl @@ -0,0 +1,21 @@ +// +// $Id$ +// + +module Test +{ + typedef sequence<octet> 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 (); + }; +}; |