SlideShare a Scribd company logo
1 of 30
Distributed System
Sanjivani Rural Education Society’s
Sanjivani College of Engineering, Kopargaon-423603
(An Autonomous Institute Affiliated to Savitribai Phule Pune University, Pune)
NAAC ‘A’ Grade Accredited, ISO 9001:2015 Certified
Department of Information Technology
(NBA Accredited)
Dr. R. D. Chintamani
Asst. Prof.
Unit –II
MIDDLEWARE
3
CORBA
Stands for Common Object Request Broker Architecture.
It is a specification for creating distributed objects and
NOT a programming language.
It promotes design of applications as a set of cooperating
objects
Clients are isolated from servers by interface.
CORBA objects run on any platform, can be located
anywhere on the network and can be written in any
language that has IDL mapping.
4
2-19
CORBA
5
CORBAARCHITECTURE
Object Request Broker is an Object Manager in CORBA.
It is present on the client side as well as server side (allows agents
to act as
On client side the ORB is responsible for
– accepting requests for a remote object
– finding implementation of the object
– accepting client-side reference to the remote object(converted to
a language specific form, e.g., a Java stub object)
– routing client method calls through the object reference to the
object implementation.
6
CORBAARCHITECTURE
On server side the ORB
– lets object servers register new objects
– receives requests from the client ORB
– uses object’s skeleton interface to invoke
object’s activation method
– creates reference for new object and sends it
back to client.
Between the ORBs, Internet Inter-ORB Protocol
is used for communication.
7
CORBA
A CORBA (Common Object Request Broker Architecture)
application is
developed using IDL (Interface Definition Language).
• IDL is used to define interfaces and the Java IDL compiler
generates skeletoncode.
CORBA technology is an integral part of the Java platform. It
consists of an Object Request Broker (ORB), APIs for the RMI
programming model, and APIs for the IDL programming model.
The Java CORBA ORB supports both the RMI and IDL
programming models.
• We use IDL programming model in this example.
8
CORBA
IDL is Interface Definition Language which defines protocol to
access objects.
Stub lives on client and pretends to be remote object
Skeleton lives on server , receives requests from stub, talks to true
remote object and delivers response to stub.
9
CORBA
10
JAVA IDL-USING CORBA FROM JAVA
Java – IDL is a technology for distributed objects -- that is, objects
interacting on different platforms across a network.
Translates IDL concepts into Java Language Constructs.
Java IDL supports distributed objects written entirely in the Java
programming language.
Java IDL enables objects to interact regardless of whether they're
written in the Java programming language or another language
such as C, C++.
This is possible because Java IDL is based on the Common Object
Request Brokerage Architecture (CORBA), an industry-standard
distributed objectmodel.
Each language that supports CORBA has its own IDL mapping--
and as its name implies, Java IDL supports the mapping for Java.
11
JAVA IDL-USING CORBA FROM JAVA
To support interaction between objects in separate programs, Java
IDL provides an Object Request Broker, or ORB.
The ORB is a class library that enables low-level communication
between Java IDL applications and other CORBA-compliant
applications.
On the client side, the application includes a reference for the
remote object. The object reference has a stub method, which is a
stand-in for the method being called remotely.
• The stub is actually wired into the ORB, so that calling it invokes
the ORB's connection capabilities, which forwards the invocation
to the server
12
JAVA IDL-USING CORBA FROM JAVA
13
JAVA IDL-USING CORBA FROM JAVA
On the server side, the ORB uses skeleton code to translate the
remote invocation into a method call on the local object. The
skeleton translates the call and any parameters to their
implementation-specific format and calls the method being
invoked.
When the method returns, the skeleton code transforms results or
errors, and sends them back to the client via the ORBs. Between
the ORBs, communication proceeds by means of IIOP.
14
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
1.Define the remote interface:
Define the interface for the remote object using Interface Definition
Langauge (IDL).
Use IDL instead of the Java language because the idlj compiler
automatically maps from IDL, generating all Java language stub and
skeleton source files, along with the infrastructure code for connecting to
the ORB.
1.1 Writing the IDL file:
• J2SDK v1.3.0 above provides the Application Programming Interface
(API) and Object Request Broker (ORB) needed to enable CORBA-
based distributed object interaction, as well as the idlj compiler.
• The idlj compiler uses the IDL-to-Java mapping to convert IDL
interface definitions to corresponding Java interfaces, classes, and
methods, which an then be used to implement the client and server code.
15
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
1.1.1 Writing Hello.idl
• Create a directory named Hello for this application.
• Create a file named Hello.idl in this directory.
1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as
follows:
• Declaring the CORBA IDL module: When you compile the IDL, the
module statement will generate a package statement in the Java code.
module HelloApp
{
// Subsequent lines of code here.
};
16
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
1.1.1 Writing Hello.idl
• Create a directory named Hello for this application.
• Create a file named Hello.idl in this directory.
1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as
follows:
• Declaring the CORBA IDL module: When you compile the IDL, the
module statement will generate a package statement in the Java code.
module HelloApp
{
// Subsequent lines of code here.
};
17
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
1.1.1 Writing Hello.idl
• Create a directory named Hello for this application.
• Create a file named Hello.idl in this directory.
1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as
follows:
• Declaring the CORBA IDL module: When you compile the IDL, the
module statement will generate a package statement in the Java code.
module HelloApp
{
// Subsequent lines of code here.
};
18
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
Declaring the interface: When you compile the IDL, interface statement
will generate an interface statement in the Java code.
module HelloApp
{ interface Hello
// statement.
};
};
19
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
Declaring the interface: When you compile the IDL, interface statement
will generate an interface statement in the Java code.
module HelloApp
{ interface Hello
// statement.
};
};
20
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as
follows:
• Declaring the operations: Each operation statement in the IDL
generates a corresponding method statement in the generated Java
interface.
• In the file, enter the code for the interface definition(Hello.idl):
module HelloApp
{
interface Hello
{
string sayHello(); // This line is the operation
statement.
};
};
21
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
2. Compile the remote interface: When you run the idlj compiler the
interface definition file, it generates the Java version of the interface, as
well as the class code files for the stubs and skeletons that enable your
applications to hook into the ORB.
2.1. Mapping Hello.idl to Java:
The tool idlj reads IDL files and creates the required Java files. The idlj
compiler defaults to generating only the client-side bindings. If you need
both client-side bindings and server-side skeletons, use the -fall
option when running the idlj compiler.
Enter compiler command on command line prompt having path to the
java/bin directory:
•idlj -fall Hello.idl
If you list the contents of the directory, you will see that six files are
22
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
2.2 Understanding the idlj Compiler Output
• The files generated by the idlj compiler for Hello.idl are:
i.HelloPOA.java : This abstract class is the skeleton, providing basic
CORBA functionality for the server. The server class HelloImpl extends
HelloPOA.
An object adapter is the mechanism that connects a request using an
object reference with the proper code to service that request.
Enter compiler command on command line prompt having path to the
java/bin directory:
ii. _HelloStub.java : This class is the client stub providing CORBA
functionality for the client. It implements the Hello.java interface..
23
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
iii. Hello.java : This interface contains the Java version of IDL
interface.
The Hello.java interface extends org.omg.CORBA.Object, providing
standard CORBA object functionality.
IV. HelloHelper.java : This class provides additional functionality ,
the narrow() method required to cast CORBA object references to
their proper types. The Helper class is responsible for reading and
writing the data type to CORBA streams. The Holder class uses the
methods in the Helper class for reading and writing.:
V. HelloHolder.java: It provides operations for OutputStream and
InputStream. It provides operations for out and inout arguments,
which CORBA allows, but which do not map easily to Java‘s semantics.
24
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
VI. HelloOperations.java : This operations interface contains the
single methods SayHello(). The IDL-to-Java mapping puts all of the
operations defined on the IDL interface into this file..
3.Implement the Server: Once you run the idlj compiler, you can use the
skeletons it generates to put together your server application. In addition
to implementing the methods of the remote interface, the server code
includes a mechanism to start the ORB and wait for invocation from a
remote client.
25
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
3.1 Developing the Hello World Server:
• The example server consists of two classes, the Servant and the
Server. The servant, HelloServant, is the implementation of the
Hello IDL interface; each Hello instance is implemented by a
HelloServant
instance. The servant is a subclass of_HelloImplBase, which is generated
by the idlj compiler from the
example IDL.
• The servant contains one method for each IDL operation, in this
example,
just the sayHello() method. Servant methods are just like ordinary
Java methods; extra code to deal with the ORB, with marshaling
arguments and results, and so on, is provided by the server and the stubs.
26
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
3.1 Developing the Hello World Server
• The server class has the server's main() method, which:
• Creates an ORB instance.
• Creates a servant instance (the implementation of one CORBA Hello
object) and tells the ORB about it.
•
Gets a CORBA object reference for a naming context in which to
register
the new CORBA object.
• Registers the new object in the naming context under the name "Hello“.
• Waits for invocations of the new object
27
IMPLEMENT THE SERVER
The steps in writing the CORBA transient Server:
3.1.1. Creating HelloServer.java
3.1.2. Understanding HelloServer.java
3.1.3. Compiling the Hello World Server
3.1.1 Creating HelloServer.java: Enter the following code for
HelloServer.java in the text file.
28
IMPLEMENT THE SERVER
The steps in writing the CORBA transient Server:
3.1.1. Creating HelloServer.java
3.1.2. Understanding HelloServer.java
3.1.3. Compiling the Hello World Server
3.1.1 Creating HelloServer.java: Enter the following code for
HelloServer.java in the text file.
29
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
3.1 Developing the Hello World Server
• The server class has the server's main() method, which:
• Creates an ORB instance.
• Creates a servant instance (the implementation of one CORBA Hello
object) and tells the ORB about it.
•
Gets a CORBA object reference for a naming context in which to
register
the new CORBA object.
• Registers the new object in the naming context under the name "Hello“.
• Waits for invocations of the new object
30
BUILDING A CORBA DISTRIBUTED APPLICATION
USING JAVA IDL
3.1 Developing the Hello World Server:
• The example server consists of two classes, the Servant and the
Server. The servant, HelloServant, is the implementation of the
Hello IDL interface; each Hello instance is implemented by a
HelloServant
instance. The servant is a subclass of_HelloImplBase, which is generated
by the idlj compiler from the
example IDL.
• The servant contains one method for each IDL operation, in this
example,
just the sayHello() method. Servant methods are just like ordinary
Java methods; extra code to deal with the ORB, with marshaling
arguments and results, and so on, is provided by the server and the stubs.

More Related Content

What's hot (20)

Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategies
 
Component based software engineering
Component based software engineeringComponent based software engineering
Component based software engineering
 
Overview of UML Diagrams
Overview of UML DiagramsOverview of UML Diagrams
Overview of UML Diagrams
 
SQL, Embedded SQL, Dynamic SQL and SQLJ
SQL, Embedded SQL, Dynamic SQL and SQLJSQL, Embedded SQL, Dynamic SQL and SQLJ
SQL, Embedded SQL, Dynamic SQL and SQLJ
 
CORBA - Introduction and Details
CORBA - Introduction and DetailsCORBA - Introduction and Details
CORBA - Introduction and Details
 
Object Oriented Analysis Design using UML
Object Oriented Analysis Design using UMLObject Oriented Analysis Design using UML
Object Oriented Analysis Design using UML
 
Chapter 17 corba
Chapter 17 corbaChapter 17 corba
Chapter 17 corba
 
Object oriented-systems-development-life-cycle ppt
Object oriented-systems-development-life-cycle pptObject oriented-systems-development-life-cycle ppt
Object oriented-systems-development-life-cycle ppt
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
 
Jdbc Ppt
Jdbc PptJdbc Ppt
Jdbc Ppt
 
Mvc architecture
Mvc architectureMvc architecture
Mvc architecture
 
Java Beans
Java BeansJava Beans
Java Beans
 
Design patterns tutorials
Design patterns tutorialsDesign patterns tutorials
Design patterns tutorials
 
Two pass Assembler
Two pass AssemblerTwo pass Assembler
Two pass Assembler
 
Object oriented testing
Object oriented testingObject oriented testing
Object oriented testing
 
Design and Implementation in Software Engineering
Design and Implementation in Software EngineeringDesign and Implementation in Software Engineering
Design and Implementation in Software Engineering
 
object oriented methodologies
object oriented methodologiesobject oriented methodologies
object oriented methodologies
 
Object Oriented Testing
Object Oriented TestingObject Oriented Testing
Object Oriented Testing
 
J2ee
J2eeJ2ee
J2ee
 
Introduction to EJB
Introduction to EJBIntroduction to EJB
Introduction to EJB
 

Similar to CORBA.ppt

Corba and-java
Corba and-javaCorba and-java
Corba and-javaafreen58
 
corbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdfcorbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdfBesAli1
 
85305524 i-t-case-study
85305524 i-t-case-study85305524 i-t-case-study
85305524 i-t-case-studyhomeworkping3
 
Ch-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptxCh-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptxdagilema
 
82159587 case-study-on-corba
82159587 case-study-on-corba82159587 case-study-on-corba
82159587 case-study-on-corbahomeworkping3
 
Common Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBACommon Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBAPeter R. Egli
 
Distributed systems corba remote connection
Distributed systems corba remote connectionDistributed systems corba remote connection
Distributed systems corba remote connectionMohammedAkramMohiudd
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptxKaviya452563
 
ADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptrani marri
 
Kotlin Basics & Introduction to Jetpack Compose.pptx
Kotlin Basics & Introduction to Jetpack Compose.pptxKotlin Basics & Introduction to Jetpack Compose.pptx
Kotlin Basics & Introduction to Jetpack Compose.pptxtakshilkunadia
 
corba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxcorba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxAasimAbdul
 
Session 02 - Elements of Java Language
Session 02 - Elements of Java LanguageSession 02 - Elements of Java Language
Session 02 - Elements of Java LanguagePawanMM
 
Elements of Java Language
Elements of Java Language Elements of Java Language
Elements of Java Language Hitesh-Java
 

Similar to CORBA.ppt (20)

Chapter2
Chapter2Chapter2
Chapter2
 
Corba and-java
Corba and-javaCorba and-java
Corba and-java
 
corbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdfcorbaintroductionandexample-140703005744-phpapp02.pdf
corbaintroductionandexample-140703005744-phpapp02.pdf
 
CORBA.ppt
CORBA.pptCORBA.ppt
CORBA.ppt
 
85305524 i-t-case-study
85305524 i-t-case-study85305524 i-t-case-study
85305524 i-t-case-study
 
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
 
82159587 case-study-on-corba
82159587 case-study-on-corba82159587 case-study-on-corba
82159587 case-study-on-corba
 
Unit iv
Unit ivUnit iv
Unit iv
 
Common Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBACommon Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBA
 
Corba model ppt
Corba model pptCorba model ppt
Corba model ppt
 
Common Object Request Broker Architecture
Common Object Request Broker ArchitectureCommon Object Request Broker Architecture
Common Object Request Broker Architecture
 
Distributed systems corba remote connection
Distributed systems corba remote connectionDistributed systems corba remote connection
Distributed systems corba remote connection
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptx
 
