ClearPath Enterprise Servers

Size: px
Start display at page:

Download "ClearPath Enterprise Servers"

Transcription

1 ClearPath Enterprise Servers Open Distributed Transaction Processing Technical Overview MCP 12.0 April 2008

2 .

3 unisys imagine it. done. ClearPath Enterprise Servers Open Distributed Transaction Processing Technical Overview MCP 12.0 April

4 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information described herein is only furnished pursuant and subject to the terms and conditions of a duly executed agreement to purchase or lease equipment or to license software. The only warranties made by Unisys, if any, with respect to the products described in this document are set forth in such agreement. Unisys cannot accept any financial or other responsibility that may be the result of your use of the information in this document or software material, including direct, special, or consequential damages. You should be very careful to ensure that the use of this information and/or software material complies with the laws, rules, and regulations of the jurisdictions with respect to which it is used. The information contained herein is subject to change without notice. Revisions may be issued to advise of such changes and/or additions. Notice to U.S. Government End Users: This is commercial computer software or hardware documentation developed at private expense. Use, reproduction, or disclosure by the Government is subject to the terms of Unisys standard commercial license for the products, and where applicable, the restricted/limited rights provisions of the contract data rights clauses. Unisys and ClearPath are registered trademarks of Unisys Corporation in the United States and other countries. All other brands and products referenced in this document are acknowledged to be the trademarks or registered trademarks of their respective holders.

5 ClearPath Enterprise Servers Open Distributed Transaction Processing Technical Overview MCP 12.0 ClearPath Enterprise Servers Open Distributed Transaction Processing Technical Overview MCP Bend here, peel upwards and apply to spine.

6 .

7 Contents Section 1. Welcome to Open Distributed Transaction Processing Section 2. Using Clients and Servers Client Programs Client Programs and the Client Role Client Program Structure Interfaces for Client Programs Server Programs Handling Service Requests Creating Server Programs Service Routines Processing Requests Service Routine Structure Interfaces for Service Routines Client/Server Communication Methods Request-Response Communications Conversational Communications Advantages of the Client/Server Paradigm Application Program Interfaces Open Distributed Transaction Processing Architecture Overview Supported APIs Section 3. Open Distributed Transaction Processing Application Programs Language Interfaces Desktop Agent and Workstation Transaction Server Transaction Manager (TM) Enterprise Database Server OSI-TP Section 4. Open Distributed Transaction Processing Library Task and Documentation Summary Documents for System Administrators Documents for Application Developers iii

8 Contents Appendix A. Standards on Which Open Distributed Transaction Processing Products Are Based The Open Group Distributed Transaction Processing (DTP) Model... A 1 Implementations of the DTP Model... A 1 Building Blocks of the DTP Model... A 2 Components... A 2 Interfaces... A 4 OSI-TP Distributed Transaction Processing Protocols and Services... A 5 The OSI-TP Standard... A 6 Relationship to Networking Protocols... A 6 Model of a Global Transaction... A 6 Systems in the Transaction... A 7 Steps in the Transaction... A 9 Two-Phase Commitment Process... A 10 Index... 1 iv

9 Figures 2 1. Open Distributed Transaction Processing Application Environment Open Distributed Transaction Processing Client Program Open Distributed Transaction Processing Service Routines Request-Response Communications Asynchronous Communication Conversation Communications Open Distributed Transaction Processing Process Model Primary Components of Open Distributed Transaction Processing A 1. A 2. A 3. A 4. A 5. Components and Interfaces of the DTP Model...A 2 The DTP Model and OSI-TP...A 5 Example Global Transaction Configuration...A 7 Steps in the Global Transaction...A 9 Two-Phase Commit Protocol...A v

10 Figures vi

11 Section 1 Welcome to Open Distributed Transaction Processing Documentation Updates This document contains all the information that was available at the time of publication. Changes identified after release of this document are included in problem list entry (PLE) To obtain a copy of the PLE, contact your Unisys representative or access the current PLE from the Unisys Product Support Web site: Note: If you are not logged into the Product Support site, you will be asked to do so. Open Distributed Transaction Processing provides an open, standards-compliant environment for developing distributed transaction processing (DTP) applications. Open Distributed Transaction Processing supports global transactions specified by the Open Group DTP model. Open Distributed Transaction Processing enables you to easily build and manage client-server applications for the enterprise and the Internet. You can write the business logic for your server application as a set of interoperable, services by using a third generation programming language (such as COBOL, ALGOL, or C), or by using a fourth generation language tool (such as Enterprise Application Environment). Open Distributed Transaction Processing then runs these services in the scalable, transactional environment that is MCP and makes them available to interact with other platforms when needed. Open Distributed Transaction Processing acts as middleware for your distributed enterprise and Internet applications. That is, it enables clients to communicate with servers without requiring you to concern yourself with communication protocols and platforms. Open Distributed Transaction Processing provides an open environment that supports a wide variety of clients, databases, networks, legacy systems, and communications options. You can mix and match these in endless combinations

12 Welcome to Open Distributed Transaction Processing

13 Section 2 Using Clients and Servers One of the features that Open Distributed Transaction Processing uses to integrate applications in real time across a variety of systems is support for the client/server paradigm. In this paradigm A client is a process that requests services and receives replies. A server is a process that accepts requests, calls appropriate services, and returns replies to the requestor. Open Distributed Transaction Processing provides the infrastructure to support client and server applications. It facilitates client access to servers and their constituent services, manages the services themselves, and supports access to database resources. Open Distributed Transaction Processing and the Client/Server Paradigm Figure 2 1 shows how clients and servers interoperate in an Open Distributed Transaction Processing environment. CLIENT CLIENT Application Services Server Database Host CLIENT CLIENT Application Services Server Database Figure 2 1. Open Distributed Transaction Processing Application Environment

14 Using Clients and Servers Explanation In this diagram, client applications provide user interface routines and request application services. Application services provide core business logic, which does transactional data access and updates. Open Distributed Transaction Processing provides the infrastructure or middleware that integrates clients, services, and databases into a unified distributed application. Note the shift from a client/database approach toward a client/server approach. This application partitioning promotes a clean separation of functionality user interaction on one hand, with core business logic and data management on the other. This separation makes application development and enhancement easier. Client Programs In their simplest form, client programs are application modules that interact with users or devices and send service requests to Open Distributed Transaction Processing software. Open Distributed Transaction Processing software and the underlying communications systems are responsible for routing service requests to the appropriate servers. Client programs have no knowledge of networks. As shown in Figure 2 2, client programs typically handle the front-end work of traditional applications; that is, they handle the dialogue with the user. Client programs accept input data from users and return the results of transactions in the form of data or messages. Figure 2 2. Open Distributed Transaction Processing Client Program Although client programs can perform some of their own back-end work as well, the task of communicating with database management systems and other resource managers is typically left to service routines. Client Programs and the Client Role The term client has two important meanings for Open Distributed Transaction Processing systems: Client can refer to a type of application program. Client can also refer to the role a service routine plays when it requests a service. That is, a service routine can act as a client by requesting services from other service routines

15 Using Clients and Servers Client Program Structure There is no required coding structure for client programs, as there is for service routines. However, client programs must adhere to communication techniques that are defined in the XATMI standard. More Information For information about these communication techniques, see Client/Server Communication Methods, later in this section. Interfaces for Client Programs Client programs can use an assortment of standard interfaces and platform-specific software products to provide users all the capabilities they require. Open DTP standard interfaces available on all platforms include TX XATMI Server Programs Server programs are entities that process requests for services from clients and pass those requests to the appropriate service routines. A server program can offer one or more services. In addition, the same service can be offered by more than one server program. The Open Group XATMI standard does not specify how service routines are incorporated into servers, nor does it specify the details of how servers operate. These issues are left to vendors (such as Unisys) to determine. Handling Service Requests Generally speaking, server programs handle service requests in the following manner: 1. Check a message queue for a service request. 2. Call the appropriate service routine to handle the service request. 3. Handle communications between the client program and the service routine (in cooperation with the Open Distributed Transaction Processing communication resource manager component). 4. Regain control after the service routine terminates. Creating Server Programs Open Distributed Transaction Processing server programs consist of several components. Some components are predefined by Unisys and are included with Open

16 Using Clients and Servers Distributed Transaction Processing products. Others must be created or generated by application developers or system administrators. Service Routines Service routines are server subprograms that interact with databases or other resource managers to perform specific tasks for client programs. Service routines can issue service requests to other service routines and include their work in global transactions. These can be Global transactions started by client programs Global transactions started by service routines themselves As Figure 2 3 indicates, service routines typically handle the back-end work of traditional Open Distributed Transaction Processing applications. They have no user interface functions. As with client programs, service routines do not need to know about networks. Open Distributed Transaction Processing software and underlying communications systems handle the exchange of data and messages between client programs and service routines. Figure 2 3. Open Distributed Transaction Processing Service Routines

17 Using Clients and Servers Processing Requests Generally speaking, service routines process service requests in the following manner: 1. Receive control from the server. 2. Access a data structure to obtain request information, such as the name of the requested service, input data, and other items. 3. Perform the service by updating a database, sending requests to other Open Distributed Transaction Processing servers, or performing other related tasks. 4. Terminate and return control to the server. Service routines can also interact with client programs in a conversational manner by sending and receiving data and messages over an extended period of time. Service Routine Structure To conform with the communication model in the XATMI standard, service routines must begin processing and end processing in the same way. This structure is known as the service routine template. The Open Distributed Transaction Progressing XATMI Programming Guide provides detailed information about the service routine template. Interfaces for Service Routines Service routines can use an assortment of standard interfaces and platform-specific software products to provide users all the capabilities they require. Standard Interfaces Open Group DTP standard interfaces available on all platforms include TX XATMI Client/Server Communication Methods The Open Distributed Transaction Processing Client-server architecture is based largely on the Open Group XATMI standard. The XATMI standard specifies a framework for structuring applications as client programs, server programs, and service routines. In addition, the standard provides a distinctive model for client/server communication

18 Using Clients and Servers Client programs, server programs, and service routines can use two methods to communicate: Request-response A client program sends one request to Open Distributed Transaction Processing software, and a service routine returns one response (through its server). No connection between the programs is established. Conversational A client program and a service routine exchange any number of messages through Open Distributed Transaction Processing software (and a server program), using descriptors to identify one another. Both client/server communication methods are supported for both single machine and distributed environments. That is, client programs and service routines can communicate by both methods, in exactly the same ways, no matter where they reside. Request-Response Communications When application programs use the request-response method to communicate, they each send one message to Open Distributed Transaction Processing software: The client program sends a request, and the service routine returns a response (through a server program). No connections are established and no other communications occur. Figure 2 4 shows how request-response communications work. Figure 2 4. Request-Response Communications

19 Using Clients and Servers Observations Variations When a client program and a service routine use the request-response method to communicate, the following events occur: 1. A client program sends a request to the Open Distributed Transaction Processing communication resource manager (CRM). The request consists of input for one particular service. 2. The CRM passes the request to a server program. 3. The server program calls a service routine that performs the requested service. 4. When the service routine completes its work and terminates, the server program sends the response to the Open Distributed Transaction Processing CRM. 5. The CRM passes the response to the client program. Application programs that use the request-response method can communicate synchronously or asynchronously: In synchronous communications, the client program waits (or blocks) until it receives the service routine's response. In asynchronous communications, the client program asks Open Distributed Transaction Processing software for the service routine's response when it is ready. This enables the client program to perform useful work while it waits for the service routine to finish. Figure 2 5. shows how asynchronous communication works. Figure 2 5. Asynchronous Communication

20 Using Clients and Servers Benefits of Request-Response The request-response communications method is attractive because it Meets the needs of most applications Simplifies application development. Service routines that use the request-response method must begin processing and end processing the same way. After a programmer learns how to develop one service routine, the rest are relatively easy. Conversational Communications When programs use the conversational method to communicate, they establish logical connections through Open Distributed Transaction Processing software and send an unlimited number of messages back and forth. Figure 2 6 shows how conversational communications work. Figure 2 6. Conversation Communications Observations When a client program and a service routine use the conversational method to communicate, the following events occur: 1. A client program sends a request to the Open Distributed Transaction Processing communications resource manager (CRM). The request consists of input for one particular service. 2. The CRM passes the request to a server program. 3. The server program calls a service routine that performs the requested service

21 Using Clients and Servers Benefits 4. The client program and service routine send and receive messages through the CRM, using conversation descriptors to identify one another. The conversation is half-duplex; one program sends and the other receives. During their conversation, the programs can reverse the sending and receiving roles. 5. When the service routine completes its work and terminates, the conversation ends. The CRM returns the service routine's final message to the client program. The conversational method is useful because it enables Service routines to send incremental results to client programs Client programs and service routines to exchange large amounts of data Client programs and service routines to vary their actions and perform different tasks, based on messages received during conversations. Advantages of the Client/Server Paradigm The principal benefits of application partitioning are that By developing services, application designers can focus on developing core business functions and their interaction. This focus enables them to easily prototype the business logic and key functional elements. Display considerations can be dealt with separately. By separating user interface and business logic, you can reuse services, regardless of presentation issues. Thus a single service can be called by clients that provide various user interfaces, from workstation screens to Web pages. You can enhance and evolve existing services with little or no impact to clients. A single client can call multiple services. This means that an application developer can pick and choose which services a client calls. Some services can be new, while others already exist. The client can package these functions with a consistent look and feel to the user. Application Program Interfaces As middleware, Open Distributed Transaction Processing facilitates the interaction of clients and servers. It does this, in part, by means of special application program interfaces (APIs)

22 Using Clients and Servers Open Distributed Transaction Processing Architecture Overview Figure 2 7 shows how the component software of Open Distributed Transaction Processing mediates such interaction. Figure 2 7. Open Distributed Transaction Processing Process Model Explanation In this diagram, client processes, such as desktop applications, call named services. Calls become message-based requests for service that enter Open Distributed Transaction Processing and are dispatched to server processes implementing the requested services. A key function of discrete services is the access and updating of resource managers (databases). If updates are made within the scope of a transaction, Open Distributed Transaction Processing transaction management services coordinate the transaction on behalf of the participating clients and services, and in cooperation with the participating resource managers. Open Distributed Transaction Processing component software applications execute as a group of cooperating processes using message-based communications. For example, a simple client-server application request involves the following steps: 1. A client process, such as a desktop application, calls an Open Distributed Transaction Processing managed service. 2. A request message is formatted and passed over the network to the desktop agent on the Open Distributed Transaction Processing server node

23 Using Clients and Servers Advantages 3. The request message is then passed from the desktop agent process directly to the server queue for processing. 4. The server process reads the message from its queue and invokes the requested named service. Typically a service will access a resource manager, perhaps performing an update. Upon service completion, the reply message is placed in the client s queue in the desktop agent. From here, the reply propagates back over the network to the initiating client process. 5. By default, server processes are stateless and serially reusable. After completing a request, the server loops back to its initial state and is ready to process the next request in its queue. By dynamically mapping requests to managed servers, Open Distributed Transaction Processing exercises broad control over the flow of processing for the overall application. Dynamic, flexible mapping means that you can configure the relationship between clients and servers to handle Many clients dealing with one server Many clients dealing with many servers One client dealing with many servers Supported APIs Open Distributed Transaction Processing programming interfaces support the client/server model of application development. Applications are structured as client and server components using message-based procedure invocations to communicate. The procedure paradigm encapsulates the notion of a request for a specific service and a mechanism for exchanging the data (that is, the request and response arguments). Open Distributed Transaction Processing offers a rich set of communication interfaces to meet a variety of application design requirements. In addition to communications interface, the Open Distributed Transaction Processing transaction demarcation (TX) interface provides the means to define reliable distributed transactions. Communications Programming Interface (XATMI) Open Distributed Transaction Processing provides library-based programming interfaces. Library-based programming is supported through a set of COBOL, ALGOL, or C procedures known as XATMI. Open Distributed Transaction Processing XATMI is based on Open Group s DTP XATMI interface, and is a core part of the overall DTP Distributed Transaction Processing model. You can use XATMI procedures to send a named service request from one application component to another

