Begining of TAO

类别:编程语言 点击:0 评论:0 推荐:

将编译好的TAO组织成如下的目录:

·    bin — holds all the executables files for this distribution

·    docs — holds all the documentation that comes with the distribution.

·    examples — holds the example code.

·    idl — holds all the idl files that make up the distribution.

·    include — holds all the include files for client/server development.

·    lib — holds all the libraries for TAO

·    src — holds a gzipped file with the entire source code for ACE and TAO.

 

配置TAO:

设置如下环境变量:

ACE_ROOT set this variable to point to the TAO distribution's installation directory

TAO_ROOT — Set this variable to point to the TAO distribution's installation directory

TAO_IDL — Set this variable to point to the executable of the IDL Compiler,

PATH — Append the TAO distribution's bin directory to your PATH environment variable

 

TAO_IDL:

Tao_idl.exe simple.idl

后生成:

• client stubs - *C.i, *C.h, and *C.cpp

• server skeletons - *S.i, *S.h, and *S.cpp

• server skeleton templates - *S_T.i, *S_T.h, and *S_T.cpp

共计9个文件,其中生成*.i and *S_T.* 主要是为了提高代码运行效率

 

下面的问题就是如何编写CLIENT /SERVER SERVANT CLASS的问题了,如果能有一个自动代码生成工具就好了,下面开始研究一下它的可能性,计划用TCL或PERL来试试看。

 

本文地址:http://com.8s8s.com/it/it23830.htm