Wonder Club world wonders pyramid logo
×

Advanced CORBA Programming with C++ Book

Advanced CORBA Programming with C++
Be the First to Review this Item at Wonderclub
X
Advanced CORBA Programming with C++, Here is the CORBA book that every C++ software engineer has been waiting for. Advanced CORBA® Programming with C++ provides designers and developers with the tools required to understand CORBA technology at the architectural, design, and sou, Advanced CORBA Programming with C++
out of 5 stars based on 0 reviews
5
0 %
4
0 %
3
0 %
2
0 %
1
0 %
Digital Copy
PDF format
1 available   for $99.99
Original Magazine
Physical Format

Sold Out

  • Advanced CORBA Programming with C++
  • Written by author Michi Henning
  • Published by Pearson Education, 3/3/1999
  • Here is the CORBA book that every C++ software engineer has been waiting for. Advanced CORBA® Programming with C++ provides designers and developers with the tools required to understand CORBA technology at the architectural, design, and sou
Buy Digital  USD$99.99

WonderClub View Cart Button

WonderClub Add to Inventory Button
WonderClub Add to Wishlist Button
WonderClub Add to Collection Button

Book Categories

Authors


Preface.


1. Introduction.

Introduction.

Organization of the Book.

CORBA Version.

Typographical Conventions.

Source Code Examples.

Vendor Dependencies.

Contacting the Authors.

I. INTRODUCTION TO CORBA.

2. An Overview of CORBA.

Introduction.

The Object Management Group.

Concepts and Terminology.

CORBA Features.

Request Invocation.

General CORBA Application Development.

Summary.

3. A Minimal CORBA Application.

Chapter Overview.

Writing and Compiling an IDL Definition.

Writing and Compiling a Server.

Writing and Compiling a Client.

Running Client and Server.

Summary.

II. CORE CORBA.

4. The OMG Interface Definition Language.

Chapter Overview.

Introduction.

Compilation.

Source Files.

Lexical Rules.

Basic IDL Types.

User-Defined Types.

Interfaces and Operations.

User Exceptions.

System Exceptions.

System Exceptions or User Exceptions?

Oneway Operations.

Contexts.

Attributes.

Modules.

Forward Declarations.

Inheritance.

Names and Scoping.

Repository Identifiers and pragma Directives.

Standard Include Files.

Recent IDL Extensions.

Summary.

5. IDL for a Climate Control System.

Chapter Overview.

The Climate Control System.

IDL for the Climate Control System.

The Complete Specification.

6. Basic IDL-to-C++ Mapping.

Chapter Overview.

Introduction.

Mapping for Identifiers.

Mapping for Modules.

The CORBA Module.

Mapping for Basic Types.

Mapping for Constants.

Mapping for Enumerated Types.

Variable-Length Types and _var Types.

The String_var Wrapper Class.

Mapping for Wide Strings.

Mapping for Fixed-Point Types.

Mapping for Structures.

Mapping for Sequences.

Mapping for Arrays.

Mapping for Unions.

Mapping for Recursive Structures and Unions.

Mapping for Type Definitions.

User-Defined Types and _var Classes.

Summary.

7. Client-Side C++ Mapping.

Chapter Overview.

Introduction.

Mapping for Interfaces.

Object Reference Types.

Life Cycle of Object References.

Semantics of _ptr References.

Pseudo-Objects.

ORB Initialization.

Initial References.

Stringified References.

The Object Pseudo-Interface.

_var References.

Mapping for Operations and Attributes.

Parameter Passing Rules.

Mapping for Exceptions.

Mapping for Contexts.

Summary.

8.Developing a Client for the Climate Control System.

Chapter Overview.

Introduction.

Overall Client Structure.

Included Files.

Helper Functions.

The main Program.

The Complete Client Code.

Summary.

9. Server-Side C++ Mapping.

Chapter Overview.

Introduction.

Mapping for Interfaces.

Servant Classes.

Object Incarnation.

Server main.

Parameter Passing Rules.

Raising Exceptions.

Tie Classes.

Summary.

10. Developing a Server for the Climate Control System.

Chapter Overview.

Introduction.

The Instrument Control Protocol API.

Designing the Thermometer Servant Class.

Implementing the Thermometer Servant Class.

Designing the Thermostat Servant Class.

Implementing the Thermostat Servant Class.

Designing the Controller Servant Class.

Implementing the Controller Servant Class.

Implementing the Server Main Function.

The Complete Server Code.

Summary.

11. The Portable Object Adapter.

Chapter Overview.

Introduction.

POA Fundamentals.

POA Policies.

POA Creation.

Servant IDL Type.

Object Creation and Activation.

Reference, ObjectId, and Servant.

Object Deactivation.

Request Flow Control.

ORB Event Handling.

POA Activation.

POA Destruction.

Applying POA Policies.

Summary.

12. Object Life Cycle.

Chapter Overview.

Introduction.

Object Factories.

Destroying, Copying, and Moving Objects.