24 Using Clients and Servers The following table gives a summary of the Open Distributed Transaction Processing communication programming functions: Request-Response TPCALL TPACALL TPGETRPLY TPRETURN Conversational TPCONNECT TPSEND TPRECV TPDISCONN Open Distributed Transaction Processing XATMI communication interfaces support two general programming models: synchronous and asynchronous request-response and conversations. Transaction Demarcation (TX) Interface The Open Distributed Transaction Processing XATMI communication interfaces provide flexible mechanisms for distributed application components to exchange service requests and data. Open Distributed Transaction Processing also supports a transaction demarcation interface that enables work done by distributed services to be bounded by a global transaction. The three fundamental functions are TXBEGIN, TXCOMMIT, and TXROLLBACK, as defined by the DTP TX interface. The TXBEGIN function defines the beginning of a global transaction. When a client calls TXBEGIN, Open Distributed Transaction Processing creates a global transaction identifier to associate with subsequent requests issued by the client for example, TPCALL and TPACALL requests. As calls are made to services, the transaction identifier and related context is propagated. Eventually, the client will want to complete the computation and, all being well, will invoke TXCOMMIT. If the client detects a failure for example an adverse return from a TPCALL it will invoke TXROLLBACK. The commit and rollback functions alert Open Distributed Transaction Processing to the client request to complete the transaction, either coordinating the commitment of all resource manager updates or directing them to roll back. The Open Distributed Transaction Processing Transaction Manager interacts with the participating resource managers to complete the coordination protocol. Of course, if Open Distributed Transaction Processing detects a failure outside the scope of client initiator, it will force a rollback and alert the client. XATMI is both powerful and flexible. The API set allows the development of distributed application components that communicate through a rich set of communications functions. The TX API adds the transaction semantics to glue the application components together for true mission-critical applications. You can use synchronous, asynchronous, and conversational mechanisms singly and in combination to structure the simplest through the most complex distributed applications. XATMI masks the network, providing location transparency and easy access to deployed server components and the services they advertise

25 Section 3 Open Distributed Transaction Processing MCP software releases contain deliverables that are required to build, run, and manage client/server distributed transaction applications. Figure 3 1 shows the primary components that enable Open Distributed Transaction Processing. Figure 3 1. Primary Components of Open Distributed Transaction Processing

26 Open Distributed Transaction Processing The elements of the foregoing diagram include Applications programs Language Interfaces Desktop Agent and BEA Tuxedo Workstation Transaction Server Transaction Manager Enterprise Database Server OSI-TP Application Programs Application programs (APs) are the site-developed client and server processes. These applications provide the user interface, request and provide services, and apply the business rules to the computer-based business operations. Typically clients are responsible for interacting with users; servers are responsible for opening, updating, and closing the resource managers (databases). Client Applications Client application programs can be located on a desktop workstation, can be Web based or in the MCP environment Transaction Server based (that is, using a Remote File or a Direct Window application), or initiated outside of the Transaction Server environment. XATMI services are always managed by Transaction Server. You can develop new server applications by using Enterprise Application Environment, COBOL74, COBOL85, C, and ALGOL. You can also adapt existing Transaction Server applications to be used as servers with little or no modification, if they conform to the Open Distributed Transaction Processing guidelines. More Information For details on developing a client or server application for Open Distributed Transaction Processing, see the Open Distributed Transaction Processing Programming Guide. Language Interfaces You can write application programs in the MCP environment by using the COBOL85, COBOL74, ALGOL, and C languages. The COBOL85 and C language shells provided by Open Distributed Transaction Processing reduce the programming effort required to implement applications

27 Open Distributed Transaction Processing With the exception of C, you can use the following interfaces with all of these languages: Enterprise Database Server native interface Transaction Server native interface TX XATMI C can use the TX interface and (through Transaction Server) the XATMI interface. Desktop Agent and Workstation The Workstation component supplies the XATMI and TX interfaces to desktop applications. It works in conjunction with the Desktop Agent (DA) and the Desktop Agent protocol-specific handler (DA PSH) (both in the MCP environment) to access services that have been implemented for the MCP environment. For a single transaction, each copy of the DA program acts as an MCP client application program on behalf of a single transactional desktop client application program. Transaction Server The Transaction Server implements in the MCP environment the CRM function of the Open DTP model. As such, Transaction Server connects a client application with a server and service. The CRM Routes service calls from the client to the appropriate server. Transforms data so that data transferred between client and server is machine dependent. Works with the transaction manager to coordinate transaction commitments. More Information For information about the CRM function in the Open DTP model, see Appendix A, Standards on Which Open Distributed Transaction Processing Products Are Based. Transaction Manager (TM) The primary function of the TM is to manage global transactions. Application programs (clients) define a global transaction by calling TXBEGIN and TXCOMMIT/TXROLLBACK TX calls. The TM directs resource managers to either apply their part of the global transaction or roll it back. The TM implements the industry standard XA interface to accomplish this

28 Open Distributed Transaction Processing More Information For details about the TM functions of the Open Group model, see Appendix A, Standards on Which Open Distributed Transaction Processing Products Are Based. Enterprise Database Server The Enterprise Database Server implements in the MCP environment the RM in the Open Group model. As such, Enterprise Database Server handles the two-phase commit protocol (XA interface) that allows the synchronization between multiple databases. More Information For details about the RM functions in the Open Group model, see Appendix A, Standards on Which Open Distributed Transaction Processing Products Are Based. See also the Open Distributed Transaction Processing Programming Guide for some Enterprise Database Server considerations. OSI-TP Open Systems Interconnection Transaction Processing (OSI-TP) is an optional product that provides interoperability and distributed transaction processing services. OSI-TP enables local clients and servers to interact with remote servers and clients to perform both global and nonglobal transactions. Open Distributed Transaction Processing TMs and communications resource managers (CRMs) rely on OSI-TP to establish and terminate dialogues between TMs, to send and receive messages, and to coordinate commitment and rollback processing with other systems. This product makes it possible to distribute Open Distributed Transaction Processing applications across both homogeneous and heterogeneous platforms. More Information For details about the OSI-TP functions in the Open Group model, see Appendix A, Standards on Which Open Distributed Transaction Processing Products Are Based

29 Section 4 Open Distributed Transaction Processing Library To choose the Open Distributed Transaction Processing documents you should be familiar with, you need to know what tasks belong with what job description and in which documents the tasks belonging to your job description can be found. Task and Documentation Summary The following tables list the major tasks required to implement Open Distributed Transaction Processing software and applications in an MCP environment. For each task, the corresponding Open Distributed Transaction Processing documentation is listed. Installing Open Distributed Transaction Processing Software The following table lists the tasks required for installing Open Distributed Transaction Processing for the MCP environment. Task Install the TM software Install the OSI-TP software Install the CRM software Install the two-phase commit software Reference Open Distributed Transaction Processing Installation and Administration Guide Open Distributed Transaction Processing Installation and Administration Guide Open Distributed Transaction Processing Installation and Administration Guide Open Distributed Transaction Processing Installation and Administration Guide

30 Open Distributed Transaction Processing Library Developing Application Programs The following tables list the tasks required for developing application programs for Open Distributed Transaction Processing. Task Define VIEW entities Declare the TX interface Declare the XATMI interface Create a server program Configure the application program to Transaction Server Reference Open Distributed Transaction Processing Installation and Administration Guide Open Distributed Transaction Processing Programming Guide Open Distributed Transaction Processing Programming Guide Open Distributed Transaction Processing Programming Guide Open Distributed Transaction Processing Programming Guide Open Distributed Transaction Processing Installation and Administration Guide Perform Ongoing Administration The following tables list the tasks required for performing ongoing administration for Open Distributed Transaction Processing software and application programs. Task Administer the TM Administer the CRM Administer the OSI-TP Reference Open Distributed Transaction Processing Installation and Administration Guide Open Distributed Transaction Processing Installation and Administration Guide Open Distributed Transaction Processing Installation and Administration Guide Documents for System Administrators System administrators perform the following tasks: Install the Open Distributed Transaction Processing software. Define VIEW entities. Configure the application program to the Transaction Server. Maintain and monitor Open Distributed Transaction Processing operations

