Table of Contents Previous Next PDF


Building and Running the CORBA Sample Applications

Building and Running the CORBA Sample Applications
The topic includes the following sections:
Notes:
Technical support for third party CORBA Java ORBs should be provided by their respective vendors. Oracle Tuxedo does not provide any technical support or documentation for third party CORBA Java ORBs.
Building and Running the Security Sample Application
The Security sample application demonstrates using password authentication. For instructions for building and running the Security sample application, see the Guide to the CORBA University Sample Applications.
Building and Running the Secure Simpapp Sample Application
The Secure Simpapp sample application demonstrates using the SSL protocol and certificate authentication to protect communications between client applications and the Oracle Tuxedo domain.
To build and run the Secure Simpapp sample application, complete the following steps:
1.
2.
3.
4.
Execute the runme command.
Before you can use the Secure Simpapp sample application, obtain a certificate and private key (IIOPListener.pem) for the IIOP Listener/Handler from the certificate authority in your enterprise and load the certificate in a Lightweight Directory Access Protocol (LDAP)-enabled directory service. The runme command prompts you for the pass phrase for the private key for the IIOP Listener/Handler.
Step 1: Copy the Files for the Secure Simpapp Sample Application into a Work Directory
You need to copy the files for the Secure Simpapp sample application into a work directory on your local machine.
The files for the Secure Simpapp sample application are located in the following directories:
Windows 2003
drive:\TUXdir\samples\corba\simpappSSL
UNIX
/usr/local/TUXdir/samples/corba/simpappSSL
You will use the files listed in Table 9‑1 to build and run the Secure Simpapp sample application.
 
The OMG IDL code that declares the Simple and SimpleFactory interfaces.
The C++ source code that overrides the default Server::initialize and Server::release methods.
The C++ source code that implements the Simple and SimpleFactory methods.
The makefile for the Secure Simpapp sample application on the UNIX operating system. This file is used to manually build the Secure Simpapp sample application. Refer to the Readme.html file for information about manually building the Secure Simpapp sample application. The UNIX make command needs to be in the path of your machine.
The makefile for the Secure Simpapp sample application on the Windows 2003 operating system. This makefile can be used directly by the Visual C++ nmake command. This file is used to manually build the Secure Simpapp sample application. Refer to the Readme.html file for information about manually building the Secure Simpapp sample application. The Windows 2003 nmake command needs to be in the path of your machine.
Step 2: Change the Protection Attribute on the Files for the Secure Simpapp Sample Application
During the installation of the Oracle Tuxedo software, the sample application files are marked read-only. Before you can edit or build the files in the Secure Simpapp sample application, you need to change the protection attribute of the files you copied into your work directory, as follows:
Windows 2003
prompt>attrib -r drive:\workdirectory\*.*
UNIX
prompt>/bin/ksh
ksh prompt>chmod u+w /workdirectory/*.*
On the UNIX operating system platform, you also need to change the permission of runme.ksh to give execute permission to the file, as follows:
ksh prompt>chmod +x runme.ksh
Step 3: Verify the Settings of the Environment Variables
Before building and running the Secure Simpapp sample application, you need to ensure that certain environment variables are set on your system. In most cases, these environment variables are set as part of the installation procedure. However, you need to check the environment variables to ensure they reflect correct information.
Table 9‑2 lists the environment variables required to run the Secure Simpapp sample application.
 
APPDIR=c:\work\simpappSSL
APPDIR=/usr/work/simpappSSL
TUXCONFIG=/usr/work/simpappSSL/tuxconfig
A subdirectory of APPDIR where files that are created as a result of executing the runme command are stored. For example:
To verify that the information for the environment variables defined during installation is correct, perform the following steps:
Windows 2003
1.
2.
The Control Panel appears.
3.
The System Properties window appears.
4.
The Environment page appears.
5.
UNIX
ksh prompt>printenv TUXDIR
To change the settings, perform the following steps:
Windows 2003
1.
2.
3.
UNIX
ksh prompt>export TUXDIR=directorypath
Step 4: Execute the runme Command
The runme command automates the following steps:
1.
2.
Loading the UBBCONFIG file.
3.
4.
5.
6.
7.
Note:
To build and run the Secure Simpapp sample application, enter the runme command, as follows:
Windows 2003
prompt>cd workdirectory
prompt>runme
UNIX
ksh prompt>cd workdirectory
ksh prompt>./runme.ksh
The Secure Simpapp sample application runs and prints the following messages:
Testing simpapp
cleaned up
prepared
built
loaded ubb
booted
ran
shutdown
saved results
PASSED
During execution of the runme command, you are prompted for a password. Enter the pass phrase of the private key of the IIOP Listener/Handler.
Table 9‑3 lists the C++ files in the work directory generated by the runme command.
 
Generated by the idl command, this file contains the client stubs for the SimpleFactory and Simple interfaces.
Generated by the idl command, this file contains the client definitions of the SimpleFactory and Simple interfaces.
Generated by the idl command, this file contains the server skeletons for the SimpleFactory and Simple interfaces.
Generated by the idl command, this file contains the server definition for the SimpleFactory and Simple interfaces.
Table 9‑4 lists files in the RESULTS directory generated by the runme command.
 
Contains the input that the runme command provides to the CORBA client application.
Contains the output produced when the runme command executes the CORBA client application.
Contains the output that is expected when the CORBA client application is executed by the runme command. The data in the output file is compared to the data in the expected_output file to determine whether or not the test passed or failed.
Contains the output generated by the runme command. If the runme command fails, check this file for errors.
Generated by the tmboot command, which is executed by the runme command.
Generated by the tmboot command, which is executed by the runme command.
Using the Secure Simpapp Sample Application
Run the server application in the Secure Simpapp sample application, as follows:
Windows 2003
prompt>tmboot -y
UNIX
ksh prompt>tmboot -y
Run the CORBA C++ client application in the Secure Simpapp sample application as follows:
Windows 2003
prompt> set TOBJADDR=corbalocs://host:port
prompt> simple_client -ORBid BEA_IIOP -ORBpeerValidate none
String?
Hello World
HELLO WORLD
hello world
UNIX
ksh prompt>export TOBJADDR=corbalocs://host:port
ksh prompt>simple_client -ORBid BEA_IIOP -ORBpeerValidate none
String?
Hello World
HELLO WORLD
hello world
Windows 2003
prompt>tmshutdown -y
prompt>nmake -f makefile.nt clean
UNIX
ksh prompt>tmshutdown -y
ksh prompt>make -f makefile.mk clean
 

Copyright © 1994, 2017, Oracle and/or its affiliates. All rights reserved.