SlideShare uma empresa Scribd logo
1 de 25
CORBA concepts & CORBA
architecture
• CORBA is an abbreviation for Common
Object Request Broker Architecture
• Object Management Group, (OMG) formed
in 1989
• The Common Object Request Broker
Architecture (CORBA) is a standard
defined by the Object Management
Group (OMG) that enables software
components written in multiple
computer languages and running on
multiple computers to work together
(i.e., it supports multiple platforms).
 Focus on integration of systems
and applications across
heterogeneous platforms
 Thus CORBA allows applications
and their objects to communicate
with each other no matter where
they are and or who designed
them!!
• CORBA is just a specification for
creating and using distributed
objects
• CORBA is not a programming
language.
• CORBA is a standard (not a
product!)
• Allows objects to transparently
make requests and receive
responses
6
Components Of CORBA
The main components of CORBA’s RMI
framework are:
1.An interface definition language known
as IDL.
2.An architecture.
3.The General Inter-ORB protocol (GIOP)
defines
• specifies formats for the messages
in a request-reply protocol.
• including messages for enquiring
about the location of an object, for
cancelling requests and for reporting
errors. •
4.The Internet Inter-ORB protocol
(IIOP) defines a standard form for
remote object references.
• IIOP is GIOP implemented in
TCP/IP
• CORBA services - generic services
useful in distributed applications e.g.
Naming Service, Event Service.
CORBA Architecture
• The CORBA architecture is based on
the object model.
• A CORBA-based system is a collection
of objects that isolates the requestors
of services (clients) from the providers
of services(servers) by a well-defined
encapsulating interface.
• CORBA is composed of five major
components: ORB, IDL, dynamic
invocation interface(DII), interface
repositories (IR), and object adapters
(OA).
9
CORBA Architecture
client server
proxy
or dynamic invocation
implementation
repository object
adapter
ORBORB
skeleton
or dynamic skeleton
client
program
interface
repository
Request
Reply
corecorefor A
Servant
A
• The CORBA architecture is designed to allow clients to
invoke methods in CORBA objects
clients and objects can be implemented in a variety
of programming languages
it has the following additional components
• object adapter, implementation repository and
interface repository
ORB core
The role of the ORB core is similar to that of the
communication module
In addition, an ORB core provides an interface that includes
the following:
- operations enabling it to be started and stopped;
- operations to convert between remote object references
and strings;
- operations to provide argument lists for requests using
dynamic invocation.
Dynamic invocation interface
In some applications (e.g. browsers), a client
without the appropriate proxy class may need to
invoke a method in a remote object.
CORBA does not allow classes for proxies to be
downloaded at run time as in Java RMI.
The dynamic invocation interface is CORBA’s
alternative. (we will discuss it later with the
Interface Repository)
Object adapter
–an object adapter bridges the gap between
CORBA objects with IDL interfaces and
the programming language interfaces of the
corresponding servant classes.
–it does the work of the remote reference and
despatcher modules
Skeletons
–skeleton classes (for OO languages) are
generated in the language of the server by an
IDL compiler.
–remote method invocations are dispatched via
the appropriate skeleton to a particular servant,
–the skeleton unmarshals the arguments in
request messages and marshals exceptions and
results in reply messages.
Client stubs/proxies
– these are in the client language.
– an IDL compiler for the client language uses an IDL
interface to generate one of the following:
for object-oriented languages the class of a proxy
for procedural languages a set of stub procedures.
– as before, the client stubs/proxies marshal the
arguments in invocation requests and unmarshal
exceptions and results in replies.
Implementation repository
activates registered servers on demand and locates
running servers
uses the object adapter name to register and
activate servers.
Interface repository
the interface repository provides information
about registered IDL interfaces to clients and
servers that require it.
•
10
CORBA RMI
• CORBA RMI is a multi-language RMI
system.
• The term CORBA object is used to refer
to remote objects.
a CORBA object implements an IDL
interface, has a remote object
reference and its methods can be
invoked remotely.
•
• A CORBA object can be implemented
by a language without classes.
the class concept does not exist in
CORBA.
therefore classes cannot be defined
in CORBA IDL, which means that
instances of classes cannot be
passed as arguments
Object Request Broker (ORB)
• For objects to communicate across
the network, they need a
communication infrastructure named
Object Request Broker (ORB).
• Both client and object implementation
are isolated from the ORB by an IDL
interface.
• Clients see only the object’s interface,
never the implementation.
• To communicate, the request does
not pass directly from client to object
implementation,instead every request
is passed to the client’s local ORB,
which manages it.
Object Request Broker (ORB)
CORBA Objects
• It is important to note that CORBA
objects differ from typical
programming objects in three ways:
• CORBA objects can run on any
platform.
• CORBA objects can be located
anywhere on the network.
• CORBA objects can be written in any
language that has IDL mapping.
CORBA works with interfaces
• All CORBA Objects are encapsulated
• Objects are accessible through interface
only.
• Separation of interfaces and
implementation enables multiple
implementations for one interface
Interface description language
(IDL)
• IDL is a specification language used
to describe a software component's
interface
• IDLs describe an interface in a
language-neutral way, enabling
communication between software
components that do not share a
language.
• for ex., between components written
in C++ and components written in
Java
Interface description language
(IDL)
• IDLs are commonly used in remote
procedure call software.
• In these cases the machines at either
end of the "link" may be using
different operating systems and
computer languages.
• IDLs offer a bridge between the two
different systems.
IDL Compiler
1.Naming Service
-It is a binder that provides methods including
a) rebind for servers to register the remote
object references of CORBA objects by name
(e.g. rebind (path, Object)
b) resolve for clients to look them up by
name.these methods belong to an interface
called NamingContext
2.Transaction service and concurrency control
service
-TS provides flat or nested transactions
-CCS provides locking of CORBA objects
3.Persistent object service:
-for storing the state of CORBA objects in a
passive form and retrieving it
21
•
4)Event Service and Notification Service:
-in ES suppliers and consumers
communicate via an event channel
-NS extends this to allow filtering and
typed events
5)Security service:
-authentication of principals and access
control of CORBA objects with policies
-auditing by servers, facilities for non-
repudiation
6)Trading service:
-allows CORBA objects to be located by
attribute
Advantages of CORBA
• Object Location Transparency:-
The client does not need to know where an object
is physically located. An object can either be
linked into the client, run in a different process on
the same machine, or run in a server on the other
side of the planet.
• Server Transparency:-
The client is, as far as the programming model is
concerned, ignorant of the existence of servers.
The client does not know (and cannot find out)
which server hosts a particular object, and does
not care whether the server is running at the time
the client invokes a request.
Advantages of CORBA
• Language Transparency :-
Client and server can be written in different
languages. A server can be implemented in a
different language without clients being aware
of this.
• Implementation Transparency :-
The client is unaware of how objects are
implemented. A server can use ordinary flat
files as its persistent store today and use an
OO database tomorrow, without clients ever
noticing a difference (other than performance).
Advantages of CORBA
• Architecture Transparency :-
The architectures are hidden from both clients and
servers. A client can communicate with a server
with different alignment restrictions.
• Operating System Transparency:-
Client and server are unaffected by each other's
operating system. In addition, source code does
not change if you need to port the source from one
operating system to another
Advantages of CORBA
• Protocol Transparency :-
Clients and servers do not care about
the data link and transport layer. They
can communicate via token ring,
Ethernet, wireless links, ATM
(Asynchronous Transfer Mode), or any
number of other networking
technologies.

Mais conteúdo relacionado

Mais procurados

Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net frameworkThen Murugeshwari
 
SRS(software requirement specification)
SRS(software requirement specification)SRS(software requirement specification)
SRS(software requirement specification)Akash Kumar Dhameja
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in javaTech_MX
 
CORBA - Introduction and Details
CORBA - Introduction and DetailsCORBA - Introduction and Details
CORBA - Introduction and Detailsdgsdg2websd
 
Chapter 3 servlet & jsp
Chapter 3 servlet & jspChapter 3 servlet & jsp
Chapter 3 servlet & jspJafar Nesargi
 
Architecture of Mobile Computing
Architecture of Mobile ComputingArchitecture of Mobile Computing
Architecture of Mobile ComputingJAINIK PATEL
 
Grasp patterns and its types
Grasp patterns and its typesGrasp patterns and its types
Grasp patterns and its typesSyed Hassan Ali
 
Single pass assembler
Single pass assemblerSingle pass assembler
Single pass assemblerBansari Shah
 
Types of Drivers in JDBC
Types of Drivers in JDBCTypes of Drivers in JDBC
Types of Drivers in JDBCHemant Sharma
 
Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]Ravindra Raju Kolahalam
 
System Programming Unit II
System Programming Unit IISystem Programming Unit II
System Programming Unit IIManoj Patil
 