31 Open Distributed Transaction Processing Library The following documents are designed for system administrators on MCP systems: Open Distributed Transaction Processing Technical Overview Open Distributed Transaction Processing Installation and Administration Guide This guide introduces the Open Distributed Transaction Processing product and describes the procedures for installing, configuring, and administering the software product. Documents for Application Developers Application developers perform the following tasks: Declare the TX interface. Declare the XATMI interface. Create a server program. The following documents are designed for application developers on MCP systems: Open Distributed Transaction Processing Technical Overview Open Distributed Transaction Processing Programming Guide This guide provides a conceptual and procedural overview of how to develop Open Distributed Transaction Processing application programs on MCP systems. Topics covered in this document include overviews of the Open Distributed Transaction Processing transaction manager, TX Application Programming Interface, XATMI Application Programming interface, and relevant programming language concerns. This document refers readers to two cross-platform documents for extensive detailed information. Open Distributed Transaction Processing TX Application Program Interface Programming Guide This guide describes the Open Distributed Transaction Processing TX Application Programming Interface (API), which application programs use to begin, end, and direct global transactions. In particular, this guide describes the concepts and components of the Open Group DTP model and related terminology, global transactions, timeouts, chaining, and other attributes of the TX API. It explains and provides examples of how to use the TX functions to perform the tasks of beginning, ending, and directing global transactions. This guide also provides language-specific reference information for each function in the TX service library

32 Open Distributed Transaction Processing Library Open Distributed Transaction Processing XATMI Application Program Interface Programming Guide This guide describes the Open Distributed Transaction Processing XATMI application program interface (API), which application programs (AP) use to communicate with other APs in the network through the communication resource manager (CRM). In particular, this guide describes the concepts and components of the Open Group DTP model and related terminology, the client/server communications model, request-response and conversational programming models, and attributes of the XATMI API. It explains and provides examples of how to use the XATMI functions to communicate with the CRM to perform various tasks. This guide also provides language-specific reference information for each function in the XATMI service library. Transaction Server Configuration Guide This guide provides an overview of the basic concepts and functions of Transaction Server. It includes instructions for creating a working Transaction Server configuration and information on how to monitor and fine-tune Transaction Server system performance

33 Appendix A Standards on Which Open Distributed Transaction Processing Products Are Based In its Open Distributed Transaction Processing products, Unisys supports two established distributed transaction processing standards. The Open Group distributed transaction processing (DTP) model OSI Transaction Processing (OSI-TP) protocols and services The Open Group Distributed Transaction Processing (DTP) Model The Open Group is a private international consortium of vendors and users who are working together on models and standards for open systems. The DTP model is the Open Group general framework for conducting distributed transaction processing. It identifies software components that support distributed transaction processing and specifies how those components interact. A major goal of the DTP model is to guide computer system vendors in the creation of transaction processing environments that meet the stringent requirements identified previously in this section. Open Distributed Transaction Processing products are based on the Open Group DTP model and other relevant standards. For more information about the model, see the Open Group Distributed TP Reference Model. Implementations of the DTP Model The Open Group DTP model is not a complete blueprint for building software products. Rather, it is a common point of reference toward which products like Open Distributed Transaction Processing aim. Different implementations might meet the requirements of the model in different ways. In addition, real-world products must perform many functions that are not addressed by the model A 1

34 Standards on Which Open Distributed Transaction Processing Products Are Based Building Blocks of the DTP Model The DTP model works by defining the building blocks that make up a DTP system. There are two kinds of building blocks: Components Software entities that make up a transaction processing system. Components include application programs that users develop and system software components that vendors supply. Interfaces Sets of functions that enable components to communicate and interact. The DTP model defines interfaces that application programs use to communicate with each other and define transactions. It also defines interfaces that system software components use to interact with each other and process transactions. Components Components that support the appropriate Open Group DTP interfaces can interoperate with one another, regardless of who built them. Figure A 1 shows the functional components and interfaces of the DTP model. This model is sometimes referred to as the four-box model. Figure A 1. Components and Interfaces of the DTP Model One set of these four boxesääan application program and its associated DTP system componentsääis called an instance of the model. In a global transaction, two or more instances of the model work together to complete the transaction. Different instances of the model can reside on the same machine or on different machines in the network. A

35 Standards on Which Open Distributed Transaction Processing Products Are Based Application Program (AP) An application program is a user-written component that performs one or more specific tasks. Application programs define global transaction boundaries, access resource managers, and request work from other application programs. An application program interacts with other system components using interfaces defined in the model. In the Open Distributed Transaction Processing and BEA Tuxedo implementations of the Open DTP model, application programs are partitioned into well-defined modules called client programs, server programs, and service routines. Client programs are modules that send service requests and occasionally update databases directly. Client programs contain user interface components, some application logic, and occasionally, data management components. Client programs can be implemented as Windows applications, Web pages, Java applets (displayed in browsers), and in other ways. Server programs are modules that dispatch service routines to satisfy requests from client programs. Service routines are server subprograms that contain data management components and some application logic. Client programs and server programs (together with associated service routines) can be located on different machines or the same machine. In this discussion, client programs, server programs, and service routines are sometimes referred to as application programs (for readability and simplicity). Resource Manager (RM) Resource managers are system software components, such as databases or file access systems that provide access to resources. To qualify as an Open Group compliant RM, a software component must support the XA interfaceääa set of system-level functions that RMs and transaction managers use to communicate with one another during global transactions. Examples of RMs are Informix Online, Oracle, SQL Server, and Enterprise Database Server databases. A single instance of the Open DTP model can include multiple RMs. Transaction Manager (TM) A transaction manager is a system software component that manages global transactions on behalf of application programs. TMs coordinate commands from application programs and communications resource managers to start and complete global transactions by communicating with all RMs participating in those global transactions. The TM is different from a transaction monitor (like Transaction Server) that schedules programs, routes messages, and so on. On MCP systems, the TM is implemented as a separate component A 3

36 Standards on Which Open Distributed Transaction Processing Products Are Based Communications Resource Manager (CRM) A communications resource manager is a system software component that enables one instance of the model to communicate with another instance of the model. The CRM handles communication between the different application programs engaged in a global transaction. It also enables communication between TMs on different systems. Interfaces In the Open Group DTP model, application programs conduct global transactions using interfaces that system software components provide. These interfaces include SQL and other AP-RM interfaces TX interface XATMI interface SQL and Other AP-RM Interfaces Application programs use these interfaces to access resources. Examples of interfaces between application programs and resource managers (RM) include the Structured Query Language (SQL) and the indexed sequential access method (ISAM). The interface used in any particular case is defined by the requirements of the RM rather than by the Open Group DTP model. However, the use of standardized interfaces such as SQL enhances application program portability. TX Interface Application programs use the TX interface to define global transaction boundaries. The Open Group TX specification defines the functionality and behavior of this interface. XATMI Interface Client programs and server programs (service routines) use the XATMI interface to communicate during global and nonglobal transactions. The following kinds of communication are supported: Synchronous request-response. A client sends a service request and waits for a reply from the server. Asynchronous request-response. A client sends a service request and later asks for a reply from the server. The client may request other services or perform other work before obtaining the reply. Conversational. A client establishes a logical connection with a server and conducts a dialog with that server. Dialogs are half-duplex; one program sends and the other receives. During conversations, clients and servers can exchange the sending and receiving roles. A

37 Standards on Which Open Distributed Transaction Processing Products Are Based Transaction Internet Protocol (TIP) Interface The TIP provides support for the Transaction Internet Protocol (TIP RFC 2371) for interaction with platforms that support this protocol. It provides a direct protocol between TMs executing on different platforms. The TM uses this protocol to import, export, and manage transactions with diverse execution environments. Several middleware products use this protocol. OSI-TP Distributed Transaction Processing Protocols and Services The four-box picture of the Open Group DTP model as described in Figure A 1 is incomplete in one respect. It does not show how different instances of the model communicate with one another when they reside on different machines. As shown in Figure A 2, a fifth box is necessary. For communication between different systems, the Open Group DTP model supports communication protocols and services that are defined in the International Organization for Standardization (ISO) OSI-TP standard. Figure A 2. The DTP Model and OSI-TP Although OSI-TP and the Open Group DTP model were developed by different standards organizations, they are compatible and complementary. Generally speaking, the Open Group model defines the application side of the distributed transaction processing environment, while the OSI-TP standard defines the network side A 5

38 Standards on Which Open Distributed Transaction Processing Products Are Based The OSI-TP Standard The OSI-TP standard (ISO 10026), completed in 1992, defines protocols and services that computer systems in networks use to Establish and terminate dialogs between application programs. Exchange data. Coordinate processing. Manage the completion and recovery of global transactions. OSI-TP is actually an umbrella term for a collection of standards that support a broad set of transaction processing requirements. Unisys implementations of OSI-TP support the ISO/IEC standard. This standard describes services and protocols that are tailored specifically for the Open Group XATMI specification. These services and protocols enable Open Group compliant system software (namely, transaction managers and communications resource managers) to Initiate and accept or reject remote service requests inside and outside global transactions. Send and receive data across networks. Prepare, commit, and roll back global transactions. Relationship to Networking Protocols As the name suggests, OSI-TP can be implemented in OSI networks. However, many organizations do not have OSI networks and have no plans to adopt them. Unisys addresses this problem by making OSI-TP available for all supported networks: OSI Transmission control protocol/internet protocol (TCP/IP) More specifically, OSI-TP, together with OSI presentation and session protocols, can be implemented on top of other transport (and lower) protocols. Model of a Global Transaction How do user application programs, Open Group DTP components, and OSI-TP components interact during a global transaction? The following example shows how a travel agent in one city could use a network of Open Distributed Transaction Processing application programs to book an airline flight and reserve a rental car in a single global transaction. A

39 Standards on Which Open Distributed Transaction Processing Products Are Based Systems in the Transaction Figure A 3 shows the systems involved in the example global transaction. Figure A 3. Example Global Transaction Configuration A 7

40 Standards on Which Open Distributed Transaction Processing Products Are Based Explanation In the example, each instance of the DTP model (each set of four boxes) represents a separate node in the Open Distributed Transaction Processing network. Minneapolis This is the node where the travel agent is located. The application program in the Minneapolis node is the client program in this global transaction because it begins the global transaction and requests services from the application programs in the other nodes. The client program could be implemented as a standalone Windows application, a Web page, a Java applet (displayed in a browser), and in other ways. Chicago This is the node where the airline reservation application and database are located. The application program in the Chicago node is a server program in this global transaction because it receives the request for airline reservations from the client in the Minneapolis node. The airline reservation database is a resource manager (RM) accessed by the server program. New York This is the node where the car rental application and database are located. The application program in the New York node is a server program in this global transaction because it receives the request for a car rental from the client in the Minneapolis node. The car rental database is an RM accessed by the server program. To emphasize that clients and servers are both considered application programs in the DTP model, the figure shows the same set of components in each node. In the case of the Minneapolis node, it is entirely possible for a client program to access a local RM directly as part of a global transaction. For example, the Minneapolis RM might maintain trip history information on the travel agency s clients. To simplify the example, however, only the RMs accessed by the two server programs will be discussed in the rest of this subsection. A

unisys Distributed Processing Middleware Open Distributed Transaction Processing Administration Guide Volume 2: Building Applications

unisys Distributed Processing Middleware Open Distributed Transaction Processing Administration Guide Volume 2: Building Applications unisys Distributed Processing Middleware Open Distributed Transaction Processing Administration Guide Volume 2: Building Applications ClearPath OS 2200 Release 13.1 February 2012 7833 5080 009 NO WARRANTIES

More information

Client Server Architecture

Client Server Architecture Client Server Architecture Key concepts: - client server architecture - Functional requirements in the 2-tier structures - Functional distribution in the 2-tier structures - Implementation of Business

More information

COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters

COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters COMP5426 Parallel and Distributed Computing Distributed Systems: Client/Server and Clusters Client/Server Computing Client Client machines are generally single-user workstations providing a user-friendly

More information

The EMSX Platform. A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks. A White Paper.

The EMSX Platform. A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks. A White Paper. The EMSX Platform A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks A White Paper November 2002 Abstract: The EMSX Platform is a set of components that together provide

More information

UNISYS. Server Management 2.0. Software Release Announcement. imagine it. done. Server Management 2.0 and Higher. May 2008 8216 3445 000

UNISYS. Server Management 2.0. Software Release Announcement. imagine it. done. Server Management 2.0 and Higher. May 2008 8216 3445 000 UNISYS imagine it. done. Server Management 2.0 Software Release Announcement Server Management 2.0 and Higher May 2008 8216 3445 000 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product

More information

CHAPTER 2 MODELLING FOR DISTRIBUTED NETWORK SYSTEMS: THE CLIENT- SERVER MODEL

CHAPTER 2 MODELLING FOR DISTRIBUTED NETWORK SYSTEMS: THE CLIENT- SERVER MODEL CHAPTER 2 MODELLING FOR DISTRIBUTED NETWORK SYSTEMS: THE CLIENT- SERVER MODEL This chapter is to introduce the client-server model and its role in the development of distributed network systems. The chapter

More information

Technical Standard. Distributed Transaction Processing: The TX (Transaction Demarcation) Specification

Technical Standard. Distributed Transaction Processing: The TX (Transaction Demarcation) Specification TECHNICAL STANDARD Technical Standard Distributed Transaction Processing: The TX (Transaction Demarcation) Specification [This page intentionally left blank] X/Open CAE Specification Distributed Transaction

More information

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide INFOIMAGE FOLDER ON WINDOWS NT Connector for Microsoft Exchange Unisys Getting Started Guide Copyright 1999 Unisys Corporation. All rights reserved. Unisys is a registered trademark of Unisys Corporation.

More information

BEA TUXEDO. Product Overview

BEA TUXEDO. Product Overview BEA TUXEDO Product Overview BEA TUXEDO Release 6.5 Document Edition 6.5 February 1999 Copyright Copyright 1999 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and documentation

More information

NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0

NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 [1]Oracle Communications Offline Mediation Controller NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 E39478-01 June 2015 Oracle Communications Offline Mediation Controller NetFlow

More information

Enterprise Integration Architectures for the Financial Services and Insurance Industries

Enterprise Integration Architectures for the Financial Services and Insurance Industries George Kosmides Dennis Pagano Noospherics Technologies, Inc. gkosmides@noospherics.com Enterprise Integration Architectures for the Financial Services and Insurance Industries Overview Financial Services

More information

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Middleware for Heterogeneous and Distributed Information Systems

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Middleware for Heterogeneous and Distributed Information Systems Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 2 Architecture Chapter Outline Distributed transactions (quick

More information

Enterprise Server. Application Sentinel for SQL Server Installation and Configuration Guide. Application Sentinel 2.0 and Higher

Enterprise Server. Application Sentinel for SQL Server Installation and Configuration Guide. Application Sentinel 2.0 and Higher Enterprise Server Application Sentinel for SQL Server Installation and Configuration Guide Application Sentinel 2.0 and Higher August 2004 Printed in USA 3832 1097 000 . Enterprise Server Application Sentinel

More information

UNISYS. ClearPath Enterprise Servers. Authentication Sentinel for OS 2200 User Guide. ClearPath OS 2200 Release 8.2

UNISYS. ClearPath Enterprise Servers. Authentication Sentinel for OS 2200 User Guide. ClearPath OS 2200 Release 8.2 ClearPath Enterprise Servers Authentication Sentinel for OS 2200 User Guide UNISYS 2004 Unisys Corporation. All rights reserved. ClearPath OS 2200 Release 8.2 Printed in USA September 2004 4729 2016 000

More information

What Is the Java TM 2 Platform, Enterprise Edition?

What Is the Java TM 2 Platform, Enterprise Edition? Page 1 de 9 What Is the Java TM 2 Platform, Enterprise Edition? This document provides an introduction to the features and benefits of the Java 2 platform, Enterprise Edition. Overview Enterprises today

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1) E14294-04 January 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include: What

More information

What is Middleware? Software that functions as a conversion or translation layer. It is also a consolidator and integrator.

What is Middleware? Software that functions as a conversion or translation layer. It is also a consolidator and integrator. What is Middleware? Application Application Middleware Middleware Operating System Operating System Software that functions as a conversion or translation layer. It is also a consolidator and integrator.

More information

Chapter 2: Enterprise Applications from a Middleware Perspective

Chapter 2: Enterprise Applications from a Middleware Perspective Chapter 2: Enterprise Applications from a Middleware Perspective In this chapter, we give an introduction to enterprise applications from a middleware perspective. Some aspects have already been outlined

