?? interoptest.idl
字號:
#ifndef _InterOpTest_IDL_#define _InterOpTest_IDL_#pragma prefix "adiron.com"module InterOpTest { /** * This interface cotains the operation "say_hello", * which will return you a string representation of * its client's SecurityLevel3::Principal. */ interface Peter { string say_hello( in string msg ); }; /** * The object behind this interface has two operations * that test the CSIv2 invocation on your Maurice object. */ interface Johnson : Peter { /** * This operation will execute "say_hello" on the * given Peter object, using the credentials * of the server. */ string say_hello_from_you( in Peter pete, in long times ); /** * This operation will execute "say_hello" on the * given Peter object, but it will do it with * CSIv2 Credentials that quotes the client. */ string say_hello_from_me( in Peter pete, in long times ); /** * This operation will execute "say_hello" on the * given Peter object, but it will do it with * CSIv2 Credentials that test your GSSUP mechanism. */ string say_hello_from_user_password( in Peter pete, in string targetname, in string username, in string password, in long times ); };};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -