module CallBack { interface IGreetings { string hello( in string strName); }; interface ISrvAdm { void regCallBack( in IGreetings oNameOfInterface); }; };