
Distributed Systems Architecture
A Middleware Approach
- 1st Edition - November 16, 2005
- Imprint: Morgan Kaufmann
- Authors: Arno Puder, Kay Römer, Frank Pilhofer
- Language: English
- Hardback ISBN:9 7 8 - 1 - 5 5 8 6 0 - 6 4 8 - 7
- Paperback ISBN:9 7 8 - 1 - 4 9 3 3 - 0 3 6 0 - 1
- eBook ISBN:9 7 8 - 0 - 0 8 - 0 4 5 4 7 0 - 2
Middleware is the bridge that connects distributed applications across different physical locations, with different hardware platforms, network technologies, operating systems, and… Read more

Purchase options

Institutional subscription on ScienceDirect
Request a sales quoteMiddleware is the bridge that connects distributed applications across different physical locations, with different hardware platforms, network technologies, operating systems, and programming languages. This book describes middleware from two different perspectives: from the viewpoint of the systems programmer and from the viewpoint of the applications programmer. It focuses on the use of open source solutions for creating middleware and the tools for developing distributed applications. The design principles presented are universal and apply to all middleware platforms, including CORBA and Web Services. The authors have created an open-source implementation of CORBA, called MICO, which is freely available on the web. MICO is one of the most successful of all open source projects and is widely used by demanding companies and institutions, and has also been adopted by many in the Linux community.
* Provides a comprehensive look at the architecture and design of middleware—the bridge that connects distributed software applications
* Includes a complete, commercial-quality open source middleware system written in C++
* Describes the theory of the middleware standard CORBA as well as how to implement a design using open source techniques
* Includes a complete, commercial-quality open source middleware system written in C++
* Describes the theory of the middleware standard CORBA as well as how to implement a design using open source techniques
Distributed system architects, software developers, students
- About the Authors
- Preface
- 1 Introduction
- 1.1 Infrastructures For Distributed Applications
- 1.2 Thematic Organization
- 1.3 Target Group
- 1.4 Chapter Overviews
- 1.5 Ancillary Materials
- 2 Basic Concepts
- 2.1 Distributed Systems
- 2.1.1 Characterization
- 2.1.2 Transparency
- 2.1.3 Communication Mechanisms
- 2.1.4 Client/Server Model
- 2.1.5 Failure Semantics
- 2.2 Object Model
- 2.2.1 Characterization
- 2.2.2 Terminology
- 2.3 Middleware
- 2.3.1 Tasks Of A Middleware
- 2.3.2 The Structure Of A Middleware Platform
- 2.3.3 Standardization Of A Middleware
- 2.3.4 Portability And Interoperability
- 2.4 Sample Application
- 2.4.1 The Account Example
- 2.4.2 C++ Implementation
- 2.4.3 Distribution Of Sample Application
- 2.5 Summary
- 2.1 Distributed Systems
- 3 Introduction To CORBA
- 3.1 Object Management Architecture
- 3.2 Overview Of CORBA
- 3.2.1 CORBA Object Model
- 3.2.2 Interface Definition Language
- 3.2.3 IDL-Language Mappings
- 3.2.4 Object Request Broker
- 3.2.5 Invocation And Object Adapters
- 3.2.6 Interoperability
- 3.3 The Creation Process Of A CORBA-Application
- 3.4 Application Development In C++
- 3.4.1 IDL Specification
- 3.4.2 IDL Language Mapping For C++
- 3.4.3 C++ Server Implementation
- 3.4.4 C++ Client Implementation
- 3.5 Compiling And Executing The Application
- 3.5.1 Compiling The Application
- 3.5.2 Executing The Application
- 3.6 Application Development In Java
- 3.6.1 Java Server Implementation
- 3.6.2 Java Client Implementation
- 3.6.3 Compiling And Executing The Java Implementation
- 3.7 The Bootstrapping Problem
- 3.7.1 File-Based Bootstrapping
- 3.7.2 Object Urls
- 3.7.3 Command Line Arguments
- 3.8 Naming Service
- 3.8.1 Overview
- 3.8.2 Name Server Daemon
- 3.8.3 Example
- 3.9 Summary
- 4 ORB
- 4.1 ORB Architecture
- 4.2 Transport Layer
- 4.3 Presentation Layer
- 4.3.1 Value Ranges Of Types
- 4.3.2 Representation Of Type Instances
- 4.3.3 Modeling Of The Presentation Layer
- 4.4 Interoperability Layer
- 4.4.1 Protocol For Remote Operation Invocation
- 4.4.2 Structure Of Protocol Data Units (Pdus)
- 4.4.3 Modeling Of Protocol Data Units
- 4.5 Proxies
- 4.6 Object Services
- 4.6.1 Life Cycle Of An Object
- 4.6.2 Object References
- 4.6.3 Services On The Server Side
- 4.7 Summary
- 5 ORB Design
- 5.1 ORB Functionality
- 5.2 ORB Architectures
- 5.3 Design Of MICO's ORB
- 5.3.1 Invocation Adapter Interface
- 5.3.2 Object Adapter Interface
- 5.3.3 Invocation Table
- 5.3.4 Scheduler
- 5.3.5 Object Generation
- 5.3.6 Bootstrapping
- 5.3.7 Dynamic Extensibility
- 5.4 Summary, Evaluation, And Alternatives
- 6 Interoperability
- 6.1 Model
- 6.2 Inter-ORB Protocols
- 6.2.1 Interoperable Object References (IOR)
- 6.2.2 General Inter-ORB Protocol (GIOP)
- 6.2.3 Environment-Specific Inter-ORB Protocols
- 6.3 Design Of MICO's Interoperability
- 6.3.1 Framework
- 6.3.2 GIOP
- 6.4 Summary, Evaluation, And Alternatives
- 7 Object Adapters
- 7.1 Terminology
- 7.2 Functionality
- 7.2.1 Object Management
- 7.2.2 Servant Management
- 7.2.3 Generation Of Object References
- 7.2.4 Mapping Objects To Servants
- 7.2.5 Execution Of Method Invocations
- 7.3 Examples Of Object Adapters
- 7.3.1 Portable Object Adapter
- 7.3.2 POA Manager
- 7.3.3 Request Processing
- 7.3.4 Persistence
- 7.4 Design Of MICO's POA
- 7.4.1 Object Key Generation
- 7.5 Persistence
- 7.6 POA Mediator
- 7.7 Collocation
- 8 Invocation Adapters
- 8.1 Functionality
- 8.1.1 Representation Of IDL Data Types
- 8.1.2 Type Checking
- 8.2 Dynamic Invocation Interface
- 8.3 Static Invocation Interface
- 8.4 Design Of MICO's DII
- 8.4.1 Compound Data Types
- 8.5 Design Of MICO's SII
- 8.6 Summary
- 8.1 Functionality
- 9 IDL Compiler
- 9.1 Invocation Adapters.
- 9.1.1 Dynamic Vs. Static Invocation Adapters
- 9.1.2 Support Of Static Invocation Adapters
- 9.1.3 MICO's Static Invocation Adapter
- 9.2 Compiler Fundamentals
- 9.2.1 Formal Languages And Grammars
- 9.2.2 Parse Trees
- 9.2.3 Structure Of A Compiler
- 9.3 Abstract Syntax Tree For IDL Specifications
- 9.4 MICO's IDL Compiler
- 9.4.1 Class Structure
- 9.4.2 Front End
- 9.4.3 Back End
- 9.5 Summary, Evaluation, And Alternatives
- 9.1 Invocation Adapters.
- 10 CORBA And Beyond
- 10.1 CORBA Components
- 10.1.1 Component-Based Development
- 10.1.2 The CORBA Component Model
- 10.1.3 An Example Component
- 10.1.4 Implementation Overview
- 10.1.5 Discussion
- 10.2 Web Services
- 10.2.1 Overview Of XML
- 10.2.2 Service Descriptions Through WSDL
- 10.2.3 Server Side Mapping
- 10.2.4 Interoperability Through SOAP
- 10.2.5 Service Lookup Through UDDI
- 10.2.6 CORBA Or Web Services?
- 10.3 Middleware For Ubiquitous Computing
- 10.3.1 Ubiquitous Computing In A Nutshell
- 10.3.2 Middleware Challenges
- 10.3.3 Case Study: Sensor Networks
- 10.3.4 Conclusions
- 10.4 Summary
- 10.1 CORBA Components
- Appendix A MICO Installation
- A.1 Installing MICO On Unix
- A.2 Installing MICO On Windows
- A.3 Road Map
- B MICO Implementation Overview
- B.1 ORB
- B.1.1 ORB Initialization
- B.2 Interface Repository (IR)
- B.3 POA
- B.3.1 MICO Daemon.
- B.3.2 Implementation Repository (IMR)
- B.4 IDL Compiler
- B.5 Compiler And Linker Wrappers
- B.5.1 Examples
- B.1 ORB
- C MICO Implementation Details
- C.1 Path Of An Operation Invocation Through An ORB
- C.1.1 Client Side
- C.1.2 Server Side
- C.2 Integration Of A New Invocation Adapter
- C.3 Integration Of A New Object Adapter
- C.4 Integration Of A New Transport Mechanism
- C.4.1 Xaddress
- C.4.2 Xaddressparser
- C.4.3 Xprofile
- C.4.4 Xprofiledecoder
- C.4.5 Xtransport
- C.4.6 Xtransportserver
- C.4.7 Dispatcher
- C.4.8 Initialization
- C.5 The Structure Of Generated Program Code
- C.1 Path Of An Operation Invocation Through An ORB
- D Sample Application
- D.1 Standalone Application In C++
- D.2 IDL Specification
- D.3 Implementation Of The Server In C++
- D.4 Implementation Of The Client In C++
- D.5 Implementation Of The Server In Java
- D.6 Implementation Of The Client In Java.
- List Of Figures
- Glossary
- Bibliography
- Index
- Edition: 1
- Published: November 16, 2005
- Imprint: Morgan Kaufmann
- No. of pages: 344
- Language: English
- Hardback ISBN: 9781558606487
- Paperback ISBN: 9781493303601
- eBook ISBN: 9780080454702
AP
Arno Puder
Arno Puder received his master's degree in computer science from the University of Kaiserslautern and his Ph.D. from the University of Frankfurt/Main, Germany. After working for Deutsche Telekom AG and AT&T Labs, he is currently a professor of computer science at San Francisco State University. His special interests include distributed systems and wireless sensor networks.
Affiliations and expertise
San Francisco State University, California, U.S.A.KR
Kay Römer
Kay Römer is currently a senior researcher and lecturer at ETH Zurich (Switzerland). He received his Ph.D. in computer science from ETH with a thesis on sensor networks. Kay holds a master's degree in computer science from the University of Frankfurt/Main, Germany. His research interests encompass sensor networks, software infrastructures for ubiquitous computing, and middleware for distributed systems.
Affiliations and expertise
ETH, Zurich (Swiss Federal Institute of Technology), SwitzerlandFP
Frank Pilhofer
Frank Pilhofer received his masters in computer science from the University of Frankfurt/Main, Germany. After completing MICO's CORBA Components implementation, he joined Mercury Computer Systems, where he now works on component-based, real-time data streaming middleware for Software Radio.
Affiliations and expertise
Mercury Computer Systems, Inc., Chelmsford, Massachusetts, U.S.A.Read Distributed Systems Architecture on ScienceDirect