<b>BCB中Corba Name Service利用办法</b>[VC/C++编程]
本文“<b>BCB中Corba Name Service利用办法</b>[VC/C++编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
由于在尝试用BCB 4拜候NameService时,碰到了一些奇奇特怪的问题,而Visibroker所带的例子却可以用bcc32正常编译运行,俺决意重新做一个程序看看问题出在那边.折腾了一夜,结论是做服务器还是不用Corba Server wizard好.(我还是不懂得为什么?)
1、File| New, Multitier,Corba IDL File:
interface Order{
string Name();
};
存为order.idl
2、File|New, Consol Wizard,生成一个无vcl支持的consol利用.
3、Project|Add to project,选上刚写的order.idl,Project | Compile之.
4、File|New, Miltitier, Corba Object Implementation,IDL选刚写的order.idl,Interface选Order,为简明起见,别的的名字就不改了.肯定,自动生成OrderServer.cpp.
5、在OrderServer.cpp中找到char* OrderImpl::Name(),在其函数体中写:
return "Hi, I am Test CorbaServer";
6、File | Save All,Unit1.cpp存为tcnServer.cpp,Project存为tcnServer.bpr.然后Make之.一个简单的Corba Server就做好了.
7、测试运行一下,然后在MS-Dos方法下运行osfind.exe(应当在path里,不然到$(VBroker)\bin里找),这时会显示一系列的corba信息:
C:\>osfind
osfind: Found one agent at port 14000
HOST: YANGWU
osfind: Found 1 OADs in your domain
HOST: YANGWU
osfind: Following are the list of Implementations registered with OADs.
HOST: YANGWU
REPOSITORY ID: IDL:CorbaTester/DBServer2Factory:1.0
OBJECT NAME: DBServer2
osfind: Following are the list of Implementations started manually.
HOST: YANGWU
REPOSITORY ID: IDL:Order:1.0
OBJECT NAME: OrderObject
REPOSITORY ID: IDL:visigenic.com/Activation/OAD:1.0
OBJECT NAME: 61.132.58.166
以上是“<b>BCB中Corba Name Service利用办法</b>[VC/C++编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |