Category Uncategorized

How RMI, CORBA and REST APIs are related?

RMI, CORBA, REST — Relation & Evolution (Brief) What is common in RMI, CORBA, REST? All are for communication between distributed systems (client ↔ server) Quick Comparison Technology Style Key Idea RMI (Java) Object-based Call Java methods remotely CORBA Language-independent…

Write Once, Run Anywhere” — In Brief

This means – Write Java code once, run it on any OS (Windows, Linux, Unix) without changing code How it works Can I compile on Windows and run on Linux/Unix? ✔️ Yes — absolutely javac Hello.java   → Hello.class java Hello…