Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / Security / MT_IIOP_SSL / test.idl
blobb953ff22e91a49817c5b79b7e67bcf957655ee5d
2 interface Simple_Server
4 exception WrongProtocolType {};
6 /// A ping call to set up connections
7 void ping ();
9 /** Validate the connection to see whether we have used the right
10 * protocol type. A succesful validation would return nothing and
11 * an unsuccessful validation would return an exception.
13 void validate_protocol ()
14 raises (WrongProtocolType);
16 /// A simple call
17 long test_method (in long x);
19 oneway void shutdown ();