Consistency protocols
Consistency protocolsConsistency protocols
Consistency protocolsZongYing Lyu
 
Reusibility vs Extensibility in OOAD
Reusibility vs Extensibility in OOADReusibility vs Extensibility in OOAD
Reusibility vs Extensibility in OOADShivani Kapoor
 
Pipes & Filters Architectural Pattern
Pipes & Filters Architectural PatternPipes & Filters Architectural Pattern
Pipes & Filters Architectural PatternFredrik Kivi
 
2. Distributed Systems Hardware & Software concepts
2. Distributed Systems Hardware & Software concepts2. Distributed Systems Hardware & Software concepts
2. Distributed Systems Hardware & Software conceptsPrajakta Rane
 
Character generation techniques
Character generation techniquesCharacter generation techniques
Character generation techniquesMani Kanth
 

Mais procurados (20)

Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net framework
 
Introduction to .NET Framework
Introduction to .NET FrameworkIntroduction to .NET Framework
Introduction to .NET Framework
 
SRS(software requirement specification)
SRS(software requirement specification)SRS(software requirement specification)
SRS(software requirement specification)
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
 
CORBA - Introduction and Details
CORBA - Introduction and DetailsCORBA - Introduction and Details
CORBA - Introduction and Details
 
Chapter 3 servlet & jsp
Chapter 3 servlet & jspChapter 3 servlet & jsp
Chapter 3 servlet & jsp
 
Architecture of Mobile Computing
Architecture of Mobile ComputingArchitecture of Mobile Computing
Architecture of Mobile Computing
 
Crash recovery in database
Crash recovery in databaseCrash recovery in database
Crash recovery in database
 
Grasp patterns and its types
Grasp patterns and its typesGrasp patterns and its types
Grasp patterns and its types
 
Single pass assembler
Single pass assemblerSingle pass assembler
Single pass assembler
 
Types of Drivers in JDBC
Types of Drivers in JDBCTypes of Drivers in JDBC
Types of Drivers in JDBC
 
Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]
 
Java threads
Java threadsJava threads
Java threads
 
System Programming Unit II
System Programming Unit IISystem Programming Unit II
System Programming Unit II
 
Consistency protocols
Consistency protocolsConsistency protocols
Consistency protocols
 
Distributed DBMS - Unit 6 - Query Processing
Distributed DBMS - Unit 6 - Query ProcessingDistributed DBMS - Unit 6 - Query Processing
Distributed DBMS - Unit 6 - Query Processing
 
Reusibility vs Extensibility in OOAD
Reusibility vs Extensibility in OOADReusibility vs Extensibility in OOAD
Reusibility vs Extensibility in OOAD
 
Pipes & Filters Architectural Pattern
Pipes & Filters Architectural PatternPipes & Filters Architectural Pattern
Pipes & Filters Architectural Pattern
 
2. Distributed Systems Hardware & Software concepts
2. Distributed Systems Hardware & Software concepts2. Distributed Systems Hardware & Software concepts
2. Distributed Systems Hardware & Software concepts
 
Character generation techniques
Character generation techniquesCharacter generation techniques
Character generation techniques
 

Semelhante a CORBA

CORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBACORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBAPriyanka Patil
 
85305524 i-t-case-study
85305524 i-t-case-study85305524 i-t-case-study
85305524 i-t-case-studyhomeworkping3
 
