My Blog

My WordPress Blog

My Blog

My WordPress Blog

07. Java RMI

GUI Application

In the previous chapter, we created a sample RMI application. In this chapter, we will explain how to create an RMI application where a client invokes a method which displays a GUI window (JavaFX). Defining the Remote Interface Here, we are defining a remote interface named Hello with a method named animation() in it. Developing the Implementation Class In […]

Introduction

RMI stands for Remote Method Invocation. It is a mechanism that allows an object residing in one system (JVM) to access/invoke an object running on another JVM. RMI is used to build distributed applications; it provides remote communication between Java programs. It is provided in the package java.rmi. Architecture of an RMI Application In an RMI application, […]

Scroll to top