浏览 2158 次
锁定老帖子 主题:ACE读取配置文件代码
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-03-16
最后修改:2009-03-16
{ char configfileName[100] = "MessageProxy.conf"; ACE_Configuration_Heap config; ACE_Configuration_Section_Key status_section; if (config.open() == -1) return false; ACE_Registry_ImpExp config_importer(config); if (config_importer.import_config (configfileName) == -1) { ACE_ERROR((LM_ERROR,"'config_importer.import_config' error \n")); return false; } if (config.open_section(config.root_section(),ACE_TEXT("CONNECTION"),0,status_section) == -1) { ACE_ERROR((LM_ERROR,"'config.open_section' error\n")); return false; } if (config.get_string_value(status_section,ACE_TEXT("RomoteIP"),Rao_Msg_Queue::IfConfig.RemoteName) == -1) { ACE_ERROR((LM_ERROR,"'RomoteIP = ' does not exists\n")); return false; } if (config.get_integer_value(status_section,ACE_TEXT("RemotePort"),Rao_Msg_Queue::IfConfig.ConnPort) == -1) { ACE_ERROR((LM_ERROR,"'RemotePort = ' does not exists\n")); return false; } return true; } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |