SlideShare a Scribd company logo
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

Pressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelsPressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelssaurabhshertukde
 
Advanced Structural Modeling
Advanced Structural ModelingAdvanced Structural Modeling
Advanced Structural Modeling
AMITJain879
 
Distributed objects & components of corba
Distributed objects & components of corbaDistributed objects & components of corba
Distributed objects & components of corbaMayuresh Wadekar
 
Adbms 17 object query language
Adbms 17 object query languageAdbms 17 object query language
Adbms 17 object query language
Vaibhav Khanna
 
enterprise java bean
enterprise java beanenterprise java bean
enterprise java bean
Jitender Singh Lodhi
 
Software quality assurance activites
Software quality assurance activitesSoftware quality assurance activites
Software quality assurance activites
Golu Gupta
 
Design patterns
Design patternsDesign patterns
Design patterns
abhisheksagi
 
Object Oriented Testing
Object Oriented TestingObject Oriented Testing
Object Oriented Testing
AMITJain879
 
Object oriented software engineering concepts
Object oriented software engineering conceptsObject oriented software engineering concepts
Object oriented software engineering conceptsKomal Singh
 
Object model
Object modelObject model
Object model
James Wong
 
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 pptKunal Kishor Nirala
 
Remote Method Invocation
Remote Method InvocationRemote Method Invocation
Remote Method Invocation
Paul Pajo
 
User Interface Analysis and Design
User Interface Analysis and DesignUser Interface Analysis and Design
User Interface Analysis and Design
Saqib Raza
 
Introduction to EJB
Introduction to EJBIntroduction to EJB
Introduction to EJB
Return on Intelligence
 
Object Oriented Analysis Design using UML
Object Oriented Analysis Design using UMLObject Oriented Analysis Design using UML
Object Oriented Analysis Design using UML
Ajit Nayak
 
object oriented methodologies
object oriented methodologiesobject oriented methodologies
object oriented methodologies
Amith Tiwari
 
Introduction to Design Pattern
Introduction to Design  PatternIntroduction to Design  Pattern
Introduction to Design Pattern
Sanae BEKKAR
 
Ds objects and models
Ds objects and modelsDs objects and models
Ds objects and modelsMayank Jain
 

What's hot (20)

Pressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelsPressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-models
 
Advanced Structural Modeling
Advanced Structural ModelingAdvanced Structural Modeling
Advanced Structural Modeling
 
Distributed objects & components of corba
Distributed objects & components of corbaDistributed objects & components of corba
Distributed objects & components of corba
 
Adbms 17 object query language
Adbms 17 object query languageAdbms 17 object query language
Adbms 17 object query language
 
enterprise java bean
enterprise java beanenterprise java bean
enterprise java bean
 
Software quality assurance activites
Software quality assurance activitesSoftware quality assurance activites
Software quality assurance activites
 
Design patterns
Design patternsDesign patterns
Design patterns
 
Object Oriented Testing
Object Oriented TestingObject Oriented Testing
Object Oriented Testing
 
Object oriented software engineering concepts
Object oriented software engineering conceptsObject oriented software engineering concepts
Object oriented software engineering concepts
 
Stepwise planning
Stepwise planningStepwise planning
Stepwise planning
 
Object model
Object modelObject model
Object model
 
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
 
Remote Method Invocation
Remote Method InvocationRemote Method Invocation
Remote Method Invocation
 
User Interface Analysis and Design
User Interface Analysis and DesignUser Interface Analysis and Design
User Interface Analysis and Design
 
Introduction to EJB
Introduction to EJBIntroduction to EJB
Introduction to EJB
 
Object Oriented Analysis Design using UML
Object Oriented Analysis Design using UMLObject Oriented Analysis Design using UML
Object Oriented Analysis Design using UML
 
object oriented methodologies
object oriented methodologiesobject oriented methodologies
object oriented methodologies
 
Introduction to Design Pattern
Introduction to Design  PatternIntroduction to Design  Pattern
Introduction to Design Pattern
 
Model View Controller (MVC)
Model View Controller (MVC)Model View Controller (MVC)
Model View Controller (MVC)
 
Ds objects and models
Ds objects and modelsDs objects and models
Ds objects and models
 

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.pdf
BesAli1
 
CORBA.ppt
CORBA.pptCORBA.ppt
CORBA.ppt
ssuser4fd4ff3
 
85305524 i-t-case-study
85305524 i-t-case-study85305524 i-t-case-study
85305524 i-t-case-study
homeworkping3
 
Ch-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptxCh-4 Middleware Architectures.pptx
Ch-4 Middleware Architectures.pptx
dagilema
 
Common Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBACommon Object Request Broker Architecture - CORBA
Common Object Request Broker Architecture - CORBA
Peter R. Egli
 
Common Object Request Broker Architecture
Common Object Request Broker ArchitectureCommon Object Request Broker Architecture
Common Object Request Broker Architecture
OECLIB Odisha Electronics Control Library
 
Distributed systems corba remote connection
Distributed systems corba remote connectionDistributed systems corba remote connection
Distributed systems corba remote connection
MohammedAkramMohiudd
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptx
Kaviya452563
 
Learning activity 3
Learning activity 3Learning activity 3
Learning activity 3
Aileen Banaguas
 
ADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.pptADVANCED JAVA MODULE III & IV.ppt
ADVANCED JAVA MODULE III & IV.ppt
rani 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.pptx
takshilkunadia
 
corba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptxcorba-151024114450-lva1-app6891.pptx
corba-151024114450-lva1-app6891.pptx
AasimAbdul
 
Session 02 - Elements of Java Language
Session 02 - Elements of Java LanguageSession 02 - Elements of Java Language
Session 02 - Elements of Java Language
PawanMM
 
Elements of Java Language
Elements of Java Language Elements of Java Language
Elements of Java Language
Hitesh-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
Dr Sandeep Kumar Poonia
 

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
 
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
 
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
 

Recently uploaded

Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
MuhammadTufail242431
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
Vaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdfVaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdf
Kamal Acharya
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
Kamal Acharya
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 

Recently uploaded (20)

Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
Vaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdfVaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdf
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 

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