82159587 case-study-on-corba
82159587 case-study-on-corba82159587 case-study-on-corba
82159587 case-study-on-corbahomeworkping3
 
Ch-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptxCh-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptxdagilema
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptxKaviya452563
 
corba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxcorba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxAasimAbdul
 
Distributed objects & components of corba
Distributed objects & components of corbaDistributed objects & components of corba
Distributed objects & components of corbaMayuresh Wadekar
 
Distributed systems corba remote connection
Distributed systems corba remote connectionDistributed systems corba remote connection
Distributed systems corba remote connectionMohammedAkramMohiudd
 
corbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdfcorbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdfBesAli1
 
ADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptrani marri
 
Corba and-java
Corba and-javaCorba and-java
Corba and-javaafreen58
 
Distributed computing - november 2006
Distributed computing  - november 2006Distributed computing  - november 2006
Distributed computing - november 2006achraf_ing
 

Semelhante a CORBA (20)

CORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBACORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBA
 
Unit iv
Unit ivUnit iv
Unit iv
 
85305524 i-t-case-study
85305524 i-t-case-study85305524 i-t-case-study
85305524 i-t-case-study
 
82159587 case-study-on-corba
82159587 case-study-on-corba82159587 case-study-on-corba
82159587 case-study-on-corba
 
C O R B A Unit 4
C O R B A    Unit 4C O R B A    Unit 4
C O R B A Unit 4
 
Ch-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptxCh-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptx
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptx
 
corba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxcorba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptx
 
Distributed objects & components of corba
Distributed objects & components of corbaDistributed objects & components of corba
Distributed objects & components of corba
 
Distributed systems corba remote connection
Distributed systems corba remote connectionDistributed systems corba remote connection
Distributed systems corba remote connection
 
Common Object Request Broker Architecture
Common Object Request Broker ArchitectureCommon Object Request Broker Architecture
Common Object Request Broker Architecture
 
MIDELWARE TECH
MIDELWARE TECHMIDELWARE TECH
MIDELWARE TECH
 
corbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdfcorbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdf
 
ADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.ppt
 
Corba and-java
Corba and-javaCorba and-java
Corba and-java
 
6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF
 
19.cobra
19.cobra19.cobra
19.cobra
 
CORBA.ppt
CORBA.pptCORBA.ppt
CORBA.ppt
 
CORBA.ppt
CORBA.pptCORBA.ppt
CORBA.ppt
 
Distributed computing - november 2006
Distributed computing  - november 2006Distributed computing  - november 2006
Distributed computing - november 2006
 

Último

Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm Systemirfanmechengr
 
System Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event SchedulingSystem Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event SchedulingBootNeck1
 
11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdfHafizMudaserAhmad
 
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...Sumanth A
 
BSNL Internship Training presentation.pptx
BSNL Internship Training presentation.pptxBSNL Internship Training presentation.pptx
BSNL Internship Training presentation.pptxNiranjanYadav41
 
Cooling Tower SERD pH drop issue (11 April 2024) .pptx
Cooling Tower SERD pH drop issue (11 April 2024) .pptxCooling Tower SERD pH drop issue (11 April 2024) .pptx
Cooling Tower SERD pH drop issue (11 April 2024) .pptxmamansuratman0253
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptMadan Karki
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Erbil Polytechnic University
 
Katarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School CourseKatarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School Coursebim.edu.pl
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Romil Mishra
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating SystemRashmi Bhat
 
Risk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectRisk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectErbil Polytechnic University
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
DM Pillar Training Manual.ppt will be useful in deploying TPM in project
DM Pillar Training Manual.ppt will be useful in deploying TPM in projectDM Pillar Training Manual.ppt will be useful in deploying TPM in project
DM Pillar Training Manual.ppt will be useful in deploying TPM in projectssuserb6619e
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
home automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadhome automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadaditya806802
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgsaravananr517913
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 

Último (20)

Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm System
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
System Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event SchedulingSystem Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event Scheduling
 