Learning activity 3
Learning activity 3Learning activity 3
Learning activity 3
 
ADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.ppt
 
Kotlin Basics & Introduction to Jetpack Compose.pptx
Kotlin Basics & Introduction to Jetpack Compose.pptxKotlin Basics & Introduction to Jetpack Compose.pptx
Kotlin Basics & Introduction to Jetpack Compose.pptx
 
corba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxcorba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptx
 
Session 02 - Elements of Java Language
Session 02 - Elements of Java LanguageSession 02 - Elements of Java Language
Session 02 - Elements of Java Language
 
Elements of Java Language
Elements of Java Language Elements of Java Language
Elements of Java Language
 

Recently uploaded

Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 

Recently uploaded (20)

Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 

CORBA.ppt

  • 1. Distributed System Sanjivani Rural Education Society’s Sanjivani College of Engineering, Kopargaon-423603 (An Autonomous Institute Affiliated to Savitribai Phule Pune University, Pune) NAAC ‘A’ Grade Accredited, ISO 9001:2015 Certified Department of Information Technology (NBA Accredited) Dr. R. D. Chintamani Asst. Prof.
  • 3. 3 CORBA Stands for Common Object Request Broker Architecture. It is a specification for creating distributed objects and NOT a programming language. It promotes design of applications as a set of cooperating objects Clients are isolated from servers by interface. CORBA objects run on any platform, can be located anywhere on the network and can be written in any language that has IDL mapping.
  • 5. 5 CORBAARCHITECTURE Object Request Broker is an Object Manager in CORBA. It is present on the client side as well as server side (allows agents to act as On client side the ORB is responsible for – accepting requests for a remote object – finding implementation of the object – accepting client-side reference to the remote object(converted to a language specific form, e.g., a Java stub object) – routing client method calls through the object reference to the object implementation.
  • 6. 6 CORBAARCHITECTURE On server side the ORB – lets object servers register new objects – receives requests from the client ORB – uses object’s skeleton interface to invoke object’s activation method – creates reference for new object and sends it back to client. Between the ORBs, Internet Inter-ORB Protocol is used for communication.
  • 7. 7 CORBA A CORBA (Common Object Request Broker Architecture) application is developed using IDL (Interface Definition Language). • IDL is used to define interfaces and the Java IDL compiler generates skeletoncode. CORBA technology is an integral part of the Java platform. It consists of an Object Request Broker (ORB), APIs for the RMI programming model, and APIs for the IDL programming model. The Java CORBA ORB supports both the RMI and IDL programming models. • We use IDL programming model in this example.
  • 8. 8 CORBA IDL is Interface Definition Language which defines protocol to access objects. Stub lives on client and pretends to be remote object Skeleton lives on server , receives requests from stub, talks to true remote object and delivers response to stub.
  • 10. 10 JAVA IDL-USING CORBA FROM JAVA Java – IDL is a technology for distributed objects -- that is, objects interacting on different platforms across a network. Translates IDL concepts into Java Language Constructs. Java IDL supports distributed objects written entirely in the Java programming language. Java IDL enables objects to interact regardless of whether they're written in the Java programming language or another language such as C, C++. This is possible because Java IDL is based on the Common Object Request Brokerage Architecture (CORBA), an industry-standard distributed objectmodel. Each language that supports CORBA has its own IDL mapping-- and as its name implies, Java IDL supports the mapping for Java.
  • 11. 11 JAVA IDL-USING CORBA FROM JAVA To support interaction between objects in separate programs, Java IDL provides an Object Request Broker, or ORB. The ORB is a class library that enables low-level communication between Java IDL applications and other CORBA-compliant applications. On the client side, the application includes a reference for the remote object. The object reference has a stub method, which is a stand-in for the method being called remotely. • The stub is actually wired into the ORB, so that calling it invokes the ORB's connection capabilities, which forwards the invocation to the server
  • 13. 13 JAVA IDL-USING CORBA FROM JAVA On the server side, the ORB uses skeleton code to translate the remote invocation into a method call on the local object. The skeleton translates the call and any parameters to their implementation-specific format and calls the method being invoked. When the method returns, the skeleton code transforms results or errors, and sends them back to the client via the ORBs. Between the ORBs, communication proceeds by means of IIOP.
  • 14. 14 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 1.Define the remote interface: Define the interface for the remote object using Interface Definition Langauge (IDL). Use IDL instead of the Java language because the idlj compiler automatically maps from IDL, generating all Java language stub and skeleton source files, along with the infrastructure code for connecting to the ORB. 1.1 Writing the IDL file: • J2SDK v1.3.0 above provides the Application Programming Interface (API) and Object Request Broker (ORB) needed to enable CORBA- based distributed object interaction, as well as the idlj compiler. • The idlj compiler uses the IDL-to-Java mapping to convert IDL interface definitions to corresponding Java interfaces, classes, and methods, which an then be used to implement the client and server code.
  • 15. 15 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 1.1.1 Writing Hello.idl • Create a directory named Hello for this application. • Create a file named Hello.idl in this directory. 1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as follows: • Declaring the CORBA IDL module: When you compile the IDL, the module statement will generate a package statement in the Java code. module HelloApp { // Subsequent lines of code here. };
  • 16. 16 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 1.1.1 Writing Hello.idl • Create a directory named Hello for this application. • Create a file named Hello.idl in this directory. 1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as follows: • Declaring the CORBA IDL module: When you compile the IDL, the module statement will generate a package statement in the Java code. module HelloApp { // Subsequent lines of code here. };
  • 17. 17 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 1.1.1 Writing Hello.idl • Create a directory named Hello for this application. • Create a file named Hello.idl in this directory. 1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as follows: • Declaring the CORBA IDL module: When you compile the IDL, the module statement will generate a package statement in the Java code. module HelloApp { // Subsequent lines of code here. };
  • 18. 18 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL Declaring the interface: When you compile the IDL, interface statement will generate an interface statement in the Java code. module HelloApp { interface Hello // statement. }; };
  • 19. 19 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL Declaring the interface: When you compile the IDL, interface statement will generate an interface statement in the Java code. module HelloApp { interface Hello // statement. }; };
  • 20. 20 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 1.1.2 Understanding the IDL file : Perform 3 steps to write IDL file as follows: • Declaring the operations: Each operation statement in the IDL generates a corresponding method statement in the generated Java interface. • In the file, enter the code for the interface definition(Hello.idl): module HelloApp { interface Hello { string sayHello(); // This line is the operation statement. }; };
  • 21. 21 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 2. Compile the remote interface: When you run the idlj compiler the interface definition file, it generates the Java version of the interface, as well as the class code files for the stubs and skeletons that enable your applications to hook into the ORB. 2.1. Mapping Hello.idl to Java: The tool idlj reads IDL files and creates the required Java files. The idlj compiler defaults to generating only the client-side bindings. If you need both client-side bindings and server-side skeletons, use the -fall option when running the idlj compiler. Enter compiler command on command line prompt having path to the java/bin directory: •idlj -fall Hello.idl If you list the contents of the directory, you will see that six files are
  • 22. 22 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 2.2 Understanding the idlj Compiler Output • The files generated by the idlj compiler for Hello.idl are: i.HelloPOA.java : This abstract class is the skeleton, providing basic CORBA functionality for the server. The server class HelloImpl extends HelloPOA. An object adapter is the mechanism that connects a request using an object reference with the proper code to service that request. Enter compiler command on command line prompt having path to the java/bin directory: ii. _HelloStub.java : This class is the client stub providing CORBA functionality for the client. It implements the Hello.java interface..
  • 23. 23 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL iii. Hello.java : This interface contains the Java version of IDL interface. The Hello.java interface extends org.omg.CORBA.Object, providing standard CORBA object functionality. IV. HelloHelper.java : This class provides additional functionality , the narrow() method required to cast CORBA object references to their proper types. The Helper class is responsible for reading and writing the data type to CORBA streams. The Holder class uses the methods in the Helper class for reading and writing.: V. HelloHolder.java: It provides operations for OutputStream and InputStream. It provides operations for out and inout arguments, which CORBA allows, but which do not map easily to Java‘s semantics.
  • 24. 24 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL VI. HelloOperations.java : This operations interface contains the single methods SayHello(). The IDL-to-Java mapping puts all of the operations defined on the IDL interface into this file.. 3.Implement the Server: Once you run the idlj compiler, you can use the skeletons it generates to put together your server application. In addition to implementing the methods of the remote interface, the server code includes a mechanism to start the ORB and wait for invocation from a remote client.
  • 25. 25 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 3.1 Developing the Hello World Server: • The example server consists of two classes, the Servant and the Server. The servant, HelloServant, is the implementation of the Hello IDL interface; each Hello instance is implemented by a HelloServant instance. The servant is a subclass of_HelloImplBase, which is generated by the idlj compiler from the example IDL. • The servant contains one method for each IDL operation, in this example, just the sayHello() method. Servant methods are just like ordinary Java methods; extra code to deal with the ORB, with marshaling arguments and results, and so on, is provided by the server and the stubs.
  • 26. 26 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 3.1 Developing the Hello World Server • The server class has the server's main() method, which: • Creates an ORB instance. • Creates a servant instance (the implementation of one CORBA Hello object) and tells the ORB about it. • Gets a CORBA object reference for a naming context in which to register the new CORBA object. • Registers the new object in the naming context under the name "Hello“. • Waits for invocations of the new object
  • 27. 27 IMPLEMENT THE SERVER The steps in writing the CORBA transient Server: 3.1.1. Creating HelloServer.java 3.1.2. Understanding HelloServer.java 3.1.3. Compiling the Hello World Server 3.1.1 Creating HelloServer.java: Enter the following code for HelloServer.java in the text file.
  • 28. 28 IMPLEMENT THE SERVER The steps in writing the CORBA transient Server: 3.1.1. Creating HelloServer.java 3.1.2. Understanding HelloServer.java 3.1.3. Compiling the Hello World Server 3.1.1 Creating HelloServer.java: Enter the following code for HelloServer.java in the text file.
  • 29. 29 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 3.1 Developing the Hello World Server • The server class has the server's main() method, which: • Creates an ORB instance. • Creates a servant instance (the implementation of one CORBA Hello object) and tells the ORB about it. • Gets a CORBA object reference for a naming context in which to register the new CORBA object. • Registers the new object in the naming context under the name "Hello“. • Waits for invocations of the new object
  • 30. 30 BUILDING A CORBA DISTRIBUTED APPLICATION USING JAVA IDL 3.1 Developing the Hello World Server: • The example server consists of two classes, the Servant and the Server. The servant, HelloServant, is the implementation of the Hello IDL interface; each Hello instance is implemented by a HelloServant instance. The servant is a subclass of_HelloImplBase, which is generated by the idlj compiler from the example IDL. • The servant contains one method for each IDL operation, in this example, just the sayHello() method. Servant methods are just like ordinary Java methods; extra code to deal with the ORB, with marshaling arguments and results, and so on, is provided by the server and the stubs.

Editor's Notes

  1. 3
  2. 4
  3. 5
  4. 6
  5. 7
  6. 8
  7. 9
  8. 10
  9. 11
  10. 12
  11. 13
  12. 14
  13. 15
  14. 16
  15. 17
  16. 18
  17. 19
  18. 20
  19. 21
  20. 22
  21. 23
  22. 24
  23. 25
  24. 26
  25. 27
  26. 28
  27. 29
  28. 30