3.8 Developing an ATMI Application Using the Command Line Instead of the Visual C++.Net IDE GUI
If you must develop an Oracle Tuxedo ATMI application using the command line instead of the Microsoft Visual C++ IDE GUI, use the buildserver(1)
and buildclient(1)
commands. To do this, specify the compiler and link options necessary to build an Oracle Tuxedo ATMI application. For information about using these tools, see the following documents:
- Oracle Tuxedo Command Reference
- Tutorials for Developing Oracle Tuxedo ATMI Applications
- One of the following language-specific guides:
- Programming an Oracle Tuxedo ATMI Application Using C
- Programming an Oracle Tuxedo ATMI Application Using COBOL
To build a debug version of your ATMI application using buildserver
or
buildclient
, you must compile all source files with the
/Zi
and /Od
options. The /Zi
option
enables debugging; the /Od
option disables optimization. In addition, you may
need to define the _DEBUG
preprocessor directive. To complete the process,
indicate the link option as follows:
-l"/link/debug:full /debugtype:both"
See Also:
Section 1 - Commands