11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf
 
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
 
BSNL Internship Training presentation.pptx
BSNL Internship Training presentation.pptxBSNL Internship Training presentation.pptx
BSNL Internship Training presentation.pptx
 
Cooling Tower SERD pH drop issue (11 April 2024) .pptx
Cooling Tower SERD pH drop issue (11 April 2024) .pptxCooling Tower SERD pH drop issue (11 April 2024) .pptx
Cooling Tower SERD pH drop issue (11 April 2024) .pptx
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.ppt
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
 
Katarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School CourseKatarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School Course
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating System
 
Risk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectRisk Management in Engineering Construction Project
Risk Management in Engineering Construction Project
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
DM Pillar Training Manual.ppt will be useful in deploying TPM in project
DM Pillar Training Manual.ppt will be useful in deploying TPM in projectDM Pillar Training Manual.ppt will be useful in deploying TPM in project
DM Pillar Training Manual.ppt will be useful in deploying TPM in project
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
home automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadhome automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasad
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 

CORBA

  • 1. CORBA concepts & CORBA architecture
  • 2.
  • 3. • CORBA is an abbreviation for Common Object Request Broker Architecture • Object Management Group, (OMG) formed in 1989 • The Common Object Request Broker Architecture (CORBA) is a standard defined by the Object Management Group (OMG) that enables software components written in multiple computer languages and running on multiple computers to work together (i.e., it supports multiple platforms).
  • 4.  Focus on integration of systems and applications across heterogeneous platforms  Thus CORBA allows applications and their objects to communicate with each other no matter where they are and or who designed them!!
  • 5. • CORBA is just a specification for creating and using distributed objects • CORBA is not a programming language. • CORBA is a standard (not a product!) • Allows objects to transparently make requests and receive responses
  • 6. 6 Components Of CORBA The main components of CORBA’s RMI framework are: 1.An interface definition language known as IDL. 2.An architecture. 3.The General Inter-ORB protocol (GIOP) defines • specifies formats for the messages in a request-reply protocol. • including messages for enquiring about the location of an object, for cancelling requests and for reporting errors. •
  • 7. 4.The Internet Inter-ORB protocol (IIOP) defines a standard form for remote object references. • IIOP is GIOP implemented in TCP/IP • CORBA services - generic services useful in distributed applications e.g. Naming Service, Event Service.
  • 8. CORBA Architecture • The CORBA architecture is based on the object model. • A CORBA-based system is a collection of objects that isolates the requestors of services (clients) from the providers of services(servers) by a well-defined encapsulating interface. • CORBA is composed of five major components: ORB, IDL, dynamic invocation interface(DII), interface repositories (IR), and object adapters (OA).
  • 9. 9 CORBA Architecture client server proxy or dynamic invocation implementation repository object adapter ORBORB skeleton or dynamic skeleton client program interface repository Request Reply corecorefor A Servant A • The CORBA architecture is designed to allow clients to invoke methods in CORBA objects clients and objects can be implemented in a variety of programming languages it has the following additional components • object adapter, implementation repository and interface repository ORB core The role of the ORB core is similar to that of the communication module In addition, an ORB core provides an interface that includes the following: - operations enabling it to be started and stopped; - operations to convert between remote object references and strings; - operations to provide argument lists for requests using dynamic invocation. Dynamic invocation interface In some applications (e.g. browsers), a client without the appropriate proxy class may need to invoke a method in a remote object. CORBA does not allow classes for proxies to be downloaded at run time as in Java RMI. The dynamic invocation interface is CORBA’s alternative. (we will discuss it later with the Interface Repository) Object adapter –an object adapter bridges the gap between CORBA objects with IDL interfaces and the programming language interfaces of the corresponding servant classes. –it does the work of the remote reference and despatcher modules Skeletons –skeleton classes (for OO languages) are generated in the language of the server by an IDL compiler. –remote method invocations are dispatched via the appropriate skeleton to a particular servant, –the skeleton unmarshals the arguments in request messages and marshals exceptions and results in reply messages. Client stubs/proxies – these are in the client language. – an IDL compiler for the client language uses an IDL interface to generate one of the following: for object-oriented languages the class of a proxy for procedural languages a set of stub procedures. – as before, the client stubs/proxies marshal the arguments in invocation requests and unmarshal exceptions and results in replies. Implementation repository activates registered servers on demand and locates running servers uses the object adapter name to register and activate servers. Interface repository the interface repository provides information about registered IDL interfaces to clients and servers that require it. •
  • 10. 10 CORBA RMI • CORBA RMI is a multi-language RMI system. • The term CORBA object is used to refer to remote objects. a CORBA object implements an IDL interface, has a remote object reference and its methods can be invoked remotely. •
  • 11. • A CORBA object can be implemented by a language without classes. the class concept does not exist in CORBA. therefore classes cannot be defined in CORBA IDL, which means that instances of classes cannot be passed as arguments
  • 12. Object Request Broker (ORB) • For objects to communicate across the network, they need a communication infrastructure named Object Request Broker (ORB). • Both client and object implementation are isolated from the ORB by an IDL interface.
  • 13. • Clients see only the object’s interface, never the implementation. • To communicate, the request does not pass directly from client to object implementation,instead every request is passed to the client’s local ORB, which manages it.
  • 15. CORBA Objects • It is important to note that CORBA objects differ from typical programming objects in three ways: • CORBA objects can run on any platform. • CORBA objects can be located anywhere on the network. • CORBA objects can be written in any language that has IDL mapping.
  • 16. CORBA works with interfaces • All CORBA Objects are encapsulated • Objects are accessible through interface only. • Separation of interfaces and implementation enables multiple implementations for one interface
  • 17. Interface description language (IDL) • IDL is a specification language used to describe a software component's interface • IDLs describe an interface in a language-neutral way, enabling communication between software components that do not share a language. • for ex., between components written in C++ and components written in Java
  • 18. Interface description language (IDL) • IDLs are commonly used in remote procedure call software. • In these cases the machines at either end of the "link" may be using different operating systems and computer languages. • IDLs offer a bridge between the two different systems.
  • 20. 1.Naming Service -It is a binder that provides methods including a) rebind for servers to register the remote object references of CORBA objects by name (e.g. rebind (path, Object) b) resolve for clients to look them up by name.these methods belong to an interface called NamingContext 2.Transaction service and concurrency control service -TS provides flat or nested transactions -CCS provides locking of CORBA objects 3.Persistent object service: -for storing the state of CORBA objects in a passive form and retrieving it
  • 21. 21 • 4)Event Service and Notification Service: -in ES suppliers and consumers communicate via an event channel -NS extends this to allow filtering and typed events 5)Security service: -authentication of principals and access control of CORBA objects with policies -auditing by servers, facilities for non- repudiation 6)Trading service: -allows CORBA objects to be located by attribute
  • 22. Advantages of CORBA • Object Location Transparency:- The client does not need to know where an object is physically located. An object can either be linked into the client, run in a different process on the same machine, or run in a server on the other side of the planet. • Server Transparency:- The client is, as far as the programming model is concerned, ignorant of the existence of servers. The client does not know (and cannot find out) which server hosts a particular object, and does not care whether the server is running at the time the client invokes a request.
  • 23. Advantages of CORBA • Language Transparency :- Client and server can be written in different languages. A server can be implemented in a different language without clients being aware of this. • Implementation Transparency :- The client is unaware of how objects are implemented. A server can use ordinary flat files as its persistent store today and use an OO database tomorrow, without clients ever noticing a difference (other than performance).
  • 24. Advantages of CORBA • Architecture Transparency :- The architectures are hidden from both clients and servers. A client can communicate with a server with different alignment restrictions. • Operating System Transparency:- Client and server are unaffected by each other's operating system. In addition, source code does not change if you need to port the source from one operating system to another
  • 25. Advantages of CORBA • Protocol Transparency :- Clients and servers do not care about the data link and transport layer. They can communicate via token ring, Ethernet, wireless links, ATM (Asynchronous Transfer Mode), or any number of other networking technologies.