Distributed Systems. 6. Remote Method Invocation. Werner Nutt

Similar documents
Distributed Systems. 5. Remote Method Invocation

JAVA RMI. Remote Method Invocation

Remote Objects and RMI

Lecture 5: Object Interaction: RMI and RPC

CS 5523 Operating Systems: Remote Objects and RMI

Lecture 06: Distributed Object

DISTRIBUTED OBJECTS AND REMOTE INVOCATION

Remote Method Invocation

Object Interaction. Object Interaction. Introduction. Object Interaction vs. RPCs (2)

Distributed Computing

5.4. Events and notifications

CSci Introduction to Distributed Systems. Communication: RPC In Practice

The UNIVERSITY of EDINBURGH. SCHOOL of INFORMATICS. CS4/MSc. Distributed Systems. Björn Franke. Room 2414

Introduction & RMI Basics. CS3524 Distributed Systems Lecture 01

RMI. Remote Method Invocation. 16-Dec-16

Written by: Dave Matuszek

Distributed Systems. Distributed Object Systems 2 Java RMI. Java RMI. Example. Applet continued. Applet. slides2.pdf Sep 9,

Contents. Java RMI. Java RMI. Java RMI system elements. Example application processes/machines Client machine Process/Application A

Communication Basics, RPC & RMI. CS403/534 Distributed Systems Erkay Savas Sabanci University

Generic architecture

IBD Intergiciels et Bases de Données

Distributed Information Systems

CS555: Distributed Systems [Fall 2017] Dept. Of Computer Science, Colorado State University

RMI (Remote Method Invocation) Over the year, there have been 3 different approaches to application development:

Lecture 5: RMI etc. Servant. Java Remote Method Invocation Invocation Semantics Distributed Events CDK: Chapter 5 TVS: Section 8.3

RMI: Design & Implementation

Chapter 5 Distributed Objects and Remote Invocation

03 Remote invocation. Request-reply RPC. Coulouris 5 Birrel_Nelson_84.pdf RMI

RPC flow. 4.3 Remote procedure calls IDL. RPC components. Procedure. Program. sum (j,k) int j,k; {return j+k;} i = sum (3,7); Local procedure call

Distributed Objects and Remote Invocation. Programming Models for Distributed Applications

Outline. EEC-681/781 Distributed Computing Systems. The OSI Network Architecture. Inter-Process Communications (IPC) Lecture 4

Chapter 5: Distributed objects and remote invocation

Agent and Object Technology Lab Dipartimento di Ingegneria dell Informazione Università degli Studi di Parma. Distributed and Agent Systems RMI

Distributed Systems. 02r. Java RMI Programming Tutorial. Paul Krzyzanowski TA: Long Zhao Rutgers University Fall 2017

COMP 6231: Distributed System Design

Last Class: Network Overview. Today: Distributed Systems

Desarrollo de Aplicaciones en Red RMI. Introduction. Considerations. Considerations. RMI architecture

Verteilte Systeme (Distributed Systems)

Distributed object component middleware I - Java RMI

Remote Invocation. 1. Introduction 2. Remote Method Invocation (RMI) 3. RMI Invocation Semantics

presentation DAD Distributed Applications Development Cristian Toma

Distributed object component middleware I - Java RMI

RMI. (Remote Method Invocation)

Applications. RMI, RPC and events. Request reply protocol External data representation. Operating System

RPC and RMI. 2501ICT Nathan

SUMMARY INTRODUCTION REMOTE METHOD INVOCATION

JAVA RMI Java, summer semester

Distributed Programming in Java. Distribution (2)

Remote Method Invocation

Remote Procedure Call

Lecture VI: Distributed Objects. Remote Method Invocation

Grid Computing. Java Remote Method Invocation (RMI) RMI Application. Grid Computing Fall 2006 Paul A. Farrell 9/5/2006

MODELS OF DISTRIBUTED SYSTEMS

Concurrent Object-Oriented Programming

Structured communication (Remote invocation)

How are classes loaded into the Java Virtual Machine (JVM)? from the local file system (CLASSPATH). by an instance of ClassLoader