More information

http://support.oracle.com/

http://support.oracle.com/ Contract Management System Architecture Data Sheet October 2012 Legal Notices Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle

More information

PIE. Internal Structure

PIE. Internal Structure PIE Internal Structure PIE Composition PIE (Processware Integration Environment) is a set of programs for integration of heterogeneous applications. The final set depends on the purposes of a solution

More information

Server Sentinel Monitored Server

Server Sentinel Monitored Server Server Sentinel Monitored Server Installation and Reinstallation Guide for Systems Monitoring Third-Party Products Server Sentinel 4.4.3 and Higher April 2007 . unisys imagine it. done. Server Sentinel

More information

Distributed Data Processing (DDP-PPC) TCP/IP Interface COBOL

Distributed Data Processing (DDP-PPC) TCP/IP Interface COBOL !()+ OS 2200 Distributed Data Processing (DDP-PPC) TCP/IP Interface COBOL Programming Guide Copyright ( 1997 Unisys Corporation. All rights reserved. Unisys is a registered trademark of Unisys Corporation.

More information

Client/server is a network architecture that divides functions into client and server

Client/server is a network architecture that divides functions into client and server Page 1 A. Title Client/Server Technology B. Introduction Client/server is a network architecture that divides functions into client and server subsystems, with standard communication methods to facilitate

More information

A standards-based approach to application integration

A standards-based approach to application integration A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist Macnair@us.ibm.com Copyright IBM Corporation 2005. All rights

More information

This paper was presented at the 1996 CAUSE annual conference. It is part of the proceedings of that conference, "Broadening Our Horizons:

This paper was presented at the 1996 CAUSE annual conference. It is part of the proceedings of that conference, Broadening Our Horizons: This paper was presented at the 1996 CAUSE annual conference. It is part of the proceedings of that conference, "Broadening Our Horizons: Information, Services, Technology -- Proceedings of the 1996 CAUSE

More information

An Oracle White Paper May 2011. Oracle Tuxedo: An Enterprise Platform for Dynamic Languages

An Oracle White Paper May 2011. Oracle Tuxedo: An Enterprise Platform for Dynamic Languages An Oracle White Paper May 2011 Oracle Tuxedo: An Enterprise Platform for Dynamic Languages Introduction Dynamic languages, also sometimes known as scripting languages, have been in existence for a long

More information

It is the thinnest layer in the OSI model. At the time the model was formulated, it was not clear that a session layer was needed.

It is the thinnest layer in the OSI model. At the time the model was formulated, it was not clear that a session layer was needed. Session Layer The session layer resides above the transport layer, and provides value added services to the underlying transport layer services. The session layer (along with the presentation layer) add

More information

Server Sentinel Client Workstation

Server Sentinel Client Workstation Server Sentinel Client Workstation Installation and Reinstallation Guide Server Sentinel 4.4.3 and Higher April 2008 . unisys imagine it. done. Server Sentinel Client Workstation Installation and Reinstallation

More information

Informix Embedded SQL

Informix Embedded SQL Informix Embedded SQL TP/XA Programmer s Manual INFORMIX-OnLine Dynamic Server, Version 7.2x INFORMIX-OnLine Workgroup Server, Version 7.2x INFORMIX-OnLine XPS, Version 8.1x INFORMIX-SE, Version 7.2x INFORMIX-Universal

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1.6) E14294-06 November 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include:

More information

Sun Microsystems Inc. Java Transaction Service (JTS)

Sun Microsystems Inc. Java Transaction Service (JTS) Sun Microsystems Inc. Java Transaction Service (JTS) This is a draft specification for Java Transaction Service (JTS). JTS specifies the implementation of a transaction manager which supports the JTA specification

More information

Turning ClearPath MCP Data into Information with Business Information Server. White Paper

Turning ClearPath MCP Data into Information with Business Information Server. White Paper Turning ClearPath MCP Data into Information with Business Information Server White Paper 1 Many Unisys ClearPath MCP Series customers have Enterprise Database Server (DMSII) databases to support a variety

More information

Client/Server Computing Distributed Processing, Client/Server, and Clusters

Client/Server Computing Distributed Processing, Client/Server, and Clusters Client/Server Computing Distributed Processing, Client/Server, and Clusters Chapter 13 Client machines are generally single-user PCs or workstations that provide a highly userfriendly interface to the

More information

Elements of Advanced Java Programming

Elements of Advanced Java Programming Appendix A Elements of Advanced Java Programming Objectives At the end of this appendix, you should be able to: Understand two-tier and three-tier architectures for distributed computing Understand the

More information

White Paper: 5GL RAD Development

White Paper: 5GL RAD Development White Paper: 5GL RAD Development After 2.5 hours of training, subjects reduced their development time by 60-90% A Study By: 326 Market Street Harrisburg, PA 17101 Luis Paris, Ph.D. Associate Professor

More information

Middleware Lou Somers

Middleware Lou Somers Middleware Lou Somers April 18, 2002 1 Contents Overview Definition, goals, requirements Four categories of middleware Transactional, message oriented, procedural, object Middleware examples XML-RPC, SOAP,

More information

Version 14.0. Overview. Business value

Version 14.0. Overview. Business value PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing

More information

Enterprise Application Integration

Enterprise Application Integration Enterprise Integration By William Tse MSc Computer Science Enterprise Integration By the end of this lecturer you will learn What is Enterprise Integration (EAI)? Benefits of Enterprise Integration Barrier

More information

Server Management 2.0

Server Management 2.0 Server Management 2.0 Installation and Configuration Guide Server Management 2.0 and Higher May 2008 . unisys imagine it. done. Server Management 2.0 Installation and Configuration Guide Server Management

More information

Oracle IVR Integrator

Oracle IVR Integrator Oracle IVR Integrator Concepts and Procedures Release 11i for Windows NT July 2001 Part No. A86103-03 1 Understanding Oracle IVR Integrator This topic group provides overviews of the application and its

More information

Chapter 6. CORBA-based Architecture. 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications

Chapter 6. CORBA-based Architecture. 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications Chapter 6. CORBA-based Architecture 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications 1 Chapter 6. CORBA-based Architecture Part 6.1 Introduction to

More information

Chapter 2: Remote Procedure Call (RPC)

Chapter 2: Remote Procedure Call (RPC) Chapter 2: Remote Procedure Call (RPC) Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) alonso@inf.ethz.ch http://www.iks.inf.ethz.ch/ Contents - Chapter 2 - RPC

More information

Service Mediation. The Role of an Enterprise Service Bus in an SOA

Service Mediation. The Role of an Enterprise Service Bus in an SOA Service Mediation The Role of an Enterprise Service Bus in an SOA 2 TABLE OF CONTENTS 1 The Road to Web Services and ESBs...4 2 Enterprise-Class Requirements for an ESB...5 3 Additional Evaluation Criteria...7

More information

Architecture of Transaction Processing Systems

Architecture of Transaction Processing Systems Architecture of Transaction Processing Systems Transaction processing systems are among the largest software systems in existence. They must be built to respond to a wide spectrum of applications, so the

More information

SAN Conceptual and Design Basics

SAN Conceptual and Design Basics TECHNICAL NOTE VMware Infrastructure 3 SAN Conceptual and Design Basics VMware ESX Server can be used in conjunction with a SAN (storage area network), a specialized high speed network that connects computer

More information

Quintet Enterprise Unified Communication Solutions

Quintet Enterprise Unified Communication Solutions White Paper Quintet Enterprise Unified Communication Solutions Product Overview Quintet Enterprise UniVoice Technology, Inc. 1 INTRODUCTION We live and work in a new world rich in communication media telephone,

More information

Sentinel Management Server

Sentinel Management Server Sentinel Management Server Installation, Reinstallation, and Upgrade Guide Server Sentinel 4.4.3 and Higher April 2007 . unisys imagine it. done. Sentinel Management Server Installation, Reinstallation,

More information

Using the Caché SQL Gateway

Using the Caché SQL Gateway Using the Caché SQL Gateway Version 2007.1 04 June 2007 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using the Caché SQL Gateway Caché Version 2007.1 04 June 2007 Copyright

More information

Protocols and Architecture. Protocol Architecture.