A Critique of the Life Cycle Service.

The Evictor Pattern.

Garbage Collection of Servants.

Garbage Collection of CORBA Objects.

Summary.

III. CORBA MECHANISMS.

13. GIOP, IIOP, and IORs.

Chapter Overview.

An Overview of GIOP.

Common Data Representation.

GIOP Message Formats.

GIOP Connection Management.

Detecting Disorderly Shutdown.

An Overview of IIOP.

Structure of an IOR.

Bidirectional IIOP.

Summary.

14. Implementation Repositories and Binding.

Chapter Overview.

Binding Modes.

Direct Binding.

Indirect Binding via an Implementation Repository.

Migration, Reliability, Performance, and Scalability.

Activation Modes.

Race Conditions.

Security Considerations.

Summary.

IV. DYNAMIC CORBA.

15. C++ Mapping for Type Any.

Chapter Overview.

Introduction.

Type Any C++ Mapping.

Pitfalls in Type Definitions.

Summary.

16. Type Codes.

Chapter Overview.

Introduction.

The TypeCode Pseudo-Object.

C++ Mapping for the TypeCode Pseudo-Object.

Type Code Comparisons.

Type Code Constants.

Type Code Comparison for Type Any.

Creating Type Codes Dynamically.

Summary.

17. Type DynAny.

Chapter Overview.

Introduction.

The DynAny Interface.

C++ Mapping for the DynAny Pseudo-Object.

Using DynAny for Generic Display.

Obtaining Type Information.

Summary.

V. CORBASERVICES.

18. The OMG Naming Service.

Chapter Overview.

Introduction.

Basic Concepts.

Structure of the Naming Service IDL.

Semantics of Names.

Naming Context IDL.

Iterators.

Pitfalls in the Naming Service.

The Names Library.

Naming Service Tools.

What to Advertise.

When to Advertise.

Federated Naming.

Adding Naming to the Climate Control System.

Summary.

19. The OMG Trading Service.

Chapter Overview.

Introduction.

Trading Concepts and Terminology.

IDL Overview.

The Service Type Repository.

The Trader Interfaces.

Exporting Service Offers.

Withdrawing Service Offers.

Modifying Service Offers.

The Trader Constraint Language.

Importing Service Offers.

Bulk Withdrawal.

The Admin Interface.

Inspecting Service Offers.

Exporting Dynamic Properties.

Trader Federation.

Trader Tools.

Architectural Considerations.

What to Advertise.

Avoiding Duplicate Service Offers.

Adding Trading to the Climate Control System.

Summary.

20. The OMG Event Service.

Chapter Overview.

Introduction.

Distributed Callbacks.

Event Service Basics.

Event Service Interfaces.

Implementing Consumers and Suppliers.

Choosing an Event Model.

Event Service Limitations.

Summary.

VI. POWER CORBA.

21. Multithreaded Applications.

Chapter Overview.

Introduction.

Motivation for Multithreaded Programs.

Fundamentals of Multithreaded Servers.

Multithreading Strategies.

Implementing a Multithreaded Server.

Servant Activators and the Evictor Pattern.

Summary.

22. Performance, Scalability, and Maintainability.

Chapter Overview.

Introduction.

Reducing Messaging Overhead.

Optimizing Server Implementations.

Federating Services.

Improving Physical Design.

Summary.

Appendix A: Source Code for the ICP Simulator.

Overview.

Transient Simulator Code.

Persistent Simulator Code.

Appendix B: CORBA Resources.

World Wide Web.

Newsgroups.

Mailing Lists.

Magazines.

Bibliography.
Index. 0201379279T10252001


Login

  |  

Complaints

  |  

Blog

  |  

Games

  |  

Digital Media

  |  

Souls

  |  

Obituary

  |  

Contact Us

  |  

FAQ

CAN'T FIND WHAT YOU'RE LOOKING FOR? CLICK HERE!!!

X
WonderClub Home

This item is in your Wish List

Advanced CORBA Programming with C++, Here is the CORBA book that every C++ software engineer has been waiting for. <i>Advanced CORBA® Programming with C++</i> provides designers and developers with the tools required to understand CORBA technology at the architectural, design, and sou, Advanced CORBA Programming with C++

X
WonderClub Home

This item is in your Collection

Advanced CORBA Programming with C++, Here is the CORBA book that every C++ software engineer has been waiting for. <i>Advanced CORBA® Programming with C++</i> provides designers and developers with the tools required to understand CORBA technology at the architectural, design, and sou, Advanced CORBA Programming with C++

Advanced CORBA Programming with C++

X
WonderClub Home

This Item is in Your Inventory

Advanced CORBA Programming with C++, Here is the CORBA book that every C++ software engineer has been waiting for. <i>Advanced CORBA® Programming with C++</i> provides designers and developers with the tools required to understand CORBA technology at the architectural, design, and sou, Advanced CORBA Programming with C++

Advanced CORBA Programming with C++

WonderClub Home

You must be logged in to review the products

E-mail address:

Password: