1 Distributed Objects Naim R. El-Far, PhD Candidate TA for SEG3202 Software Design and Architecture with N. El- Kadri (Summer 2005) Tutorial 3 of 4 – 10/6/2005.

Slides:



Advertisements
Similar presentations
Message Passing Vs Distributed Objects
Advertisements

Remote Method Invocation (RMI) Mixing RMI and sockets
Copyright © 2001 Qusay H. Mahmoud RMI – Remote Method Invocation Introduction What is RMI? RMI System Architecture How does RMI work? Distributed Garbage.
15-May-15 RMI Remote Method Invocation. 2 “The network is the computer” Consider the following program organization: If the network is the computer, we.
Remote Method Invocation in Java Bennie Lewis EEL 6897.
Advanced Programming Rabie A. Ramadan Lecture 4. A Simple Use of Java Remote Method Invocation (RMI) 2.
Java Remote Method Invocation (RMI) In Java we implement object systems: O1O2 O3 thread 1thread 2 execution scheme JVM 1JVM 2 distribution scheme.
Java Remote Object Invocation (RMI) Overview of RMI Java RMI allowed programmer to execute remote function class using the same semantics as local functions.
Remote Method Invocation
Remote Object Invocation Tran, Van Hoai Department of Systems & Networking Faculty of Computer Science & Engineering HCMC University of Technology.
Remote Method Invocation Chin-Chih Chang. Java Remote Object Invocation In Java, the object is serialized before being passed as a parameter to an RMI.
EEC-681/781 Distributed Computing Systems Lecture 5 Wenbing Zhao Department of Electrical and Computer Engineering Cleveland State University
Introduction to Remote Method Invocation (RMI)
Java Remote Object Invocation (RMI) Overview of RMI Java RMI allowed programmer to execute remote function class using the same semantics as local functions.
Communication in Distributed Systems –Part 2
Lesson 3 Remote Method Invocation (RMI) Mixing RMI and sockets Rethinking out tic-tac-toe game.
RMI Components java.rmi: client-side RMI classes, interfaces, and exceptions java.rmi.server: server-side RMI classes, interfaces, and exceptions java.rmi.registry:
1 Java Programming II Java Network II (Distributed Objects in Java)
Introduction to J2EE Architecture Portions by Kunal Mehta.
CS 584 Lecture 18 l Assignment » Glenda assignment extended to the Java RMI Deadline » No Java RMI Assignment l Test » Friday, Saturday, Monday.
15 - RMI. Java RMI Architecture Example Deployment RMI is a part of J2SE (standard edition), but is used by J2EE) A J2EE server is not nessesary for using.
1 Java RMI G53ACC Chris Greenhalgh. 2 Contents l Java RMI overview l A Java RMI example –Overview –Walk-through l Implementation notes –Argument passing.
Spring/2002 Distributed Software Engineering C:\unocourses\4350\slides\DefiningThreads 1 RMI.
RMI remote method invocation. Traditional network programming The client program sends data to the server in some intermediary format and the server has.
Tanenbaum & Van Steen, Distributed Systems: Principles and Paradigms, 2e, (c) 2007 Prentice-Hall, Inc. All rights reserved TDTS04 Föreläsning.
RMI Remote Method Invocation Distributed Object-based System and RPC Together 2-Jun-16.
Java Remote Object Invocation (RMI) Overview of RMI Java RMI allowed programmer to execute remote function class using the same semantics as local functions.
 Remote Method Invocation  A true distributed computing application interface for Java, written to provide easy access to objects existing on remote.
Copyright 2007 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Introduction to Spring Remoting Simplifying.
Java Programming: Advanced Topics 1 Networking Programming Chapter 11.
Fall 2007cs4251 Distributed Computing Umar Kalim Dept. of Communication Systems Engineering 17/10/2007.
Java Remote Method Invocation (RMI) Overview of RMI Java RMI allowed programmer to execute remote function class using the same semantics as local functions.
© FPT SOFTWARE – TRAINING MATERIAL – Internal use 04e-BM/NS/HDCV/FSOFT v2/3 JSP Application Models.
Introduction to EJB. What is an EJB ?  An enterprise java bean is a server-side component that encapsulates the business logic of an application. By.
 Java RMI Distributed Systems IT332. Outline  Introduction to RMI  RMI Architecture  RMI Programming and a Sample Example:  Server-Side RMI programming.
Remote Method Invocation A Client Server Approach.
Enterprise JavaBeans: Fundamentals. EJB Fundamentals(c)CDAC(Formerly NCST)2 Contents Introduction Technology Overview EJB Architecture EJB Specification.
UMBC Distributed Computing with Objects RMI/Corba CMSC 432 Shon Vick.
Remote Method Invocation RMI architecture stubs and skeletons for remote services RMI server and client in Java Creating an RMI Application step-by- step.
Java RMI. RMI Any object whose methods can be invoked from another Java VM is called a remote object.
Khoa CNTT 1/37 PHẠM VĂN TÍNH   Java RMI (Remote Method Invocation)
1 Lecture 15 Remote Method Invocation Instructors: Fu-Chiung Cheng ( 鄭福炯 ) Associate Professor Computer Science & Engineering Tatung Institute of Technology.
CSC 480 Software Engineering Lab 6 – RMI Nov 8, 2002.
Netprog Java RMI1 Remote Method Invocation.
RMI1 Remote Method Invocation Adapted from “Core Java 2” by Cay Horstmann.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 29 Remote Method.
Topic 4: Distributed Objects Dr. Ayman Srour Faculty of Applied Engineering and Urban Planning University of Palestine.
Distributed Web Systems Distributed Objects and Remote Method Invocation Lecturer Department University.
January 26, Ann Wollrath Copyright 1999 Sun Microsystems, Inc., all rights reserved. Java ™ RMI Overview Ann Wollrath Senior Staff Engineer Sun Microsystems,
Java Distributed Computing
Java Distributed Computing
Java Remote Method Invocation (RMI)
Remote Method Invocation
What is RMI? Remote Method Invocation
Introduction to J2EE Architecture
Remote Method Invocation
Network and Distributed Programming in Java
Inventory of Distributed Computing Concepts and Web services
Creating a Distributed System with RMI
Chapter 40 Remote Method Invocation
Lecture 4: RPC Remote Procedure Call CDK: Chapter 5
Creating a Distributed System with RMI
Remote Method Invocation
Creating a Distributed System with RMI
Chapter 46 Remote Method Invocation
Chapter 46 Remote Method Invocation
Java Remote Method Invocation
Creating a Distributed System with RMI
Java Chapter 5 (Estifanos Tilahun Mihret--Tech with Estif)
Presentation transcript:

1 Distributed Objects Naim R. El-Far, PhD Candidate TA for SEG3202 Software Design and Architecture with N. El- Kadri (Summer 2005) Tutorial 3 of 4 – 10/6/2005