Protocols and Architecture. Protocol Architecture. Protocols and Architecture Protocol Architecture. Layered structure of hardware and software to support exchange of data between systems/distributed applications Set of rules for transmission of data between

More information

Oracle Endeca Server. Cluster Guide. Version 7.5.1.1 May 2013

Oracle Endeca Server. Cluster Guide. Version 7.5.1.1 May 2013 Oracle Endeca Server Cluster Guide Version 7.5.1.1 May 2013 Copyright and disclaimer Copyright 2003, 2013, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of

More information

BEA AquaLogic Service Bus and WebSphere MQ in Service-Oriented Architectures

BEA AquaLogic Service Bus and WebSphere MQ in Service-Oriented Architectures BEA White Paper BEA AquaLogic Service Bus and WebSphere MQ in Service-Oriented Architectures Integrating a Clustered BEA AquaLogic Service Bus Domain with a Clustered IBM WebSphere MQ Copyright Copyright

More information

SOFT 437. Software Performance Analysis. Ch 5:Web Applications and Other Distributed Systems

SOFT 437. Software Performance Analysis. Ch 5:Web Applications and Other Distributed Systems SOFT 437 Software Performance Analysis Ch 5:Web Applications and Other Distributed Systems Outline Overview of Web applications, distributed object technologies, and the important considerations for SPE

More information

CONDIS. IT Service Management and CMDB

CONDIS. IT Service Management and CMDB CONDIS IT Service and CMDB 2/17 Table of contents 1. Executive Summary... 3 2. ITIL Overview... 4 2.1 How CONDIS supports ITIL processes... 5 2.1.1 Incident... 5 2.1.2 Problem... 5 2.1.3 Configuration...

More information

Distributed Objects and Components

Distributed Objects and Components Distributed Objects and Components Introduction This essay will identify the differences between objects and components and what it means for a component to be distributed. It will also examine the Java

More information

Working with the Geodatabase Using SQL

Working with the Geodatabase Using SQL An ESRI Technical Paper February 2004 This technical paper is aimed primarily at GIS managers and data administrators who are responsible for the installation, design, and day-to-day management of a geodatabase.

More information

Cloud Data Management Interface (CDMI) The Cloud Storage Standard. Mark Carlson, SNIA TC and Oracle Chair, SNIA Cloud Storage TWG

Cloud Data Management Interface (CDMI) The Cloud Storage Standard. Mark Carlson, SNIA TC and Oracle Chair, SNIA Cloud Storage TWG Cloud Data Management Interface (CDMI) The Cloud Storage Standard Mark Carlson, SNIA TC and Oracle Chair, SNIA Cloud Storage TWG SNIA Legal Notice The material contained in this tutorial is copyrighted

More information

REMOTE DEVELOPMENT OPTION

REMOTE DEVELOPMENT OPTION Leading the Evolution DATA SHEET MICRO FOCUS SERVER EXPRESS TM REMOTE DEVELOPMENT OPTION Executive Overview HIGH PRODUCTIVITY DEVELOPMENT FOR LINUX AND UNIX DEVELOPERS Micro Focus Server Express is the

More information

Cross Platform Software Release Capabilities

Cross Platform Software Release Capabilities Cross Platform Software Release Capabilities Larry Aube ClearPath Portfolio Management ClearPath Briefings 2015 Grove/UK Agenda Data Exchange ClearPath Integration Services ClearPath IDEs 2015 Unisys Corporation.

More information

Done. Imagine it. c Consulting. c Systems Integration. c Outsourcing. c Infrastructure. c Server Technology.

Done. Imagine it. c Consulting. c Systems Integration. c Outsourcing. c Infrastructure. c Server Technology. WHITE PAPER. Model-Driven Application Development with Agile Business Suite Alan Hood Unisys Systems and Technology Agility your survival depends on it. Agile organizations react swiftly to changing market

More information

RS MDM. Integration Guide. Riversand

RS MDM. Integration Guide. Riversand RS MDM 2009 Integration Guide This document provides the details about RS MDMCenter integration module and provides details about the overall architecture and principles of integration with the system.

More information

Server Management Agent for Windows User s Guide. Server Management 2.0 and Higher

Server Management Agent for Windows User s Guide. Server Management 2.0 and Higher Server Management Agent for Windows User s Guide Server Management 2.0 and Higher March 2008 . unisys imagine it. done. Server Management Agent for Windows User s Guide Server Management 2.0 and Higher

More information

High Availability Essentials

High Availability Essentials High Availability Essentials Introduction Ascent Capture s High Availability Support feature consists of a number of independent components that, when deployed in a highly available computer system, result

More information

Exam Name: IBM WebSphere Process Server V6.2,

Exam Name: IBM WebSphere Process Server V6.2, Vendor: IBM Exam Code: 000-375 Exam Name: IBM WebSphere Process Server V6.2, System Administration Version: DEMO 1.A company has an IBM WebSphere Process Server clustered environment running. A system

More information

can I customize my identity management deployment without extensive coding and services?

can I customize my identity management deployment without extensive coding and services? SOLUTION BRIEF Connector Xpress and Policy Xpress Utilities in CA IdentityMinder can I customize my identity management deployment without extensive coding and services? agility made possible You can.

More information

Figure 1: MQSeries enabled TCL application in a heterogamous enterprise environment

Figure 1: MQSeries enabled TCL application in a heterogamous enterprise environment MQSeries Enabled Tcl Application Ping Tong, Senior Consultant at Intelliclaim Inc., ptong@intelliclaim.com Daniel Lyakovetsky, CIO at Intelliclaim Inc., dlyakove@intelliclaim.com Sergey Polyakov, VP Development

More information

What You Need to Know About Transitioning to SOA

What You Need to Know About Transitioning to SOA What You Need to Know About Transitioning to SOA written by: David A. Kelly, ebizq Analyst What You Need to Know About Transitioning to SOA Organizations are increasingly turning to service-oriented architectures

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

Can I customize my identity management deployment without extensive coding and services?

Can I customize my identity management deployment without extensive coding and services? SOLUTION BRIEF CONNECTOR XPRESS AND POLICY XPRESS UTILITIES IN CA IDENTITY MANAGER Can I customize my identity management deployment without extensive coding and services? SOLUTION BRIEF CA DATABASE MANAGEMENT

More information

IT Architecture Review. ISACA Conference Fall 2003

IT Architecture Review. ISACA Conference Fall 2003 IT Architecture Review ISACA Conference Fall 2003 Table of Contents Introduction Business Drivers Overview of Tiered Architecture IT Architecture Review Why review IT architecture How to conduct IT architecture

More information

CACHÉ: FLEXIBLE, HIGH-PERFORMANCE PERSISTENCE FOR JAVA APPLICATIONS

CACHÉ: FLEXIBLE, HIGH-PERFORMANCE PERSISTENCE FOR JAVA APPLICATIONS CACHÉ: FLEXIBLE, HIGH-PERFORMANCE PERSISTENCE FOR JAVA APPLICATIONS A technical white paper by: InterSystems Corporation Introduction Java is indisputably one of the workhorse technologies for application

More information

Inside the Digital Commerce Engine. The architecture and deployment of the Elastic Path Digital Commerce Engine

Inside the Digital Commerce Engine. The architecture and deployment of the Elastic Path Digital Commerce Engine Inside the Digital Commerce Engine The architecture and deployment of the Elastic Path Digital Commerce Engine Contents Executive Summary... 3 Introduction... 4 What is the Digital Commerce Engine?...

More information

Oracle Database Gateways. An Oracle White Paper July 2007

Oracle Database Gateways. An Oracle White Paper July 2007 Oracle Database Gateways An Oracle White Paper July 2007 Oracle Database Gateways Introduction... 3 Connecting Disparate systems... 3 SQL Translations... 4 Data Dictionary Translations... 4 Datatype Translations...

More information

Managing a Fibre Channel Storage Area Network

Managing a Fibre Channel Storage Area Network Managing a Fibre Channel Storage Area Network Storage Network Management Working Group for Fibre Channel (SNMWG-FC) November 20, 1998 Editor: Steven Wilson Abstract This white paper describes the typical

More information

Web Services. Copyright 2011 Srdjan Komazec

Web Services. Copyright 2011 Srdjan Komazec Web Services Middleware Copyright 2011 Srdjan Komazec 1 Where are we? # Title 1 Distributed Information Systems 2 Middleware 3 Web Technologies 4 Web Services 5 Basic Web Service Technologies 6 Web 2.0

More information

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER White Paper EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER Abstract The objective of this white paper is to describe the architecture of and procedure for configuring EMC Documentum xplore

More information

SAP Certified Development Professional - ABAP with SAP NetWeaver 7.0

SAP Certified Development Professional - ABAP with SAP NetWeaver 7.0 SAP EDUCATION SAMPLE QUESTIONS: P_ABAP_70 SAP Certified Development Professional - ABAP with SAP NetWeaver 7.0 Disclaimer: These sample questions are for self-evaluation purposes only and do not appear

More information

unisys ClearPath Enterprise Servers SQL Query Processor for ClearPath MCP Installation and Operations Guide ClearPath MCP 16.0

unisys ClearPath Enterprise Servers SQL Query Processor for ClearPath MCP Installation and Operations Guide ClearPath MCP 16.0 unisys ClearPath Enterprise Servers SQL Query Processor for ClearPath MCP Installation and Operations Guide ClearPath MCP 16.0 April 2014 3850 8206 005 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS

More information

Tier Architectures. Kathleen Durant CS 3200

Tier Architectures. Kathleen Durant CS 3200 Tier Architectures Kathleen Durant CS 3200 1 Supporting Architectures for DBMS Over the years there have been many different hardware configurations to support database systems Some are outdated others

More information

Concepts of Database Management Seventh Edition. Chapter 9 Database Management Approaches

Concepts of Database Management Seventh Edition. Chapter 9 Database Management Approaches Concepts of Database Management Seventh Edition Chapter 9 Database Management Approaches Objectives Describe distributed database management systems (DDBMSs) Discuss client/server systems Examine the ways

More information

Introduction to Service Oriented Architectures (SOA)

Introduction to Service Oriented Architectures (SOA) Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction

More information

Chapter 16 Distributed Processing, Client/Server, and Clusters

Chapter 16 Distributed Processing, Client/Server, and Clusters Operating Systems: Internals and Design Principles Chapter 16 Distributed Processing, Client/Server, and Clusters Eighth Edition By William Stallings Table 16.1 Client/Server Terminology Applications Programming

More information

MD Link Integration. 2013 2015 MDI Solutions Limited

MD Link Integration. 2013 2015 MDI Solutions Limited MD Link Integration 2013 2015 MDI Solutions Limited Table of Contents THE MD LINK INTEGRATION STRATEGY...3 JAVA TECHNOLOGY FOR PORTABILITY, COMPATIBILITY AND SECURITY...3 LEVERAGE XML TECHNOLOGY FOR INDUSTRY

More information

Middleware: Past and Present a Comparison

Middleware: Past and Present a Comparison Middleware: Past and Present a Comparison Hennadiy Pinus ABSTRACT The construction of distributed systems is a difficult task for programmers, which can be simplified with the use of middleware. Middleware

More information

Computer Information Systems (CIS)

Computer Information Systems (CIS) Computer Information Systems (CIS) CIS 113 Spreadsheet Software Applications Prerequisite: CIS 146 or spreadsheet experience This course provides students with hands-on experience using spreadsheet software.

More information

Service Oriented Architectures

Service Oriented Architectures 8 Service Oriented Architectures Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) alonso@inf.ethz.ch http://www.iks.inf.ethz.ch/ The context for SOA A bit of history

More information

Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus

Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus Level: Advanced Jean-Louis Maréchaux (jlmarech@ca.ibm.com), IT Architect, IBM 28 Mar 2006 Today's business

More information

Technical Standard. Distributed Transaction Processing: The XA Specification

Technical Standard. Distributed Transaction Processing: The XA Specification TECHNICAL STANDARD Technical Standard Distributed Transaction Processing: The XA Specification [This page intentionally left blank] X/Open CAE Specification Distributed Transaction Processing: The XA Specification

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting

More information

Distributed Data Management

Distributed Data Management Introduction Distributed Data Management Involves the distribution of data and work among more than one machine in the network. Distributed computing is more broad than canonical client/server, in that

More information

IBM Tivoli Storage Manager Version 7.1.4. Introduction to Data Protection Solutions IBM

IBM Tivoli Storage Manager Version 7.1.4. Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.4 Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.4 Introduction to Data Protection Solutions IBM Note: Before you use this

More information

Chapter 4. Architecture. Table of Contents. J2EE Technology Application Servers. Application Models

Chapter 4. Architecture. Table of Contents. J2EE Technology Application Servers. Application Models Table of Contents J2EE Technology Application Servers... 1 ArchitecturalOverview...2 Server Process Interactions... 4 JDBC Support and Connection Pooling... 4 CMPSupport...5 JMSSupport...6 CORBA ORB Support...

More information

AS/400 System Overview

AS/400 System Overview Chapter 1 AS/400 System Overview 1.1 Major Characteristics of AS/400 1.1.1 High Level of Integration 1.1.2 Object Orientation 1.1.3 Relational and Integrated Database 1.1.4 Data and Program Independence

More information

Dynamic Adaptability of Services in Enterprise JavaBeans Architecture

Dynamic Adaptability of Services in Enterprise JavaBeans Architecture 1. Introduction Dynamic Adaptability of Services in Enterprise JavaBeans Architecture Zahi Jarir *, Pierre-Charles David **, Thomas Ledoux ** zahijarir@ucam.ac.ma, {pcdavid, ledoux}@emn.fr (*) Faculté

More information

Overview of CORBA 11.1 I NTRODUCTION TO CORBA. 11.4 Object services 11.5 New features in CORBA 3.0 11.6 Summary

Overview of CORBA 11.1 I NTRODUCTION TO CORBA. 11.4 Object services 11.5 New features in CORBA 3.0 11.6 Summary C H A P T E R 1 1 Overview of CORBA 11.1 Introduction to CORBA 11.2 CORBA architecture 11.3 Client and object implementations 11.4 Object services 11.5 New features in CORBA 3.0 11.6 Summary In previous

More information

Team Collaboration, Version Management, Audit Trails

Team Collaboration, Version Management, Audit Trails Team Collaboration, Version Management, Audit Trails Best Practices for Successful Project Delivery with VoiceObjects May 2008 www.voiceobjects.com 2 Team Collaboration, Version Management, Audit Trails

More information

Technical Track Session Service-Oriented Architecture

Technical Track Session Service-Oriented Architecture Technical Track Session Service-Oriented Architecture Terry Woods Agenda A little history What is Service-Oriented Architecture? How do you build a Service-Oriented Architecture Solution? What is an Enterprise

More information

Microsoft Dynamics GP. econnect Installation and Administration Guide Release 9.0

Microsoft Dynamics GP. econnect Installation and Administration Guide Release 9.0 Microsoft Dynamics GP econnect Installation and Administration Guide Release 9.0 Copyright Copyright 2006 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the

More information

unisys ClearPath Servers Hadoop Distributed File System(HDFS) Data Transfer Guide Firmware 2.0 and Higher December 2014 8230 6952-000

unisys ClearPath Servers Hadoop Distributed File System(HDFS) Data Transfer Guide Firmware 2.0 and Higher December 2014 8230 6952-000 unisys ClearPath Servers Hadoop Distributed File System(HDFS) Data Transfer Guide Firmware 2.0 and Higher December 2014 8230 6952-000 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product

More information

Network operating systems typically are used to run computers that act as servers. They provide the capabilities required for network operation.

Network operating systems typically are used to run computers that act as servers. They provide the capabilities required for network operation. NETWORK OPERATING SYSTEM Introduction Network operating systems typically are used to run computers that act as servers. They provide the capabilities required for network operation. Network operating

More information

The OSI Model and the TCP/IP Protocol Suite PROTOCOL LAYERS. Hierarchy. Services THE OSI MODEL

The OSI Model and the TCP/IP Protocol Suite PROTOCOL LAYERS. Hierarchy. Services THE OSI MODEL The OSI Model and the TCP/IP Protocol Suite - the OSI model was never fully implemented. - The TCP/IP protocol suite became the dominant commercial architecture because it was used and tested extensively

More information