2 interface Simple_Server
4 exception WrongProtocolType
{};
6 /// A ping call to set up connections
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
);
17 long test_method
(in long x
);
19 oneway
void shutdown
();