2 About this Material Some of the slides in today ’ s presentation are based on slides by Dr. J. S. Chase of the Duke University ( Dr. J. Ng of the University of Hong Kong ( and public domain slides from Rensselaer Polytechnic Institute (

3 Outline of Today’s Presentation A look at distributed objects Java Remote Method Invocation (RMI) Java 2 Enterprise Edition (J2EE)

4 What’s in a Name? Distributed Objects: Software modules (objects) that are designed to work together but reside in multiple computer systems throughout an organization. A program in one machine sends a message to an object in a remote machine to perform some processing. The results are sent back to the local machine.

5 “The Network is the Computer” SomeClass AnotherClass method call returned object computer 1computer 2

6 What exactly do we mean by “objects”? Objects are units of data with the following properties: –typed and self-contained Each object is an instance of a type that defines a set of methods (signatures) that can be invoked to operate on the object. –encapsulated The only way to operate on an object is through its methods; the internal representation/implementation is hidden from view. –dynamically allocated/destroyed Objects are created as needed and destroyed when no longer needed, i.e., they exist outside of any program scope. –uniquely referenced Each object is uniquely identified during its existence by a name/OID/reference/pointer that can be held/passed/stored/shared.

7 Why are objects useful? The properties of objects make them useful as a basis for defining persistence, protection, and distribution. –Objects are self-contained and independent. Objects are a useful granularity for persistence, caching, location, replication, and/or access control. –Objects are self-describing. Object methods are dynamically bound, so programs can import and operate on objects found in shared or persistent storage. –Objects are abstract and encapsulated. It is easy to control object access by verifying that all clients invoke the object ’ s methods through a legal reference. Invocation is syntactically and semantically independent of an object ’ s location or implementation.

8 Distributing Objects “ Trick ” : Extend the object name space outside of a process and across a distributed system. Extend the object name space across secondary storage. Define RPC services as objects (namespacing, wrapping). Make object references unforgeable and reject invocation attempts with invalid references

9 Issues Vital to Distributed Object Systems 1. Can we use distributed objects as a basis for interoperability among software modules written in different languages? 2. Can objects interact across systems with different data formats? 3. Can objects interact securely across mutually distrusting nodes and/or object infrastructures by different vendors? 4. How can we find objects in the presence of node failures? 5. What should we do about pending activities in failed nodes/objects? 6. How can we recover object state after failures? 7. Can we safely execute object invocations from nodes with intermittent connectivity? 8. What about long-term storage of objects, and invocation of stored objects that are not currently active?

10 Distributed Object Technologies 1. Remote Method Invocation (RMI) API and architecture for distributed Java objects 2. Microsoft Component Object Model (COM/DCOM) binary standard for distributed objects for Windows platforms 3. CORBA (Common Object Request Broker Architecture) platform and location transparency for sharing well-defined objects across a distributed computing platform 4. Enterprise Java Beans (EJB) CORBA-compliant distributed objects for Java, built using RMI 5. Web services and SOAP protocols and standards used for exchanging data between applications

11

12 Introduction to Java RMI Java RMI allowed programmer to execute remote function class using the same semantics as local functions calls. Local Machine (Client) SampleServer remoteObject; int s; … s = remoteObject.sum(1,2); System.out.println(s); Remote Machine (Server) public int sum(int a,int b) { return a + b; } 1,2 3

13 The General RMI Architecture Local/Remote machines Registry Skeleton Stub

14 The Stub and Skeleton A client invokes a remote method, the call is first forwarded to stub. The stub is responsible for sending the remote call over to the server-side skeleton The stub opening a socket to the remote server, marshaling (encoding in standard, independent format) the object parameters and forwarding the data stream to the skeleton. A skeleton contains a method that receives the remote calls, unmarshals the parameters, and invokes the actual remote object implementation.

15 Steps for Developing an RMI System 1. Define the remote interface 2. Develop the remote object by implementing the remote interface 3. Develop the client program 4. Compile the Java source files 5. Generate the client stubs and server skeletons 6. Start the RMI registry 7. Start the remote server objects 8. Run the client

16 Step 1: Defining the Remote Interface To create an RMI application, the first step is the defining of a remote interface between the client and server objects. /* SampleServer.java */ import java.rmi.*; public interface SampleServer extends Remote { public int sum(int a,int b) throws RemoteException; }

17 Step 2: Develop the Remote Object and its Interface The server is a simple unicast remote server. Create server by extending java.rmi.server.UnicastRemoteObject. /* SampleServerImpl.java */ import java.rmi.*; import java.rmi.server.*; import java.rmi.registry.*; public class SampleServerImpl extends UnicastRemoteObject implements SampleServer { SampleServerImpl() throws RemoteException { super(); } …

18 Step 2: Develop the remote object and its interface Implement the remote methods /* SampleServerImpl.java */ … public int sum(int a,int b) throws RemoteException { return a + b; }

19 Step 2: Develop the remote object and its interface /* SampleServerImpl.java */ public static void main(String args[]) { try { //set the security manager System.setSecurityManager(new RMISecurityManager()); //create a local instance of the object SampleServerImpl Server = new SampleServerImpl(); //put the local instance in the registry Naming.rebind("SAMPLE-SERVER", Server); System.out.println("Server waiting....."); } catch (java.net.MalformedURLException me) { System.out.println("Malformed URL: " + me.toString()); } catch (RemoteException re) { System.out.println("Remote exception: " + re.toString()); } }

20 Step 3: Develop the client program In order for the client object to invoke methods on the server, it must first look up the name of server in the registry. You use the java.rmi.Naming class to lookup the server name. The server name is specified as URL in the form (rmi://host:port/name ) Default RMI port is The name specified in the URL must exactly match the name that the server has bound to the registry. In this example, the name is “ SAMPLE-SERVER ” The remote method invocation is programmed using the remote interface name (remoteObject) as prefix and the remote method name (sum) as suffix.

21 Step 3: Develop the client program import java.rmi.*; import java.rmi.server.*; public class SampleClient { public static void main(String[] args) { // set the security manager for the client System.setSecurityManager(new RMISecurityManager()); //get the remote object from the registry try { System.out.println("Security Manager loaded"); String url = "//localhost/SAMPLE-SERVER"; SampleServer remoteObject = (SampleServer)Naming.lookup(url); System.out.println("Got remote object"); System.out.println(" = " + remoteObject.sum(1,2) ); } catch (RemoteException exc) { System.out.println("Error in lookup: " + exc.toString()); } catch (java.net.MalformedURLException exc) { System.out.println("Malformed URL: " + exc.toString()); } catch (java.rmi.NotBoundException exc) { System.out.println("NotBound: " + exc.toString()); }

22 Step 4 & 5: Compile the Java source files & Generate the client stubs and server skeletons Once the interface is completed, you need to generate stubs and skeleton code. The RMI system provides an RMI compiler (rmic) that takes your generated interface class and procedures stub code on its self. javac SampleServer.java javac SampleServerImpl.java rmic SampleServerImpl javac SampleClient.java

23 Step 6: Start the RMI registry RMI Registry must be started manually. The rmiregistry us uses port 1099 by default. You can also bind rmiregistry to a different port by indicating the new port number as : rmiregistry rmiregistry (Unix) start rmiregistry (Windows)

24 Steps 7 & 8: Start the remote server objects & Run the client Once the Registry is started, start the server. Set the security policy java – Djava.security.policy=policy.all SampleServerImpl java – Djava.security.policy=policy.all SampleClient More at

25

26 External Application Java Technologies J2EE Framework

27 J2EE Container Component Based Architecture Applications are built from components –Java class files –Configuration files (usually XML) –Data files (html, images, directories, … ) Components are packaged into archives for deployment –jar : Java Application Resource –war : Web Application Resource –ear : Enterprise Application Resource

28 N-tier application View application server as a data store Leverage data abstraction Today

29 N-Tier Application

30 N-Tier Application OVER LDAP

31 N-Tier Application

32 N-Tier Application

33 N-Tier Application

34 N-Tier Complexity

35 Business Logic

36 Business Logic data PROCESSPROCESS OUTPUTOUTPUT INPUTINPUT

37 N-Tier Complexity

38 N-Tier Complexity

39 N-Tier Complexity

40 N-Tier Complexity

41 N-Tier Complexity

42 N-Tier Complexity

43 Servlets JSP/XML/XSLT Session Beans Entity Beans

44 Java Technologies External Application

45 EJB Enterprise Java Bean Bean –originally a Java class with get() and set() methods –e.g.: getFirstName(), setFirstName() EJBs come in 3 flavors:

46 EJB – Entity Bean Entity Bean Represent actual data items (e.g. rows in a result set) Two forms of Entity Bean –Container managed persistence: DB interactions handled by the J2EE environment –Bean managed persistence: requires that the bean carries out DB interactions itself May be called across network connection (RMI)

47 Session Bean Model a process or task Represent resources private to the client May update shared data Two forms of Session Bean –Stateful: state maintained between method calls –Stateless One client per session bean instance EJB – Session Bean

48 Used in conjunction with Java Messaging System Activated on JMS message arrival No state maintained between activations APPLICATION message queue EJB – Message Driven Bean ***** * * session facade

49 Conclusion Applying engineering principles to software Need  Scalability  Distribution, modularity, OO, etc Distributed Objects – the main idea Distributed Object technologies: Java RMI, J2EE, and next time ….NET and CORBA