Overview
FrançaisRead this article from a comprehensive knowledge base, updated and supplemented with articles reviewed by scientific committees.
Read the articleAUTHORS
-
Patrick BELLOT: Doctorate in Computer Science - Professor at the École nationale supérieure des Télécommunications
-
Christophe MATIACHOFF: Doctorate from Pierre-et-Marie-Curie University IBM France - e-business Services
INTRODUCTION
It's quite possible to write interesting programs in the Java language without using any of the tools presented here. In fact, to write an application that runs locally on a machine, all you need to know is the language and a few simple packages.
However, as soon as the application needs to access databases or be distributed, it is necessary to be familiar with new tools offered in the Java environment. The aim of this article is to present these different tools and how they should be implemented. Of course, it is not possible to be exhaustive.
Distributed objects owe their success to networks, which have become simpler and faster for the user. It is now possible to make objects located on remote machines "live", and to have them communicate to cooperate in the success of a task whose components we know how to distribute.
Java offers two object distribution mechanisms:
the Java/RMI ("remote method invocation") mechanism is specific to the Java environment. It enables communication only between Java language objects;
the Java/IDL ("interface definition language") mechanism is the Java implementation of a more general, standardized mechanism called CORBA ("common object broker architecture"), enabling communication between Java objects and those defined in other languages.
We explain the particularities of these two mechanisms and give the basics on how to use them.
By the same authors, this treatise also includes an article on the Java language ( ).
Exclusive to subscribers. 97% yet to be discovered!
You do not have access to this resource.
Click here to request your free trial access!
Already subscribed? Log in!
The Ultimate Scientific and Technical Reference
This article is included in
Software technologies and System architectures
This offer includes:
Knowledge Base
Updated and enriched with articles validated by our scientific committees
Services
A set of exclusive tools to complement the resources
Practical Path
Operational and didactic, to guarantee the acquisition of transversal skills
Doc & Quiz
Interactive articles with quizzes, for constructive reading
Distributed Java applications
Bibliography
In Engineering Techniques
Websites
Object Management Group (OMG) http://www.omg.com
Documentation Java http://www.java.sun.com
Exclusive to subscribers. 97% yet to be discovered!
You do not have access to this resource.
Click here to request your free trial access!
Already subscribed? Log in!
The Ultimate Scientific and Technical Reference