Book Image

Modernizing Oracle Tuxedo Applications with Python

By : Aivars Kalvans
Book Image

Modernizing Oracle Tuxedo Applications with Python

By: Aivars Kalvans

Overview of this book

Despite being developed in the 1980s, Oracle Tuxedo still runs a significant part of critical infrastructure and is not going away any time soon. Modernizing Oracle Tuxedo Applications with Python will help you get to grips with the most important Tuxedo concepts by writing Python code. The book starts with an introduction to Oracle Tuxedo and guides you in installing its latest version and Python bindings for Tuxedo on Linux. You'll then learn how to build your first server and client, configure Tuxedo, and start running an application. As you advance, you'll understand load balancing and work with the BBL server, which is at the heart of a Tuxedo application. This Tuxedo book will also cover Boolean expressions and different ways to export Tuxedo buffers for storage and transmission, before showing you how to implement servers and clients and use the management information base to change the configuration dynamically. Once you've learned how to configure Tuxedo for transactions and control them in application code, you'll discover how to use the store-and-forward functionality to reach destinations and use an Oracle database from a Tuxedo application. By the end of this Oracle Tuxedo book, you'll be able to perform common Tuxedo programming tasks with Python and integrate Tuxedo applications with other parts of modern infrastructure.
Table of Contents (18 chapters)
1
Section 1: The Basics
6
Section 2: The Good Bits
12
Section 3: Integrations

Handling stateful protocols

The HTTP protocol supports persistent connections that reuse the same underlying TCP/IP connection for multiple request/response pairs. Sometimes you need to persist session cookies across requests. There are still a lot of network protocols that use a persistent TCP/IP connection for multiple asynchronous requests and responses. One way or another, there are times when you need to build a multi-threaded Tuxedo server.

To keep our examples simple, we will use a simple TCP/IP connection and for each character the server receives, it will reply with the same uppercase character. It will be our TCP/IP TOUPPER service. Here is the code for toupper.py, which listens on port 8765:

import socket
sock = socket.socket()
sock.bind(("", 8765))
sock.listen(1)
while True:
    con, _ = sock.accept()
    while True:
        c = con.recv(1024)
     &...