Starting the application
Following all this preparation, we can boot the application by using the tmboot
tool with my favorite -y
option:
tmboot -y
You will see the following result:
Booting all admin and server processes in /home/oracle/code/02/tuxconfig INFO: Oracle Tuxedo, Version 12.2.2.0.0, 64-bit, Patch Level (none) Booting admin processes ... exec BBL -A : process id=1296 ... Started. Booting server processes ... exec toupper.py -s TOUPPER:PY : process id=1297 ... Started. 2 processes started.
That's it! Our application is finally up and running and we can run our client program against it. Just run the following command:
python3 client.py
A HELLO, WORLD!
message in uppercase will be printed to the console.