Questions and Answers. A. RMI allows us to invoke a method of java object that executes on another machine.

Slides for Chapter 5: Remote Invocation

Programming with RMI Reminder

03 Remote invoaction. Request-reply RPC. Coulouris 5 Birrel_Nelson_84.pdf RMI

C 1. Recap: Finger Table. CSE 486/586 Distributed Systems Remote Procedure Call. Chord: Node Joins and Leaves. Recall? Socket API

RMI Case Study. A Typical RMI Application

Chapter 15: Distributed Communication. Sockets Remote Procedure Calls (RPCs) Remote Method Invocation (RMI) CORBA Object Registration

Distributed Objects SPL/ SPL 201 / 0 1

Remote Method Invocation. Benoît Garbinato

Remote Invocation Vladimir Vlassov and Johan Montelius

Chapter 5: Remote Invocation. Copyright 2015 Prof. Amr El-Kadi

Distributed Systems Lecture 2 1. External Data Representation and Marshalling (Sec. 4.3) Request reply protocol (failure modes) (Sec. 4.

Remote Method Invocation Benoît Garbinato

Distributed Systems. The main method of distributed object communication is with remote method invocation

CS555: Distributed Systems [Fall 2017] Dept. Of Computer Science, Colorado State University

THE RMI PROXY USER GUIDE

Distributed Programming with RMI. Overview CORBA DCOM. Prepared By: Shiba R. Tamrakar

Distributed Software Systems

Modulo II Socket, RMI e Corba

MODELS OF DISTRIBUTED SYSTEMS

OBJECTSPACE VOYAGER CORE TECHNOLOGY

Course Snapshot. The Next Few Classes

3. Remote Procedure Call

CHAPTER - 4 REMOTE COMMUNICATION

Remote Method Invocation

Info 408 Distributed Applications programming 2 nd semester of Credits: 5 Lecturer: Antoun Yaacoub Ph.D.

Remote Method Invocation in Java

Course Snapshot. The Next Few Classes. Parallel versus Distributed Systems. Distributed Systems. We have covered all the fundamental OS components:

Chapter 4 Remote Procedure Calls and Distributed Transactions

Communication and Distributed Processing


CSE 124 Distributed programming and Remote Procedure Calls (RPC) February 23, 2016, UCSD Prof. George Porter

Department of Computer Science & Engineering. M.Tech(CSE)-I Year-II Semester WEB SERVICES AND SERVICE ORIENTED ARCHITECHTURE (B1513) Mr.K.

Communication and Distributed Processing

Distributed Systems 8. Remote Procedure Calls

Message Passing vs. Distributed Objects. 5/15/2009 Distributed Computing, M. L. Liu 1

Distributed Systems COMP 212. Lecture 10 Othon Michail

Java RMI Middleware Project

Outline. Chapter 4 Remote Procedure Calls and Distributed Transactions. Remote Procedure Call. Distributed Transaction Processing.

5 Distributed Objects: The Java Approach

REMOTE METHOD INVOCATION INTRODUCTION TO RMI, A JAVA API FOR RPC-STYLE INVOCATION OF REMOTE OBJECT METHODS

Chapter 4: Processes. Process Concept. Process State

Operating Systems. 18. Remote Procedure Calls. Paul Krzyzanowski. Rutgers University. Spring /20/ Paul Krzyzanowski

55:182/22C:182. Distributed Application Frameworks Java RMI, CORBA, Web Services (SOAP)

Transcription:

Distributed Systems 6. Remote Method Invocation Werner Nutt 1

Remote Method Invocation 6.1 Communication between Distributed Objects 1. Communication between Distributed Objects 2. Java RMI 3. Dynamic Code 2

Middleware Middleware offers an infrastructure that enables application processes to communicate with each other Processes issue requests to the transportation layer (i.e., the application takes the initiative, not the middleware) Applications access the middleware via APIs, e.g., creation and manipulation of sockets Integration into programming languages remote procedure call (RPC) remote method invocation (RMI) For higher level APIs, data has to be transformed before it can be shipped ( data marshalling ) Protocols for Client/Server Interaction ( Request/Reply ) 3

Why Middleware? Distributed computing environments are heterogeneous: Networks ATM, Ethernet, etc. have different protocols Computer hardware data types (integers) can be represented differently Operating systems e.g., TCP module can be part of OS (Unix/Linux) or not Programming languages e.g., different paradigms (functional, OO, etc.) e.g., data structures (arrays, records) can be represented differently Applications implemented by different developers 4

Middleware Hides Heterogeneity Applications RMI, RPC and events Request reply protocol Middleware layers External data representation Operating System 5

Middleware Characteristics Location transparency client/server need not know their location Sits on top of OS, independent of Communication protocols: use abstract request-reply protocols over UDP, TCP Computer hardware: use external data representation e.g. CORBA CDR Operating system: use e.g. socket abstraction available in most systems Programming language: e.g. CORBA supports Java, C++ 6

Middleware Programming Models Commonly used models: Distributed objects and remote method invocation (Java RMI, Corba) Remote Procedure Call (Web services) Remote SQL access (JDBC, ODBC) Distributed transaction processing CORBA (old): provides remote object invocation between a client program written in one language and a server program written in another language commonly used with C++ 7

Objects object object Data interface Data implementation of methods m1 m2 m3 m1 m2 m3 implementation of methods Object = data + methods logical and physical encapsulation accessed by means of references first class citizens, can be passed as arguments Interaction via interfaces define types of arguments and exceptions of methods 8

The Object Model Programs are (logically and physically) partitioned into objects distributing objects natural and easy Interfaces the only means to access data make them remote Actions via method invocation interaction, chains of invocations may lead to exceptions part of interface Garbage collection reduces programming effort, error-free (Java, not C++) generalize to distributed garbage collection 9

The Distributed Object Model: Ideas A remote invocation B local C invocation local E invocation local invocation D remote invocation F Objects are distributed client-server relationship at the object level Extended with Remote interfaces Remote Method Invocation (RMI) Remote object references 10

The Distributed Object Model: Principles A remote invocation B local C invocation local E invocation local invocation D remote invocation F Each process contains objects, some of which can receive remote invocations, others only local invocations Objects that can receive remote invocations are called remote objects The remote interface specifies which methods can be invoked remotely Objects need to know the remote object reference of an object in another process in order to invoke its methods How do they get it? 11

Remote Object References Object references used to access objects, which live in processes can be passed as arguments and results can be stored in variables Remote object references object identifiers in a distributed system must be unique in space and time error returned if accessing a deleted object can allow relocation (see CORBA) 12

Remote Object Reference Construct unique remote object reference IP address, port, interface name time of creation, local object number (new for each object) Use in the same way as local object references If used as address cannot support relocation 32 bits 32 bits 32 bits 32 bits Internet address port number time object number interface of remote object 13

Remote Interfaces Specify externally accessible methods nodirect references to variables (no global memory) localinterface is separate Parameters input, output or both (no output parameters in Java why? ) call by value/by copy and call by reference No pointers but references No constructors but factory methods 14

A Remote Object and its Interface remoteobject Data remote interface m1 { implementation m2 m3 of methods m4 m5 m6 CORBA: Interface Definition Language (IDL) Java RMI: like other interfaces, extends class Remote 15

Handling Remote Objects Exceptions (Java: RemoteException) raised in remote invocation clients need to handle exceptions timeouts in case server crashed or too busy Garbage collection distributedgarbage collection may be necessary combined local and distributed collector cf. Java reference counting (remote object knows in which processes live proxies, extra communication to inform server about creation and deletion of proxies) 16

RMI Issues Local invocations executed exactly once Remote invocations via Request-Reply may suffer from communication failures! retransmission of request/reply message duplication, duplication filtering no unique semantics 17

Invocation Semantics Fault tolerance measures Invocation semantics Retransmit request message Duplicate filtering Re-execute procedure or retransmit reply No Not applicable Not applicable Maybe Yes No Re-execute procedure At-least-once Yes Yes Retransmit reply At-most-once 18

Maybe Invocation Remote method mayexecute once or not at all, invoker cannot tell useful only if failures are rare Invocation message lost... method not executed Result not received... was method executed or not? Server crash... beforeor after method executed? if timeout, result could be received after timeout 19

At-least-once Invocation Remote method invoker receives result (executed at least once) or exception (no result received) retransmission of request messages Invocation message retransmitted method may be executed more than once arbitrary failure (wrong result possible) method must be idempotent (repeated execution has the same effect as a single execution) to be acceptable Server crash... dealt with by timeouts, exceptions 20

At-most-once Invocation Remote method invoker receives result (executed once) or exception (no result) retransmission of reply and request messages receiver keeps history with results (how long?) duplicate filtering Best fault-tolerance... arbitrary failures prevented if method called at most once Used by CORBA and Java RMI (however, based on TCP) 21

Transparency of RMI Should remote method invocation be same as local? same syntax, see Java RMI (keyword Remote) need to hide: data marshalling IPC calls locating/contacting remote objects Problems different RMI semantics? susceptibility to failures? protection against interference in concurrent scenario? Approaches (Java RMI) transparent, but express differences in interfaces provide recovery features (IPC over TCP) 22

Remote Method Invocation 6.2 Java RMI 1. Communication between Distributed Objects 2. Java RMI 3. Dynamic Code 23

Hello World: Remote Interface import java.rmi.*; public interface HelloInterface extends Remote { /* * Remotely invocable method, * returns the message of the remote object, * such as "Hello, world!" * throws a RemoteException * if the remote invocation fails */ public String say() throws RemoteException; 24

Hello World: Remote Object import java.rmi.*; import java.rmi.server.*; public class Hello extends UnicastRemoteObject implements HelloInterface { private String message; /* Constructor for a remote object * Throws a RemoteException if exporting the object fails */ public Hello (String msg) throws RemoteException { message = msg; /* Implementation of the remotely invocable method */ public String say() throws RemoteException { return message; 25

import java.io.*; import java.rmi.*; Hello World: Server public class HelloServer{ /* * Server program for the "Hello, world!" example. */ public static void main (String[] args) { try { Naming.rebind ("SHello", new Hello ("Hello, world!")); System.out.println ("HelloServer is ready."); catch (Exception e) { System.out.println ("HelloServer failed: " + e); 26

import java.io.*; import java.rmi.*; Hello World: Client public class HelloClient{ /* * Client program for the "Hello, world!" example */ public static void main (String[] args) { try { HelloInterface hello = (HelloInterface) Naming.lookup ("//russel.inf.unibz.it/shello"); System.out.println (hello.say()); catch (Exception e) { System.out.println ("HelloClient failed: " + e); 27

Hello World: Compilation On the server side start the RMI registry: rmiregistry & (Standard port number 1099) compile with Java compiler: HelloInterface.java, Hello.java, HelloServer.java compile with RMI compiler: Hello command: rmic Hello produces class Hello_Stub.class (previously Hello_Stub and Hello_Skel) On the client side compile HelloClient class HelloInterface.class needs to be accessible 28

RMI Architecture Application Client Server RMI System Stubs Skeletons/ Remote Reference Layer Transport Layer 29

Implementation of RMI client object A proxy for B Request server skeleton & dispatcher for B s class remote object B Reply Remote Communication reference module module Communication module Remote reference module Carries out Request-reply protocol, responsible for semantics. In Java RMI realized by RemoteRef 30

Implementation of RMI client object A proxy for B Request server skeleton & dispatcher for B s class remote object B Reply Remote Communication reference module module Communication module Remote reference module Translates between local and remote object references, creates remote object references. Uses remote object table (relating remote and local object references, plus proxies) 31

Implementation of RMI client object A proxy for B Request server skeleton & dispatcher for B s class remote object B Reply Remote Communication reference module module Communication module Remote reference module RMI software - between application level objects and communication and remote reference modules (according to JRMP v1.1) 32

Implementation of RMI client object A proxy for B Request server skeleton & dispatcher for B s class remote object B Reply Remote Communication reference module module Communication module Remote reference module Proxy - makes RMI transparent to client. Class implements Remote interface. Marshals requests and unmarshals results. Forwards request. 33

Implementation of RMI client object A proxy for B Request server skeleton & dispatcher for B s class remote object B Reply Remote Communication reference module module Communication module Remote reference module Dispatcher - gets request from communication module and invokes method in skeleton (using methodid in message). 34

Implementation of RMI client object A proxy for B Request server skeleton & dispatcher for B s class remote object B Reply Remote Communication reference module module Communication module Remote reference module Skeleton - implements methods in remote interface. Unmarshals requests and marshals results. Invokes method in remote object. 35

Communication Modules Reside in client and server virtual machine Carry out Request-Reply jointly implement given RMI semantics (at least once, at most once, exactly once) Server s communication module calls Remote Reference Module to convert remote object reference to local 36

Remote Reference Module Creates remote object references and proxies Translates remote to local references (object table): correspondence between remote and local object references (proxies) Called by RMI software when marshalling/unmarshalling 37

RMI Software Architecture Proxy/Stub behaves like local object to client forwards requests to remote object Dispatcher receives request selects method and passes on request to skeleton Skeleton implements methods in remote interface unmarshals data, invokes remote object waits for result, marshals it and returns reply 38

Hello Skeleton/1 // Skeleton class generated by rmic, do not edit. // Contents subject to change without notice. public final class Hello_Skel implements java.rmi.server.skeleton { private static final java.rmi.server.operation[] operations = { new java.rmi.server.operation("java.lang.string say()") ; private static final long interfacehash = -7469971880086108926L; public java.rmi.server.operation[] getoperations() { return (java.rmi.server.operation[]) operations.clone(); 39

Hello Skeleton/2 public void dispatch(java.rmi.remote obj, java.rmi.server.remotecall call, int opnum, long hash) throws java.lang.exception { if (hash!= interfacehash) throw new java.rmi.server.skeletonmismatchexception("interface hash mismatch"); Hello server = (Hello) obj; switch (opnum) { case 0: // say() { call.releaseinputstream(); java.lang.string $result = server.say(); try { java.io.objectoutput out = call.getresultstream(true); out.writeobject($result); catch (java.io.ioexception e) { throw new java.rmi.marshalexception("error marshalling return", e); break; 40

Hello Stub/1 // Stub class generated by rmic, do not edit. // Contents subject to change without notice. public final class Hello_Stub extends java.rmi.server.remotestub implements HelloInterface, java.rmi.remote { private static final java.rmi.server.operation[] operations = { new java.rmi.server.operation("java.lang.string say()") ; private static final long interfacehash = -7469971880086108926L; // constructors public Hello_Stub() { super(); public Hello_Stub(java.rmi.server.RemoteRef ref) { super(ref); 41

Hello Stub/2 // methods from remote interfaces // implementation of say() public java.lang.string say() throws java.rmi.remoteexception { try { java.rmi.server.remotecall call = ref.newcall((java.rmi.server.remoteobject) this, operations, 0, interfacehash); ref.invoke(call); java.lang.string $result; try { java.io.objectinput in = call.getinputstream(); $result = (java.lang.string) in.readobject(); catch (java.io.ioexception e) { throw new java.rmi.unmarshalexception("error unmarshalling return", e); catch (java.lang.classnotfoundexception e) { throw new java.rmi.unmarshalexception("error unmarshalling return", e); finally { ref.done(call); return $result; 42

Hello Stub/3 catch (java.lang.runtimeexception e) { throw e; catch (java.rmi.remoteexception e) { throw e; catch (java.lang.exception e) { throw new java.rmi.unexpectedexception("undeclared checked exception", e); 43

Hello Stub/1 // Stub class generated by rmic, do not edit. // Contents subject to change without notice. public final class Hello_Stub extends java.rmi.server.remotestub implements HelloInterface, java.rmi.remote { private static final long serialversionuid = 2; private static java.lang.reflect.method $method_say_0; static { try { $method_say_0 = HelloInterface.class.getMethod("say", new java.lang.class[] {); catch (java.lang.nosuchmethodexception e) { throw new java.lang.nosuchmethoderror( "stub class initialization failed"); 44

Hello Stub/2 // constructors public Hello_Stub(java.rmi.server.RemoteRef ref) { super(ref); 45

HelloStub/3 // methods from remote interfaces // implementation of say() public java.lang.string say() throws java.rmi.remoteexception { try { Object $result = ref.invoke(this, $method_say_0, null, -3164833839299227514L); return ((java.lang.string) $result); catch (java.lang.runtimeexception e) { throw e; catch (java.rmi.remoteexception e) { throw e; catch (java.lang.exception e) { throw new java.rmi.unexpectedexception("undeclared checked exception", e); 46

The Methods of the Naming Class void rebind (String name, Remote obj) This method is used by a server to register the identifier of a remote object by name void bind (String name, Remote obj) This method can alternatively be used by a server to register a remote object by name, but if the name is already bound to a remote object reference an exception is thrown. void unbind (String name, Remote obj) This method removes a binding. Remote lookup (String name) This method is used by clients to look up a remote object by name. A remote object reference is returned. String [] list() This method returns an array of Strings containing the names bound in the registry. 47

Exercise: Callback Write a chat version where the server has amulticaster object with method send(string) each client has a Display object with method show(string) both classes and methods are remote. Clients invoke send and the server invokes show. Sending a string means showing it on all displays. How can one implement this? 48

Remote Method Invocation 6.3 Dynamic Code 1. Communication between Distributed Objects 2. RMI 3. Dynamic Code 49

Parameter Passing Remote methods can have arguments and return results arguments: client server results: server client Local case Parameters are passed by value (if atomic) or by reference Remote case Atomic values: by value Remote objects: by remote reference (represented by stub/proxy) Other objects: must be Serializable! Then by copy. Exception if not serializable (cannot be "marshalled") 50

Dynamic Code Downloading A client holds a remote reference to an instance of a remote interface needs stub class for the referenced remote object needs classes for arguments and return values of remote methods Where should these classes come from? client stores all possible classes locally (bad because...) client retrieves classes when needed from server host 51

Example: Generic Echo Server Server: exports generic method public <T> T doecho(t input) throws RemoteException; that is, for any type T, echo an object of the same type as the input Client: invokes doecho with a type unknown to the server Shows same problem as compute server, which accepts tasks to compute results of arbitrary types public <T> T execute(task<t> task)... 52

Echo Interface /* Similar in spirit to HelloWorld */ import java.rmi.*; public interface EchoInterface extends Remote { public <T> T doecho(t input) throws RemoteException; 53

import java.rmi.*; import java.rmi.server.*; Echo Remote Object public class Echo extends UnicastRemoteObject implements EchoInterface { public Echo () throws RemoteException { super(); Constructor public <T> T doecho(t input) throws RemoteException { return input; echoes its input 54

import java.io.*; import java.rmi.*; Echo Server public class EchoServer{ public static void main (String[] argv) { if (System.getSecurityManager() == null) { System.setSecurityManager(new SecurityManager()); try { Naming.rebind ("//localhost/echo", new Echo()); System.out.println ("Echo Server is ready."); catch (Exception e) { System.out.println ("Echo Server failed: " + e); The security manager is is new! 55

Server Classes A client using the Echo object needs two server classes EchoInterface.class: at compile time must be known by developers and made available, e.g., at URL, Echo_Stub.class: at runtime depends on implementation, e.g., Echo could implement > 1 interfaces developers on server side may create new classes that implement EchoInterface best downloaded automatically for a remote reference remote reference should contain info about stub location 56

Codebases Locations where server and client can make available classes for each other Described by URLs, e.g., codebase= http://www.inf.unibz.it/~nutt/classes/echoservercode/ codebase= file:/home/nutt/public_html/classes/echoservercode/ Classes from a codebase are retrieved by contacting a web server by accessing them on a common file system 57

Codebase Annotations If a Java application finds a class in a codebase, then it annotates - references to - copies of instances that class with the codebase. For example, the RMI registry annotates references a client annotates serialized copies A codebase is defined as the value of the property java.rmi.server.codebase, Usage java... -Djava.rmi.server.codebase=<codebase>... 58

Security Code downloaded from other sites can be harmful In Java one can: define security policies set up a security manager in an application let the manager check whether operations satisfy the policies 59

Security Policies: Examples grant { permission java.security.allpermission;; Allow anyone to do anything grant codebase "http://www.foo.net/nice/classes/" { permission java.security.allpermission;; Allow code from a specific codebase to do anything 60

Policy Files and Properties Policies - are stored in files, e.g. clientpolicy.pol - are assigned to properties, e.g., java... -Djava.security.policy = clientpolicy.pol... 61

Echo Client Sending a String import java.rmi.*; import java.io.*; public class EchoClientString { public static void main (String[] args) { if (System.getSecurityManager() == null) { System.setSecurityManager(new SecurityManager()); try { EchoInterface echo = (EchoInterface) Naming.lookup ("//localhost/echo"); System.out.println (echo.doecho(args[0])); catch (Exception e) { System.out.println ("EchoClientString exception: " + e); 62

Starting the Server java -Djava.rmi.server.codebase =file:/users/nutt/java/classes/echoservercode/ -Djava.security.policy=serverPolicy.pol EchoServer Note that here -the interface class and the Echo stub class are in the directory EchoServerCode -the security policy of the server is defined in the file serverpolicy.pol Don't forget the backslash at the end of.../echoservercode/! 63

Compiling and Starting the Client javac cp.:/users/nutt/java/classes/echointerface/ EchoClientString.java Note here the interface class is in EchoInterface the class path contains two directories 64

Starting the Client java -cp.:/users/nutt/java/classes/echointerface/ -Djava.security.policy=clientPolicy.pol EchoClientString 'Hello!' Note here we use the same class path for the interface the stub is downloaded from the server codebase...... if the security policy allows this the string 'Hello!' is echoed 65

Summary So Far The client can download classes from the server side from the common file system from a web server The client's security policy has to allow this We have not seen yet the server downloading from the client 66

import java.io.*; A Wrapper Class for Strings (Just for the Example) public class MyString implements Serializable{ String mystring; public MyString(String string) { mystring = string; public String getstring() { return mystring; If a client sends this, the server needs more info 67

import java.rmi.*; import java.io.*; public class EchoClientMyString { Server Receiving and Sending MyStrings public static void main (String[] args) { if (System.getSecurityManager() == null) { System.setSecurityManager(new SecurityManager()); try { EchoInterface echo = (EchoInterface) Naming.lookup("//localhost/Echo"); MyString input = new MyString(args[0]); MyString output = echo.doecho(input); System.out.println (output.getstring()); catch (Exception e) { System.out.println ("EchoClientString exception: " + e); The server receives a MyString object The server returns a MyString 68

Starting the MyString Client java -cp.:/users/nutt/java/classes/echointerface/ -Djava.rmi.server.codebase =file:/users/nutt/java/classes/echoclientcode/ -Djava.security.policy =clientpolicy.pol EchoClientString 'Hello! Note: the client classes that the server needs are in.../echoclientcode/ the client has a codebase property every MyString copy will be annotated with the codebase the server can download the classes of the client 69

Summary Java RMI implements a remote object model provides a much more abstract view of interoperating processes than socket communication is based on TCP, but hides this allows code to be downloaded at runtime, using the Web mechanism (URLs and Web servers) is powerful on intranets, but is often stopped by firewalls can tunnel through firewalls, but at a significant cost 70

References In preparing the lectures I have used several sources. The main ones are the following: Books: Coulouris, Dollimore, Kindberg. Distributed Systems Concepts and Design (CDK) Slides: Marco Aiello, course on Distributed Systems at the Free University of Bozen-Bolzano Andrew Tanenbaum, Slides from his website CDK Website Marta Kwiatkowska, U Birmingham, slides of course on DS Ken Baclawski, Northeastern University 71