Project-1 Chat Room Application Using CORBA (IIOP) : CSC 8560 Computer Networks
Project-1 Chat Room Application Using CORBA (IIOP) : CSC 8560 Computer Networks
Project-1
Chat Room Application using CORBA (IIOP)
Abhishek Bachchan
Vishal Patangia
CORBA (Common Object Request Broker Architecture)
Platform independence
interface Displayer
{
void receive_update(in string msg, in string nam);
};
interface Publisher
{
typedef sequence<Displayer> DisplayerList;
Diagram Link
Parts of Server Code
public static void main(String[] args) {
try {
// Initialize the ORB.
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args,null);
// Locate an account manager. Give the full POA name and the servant ID.
Chat.Publisher publisher =
Chat.PublisherHelper.bind(orb, "/chat_poa", managerId);
:
:
: