26
A Computer Aided Despatch System on CORBA/Java Platform Chau Chi Wing

A Computer Aided Despatch System on CORBA/Java Platform Chau Chi Wing

  • Upload
    sandro

  • View
    29

  • Download
    0

Embed Size (px)

DESCRIPTION

A Computer Aided Despatch System on CORBA/Java Platform Chau Chi Wing. Introduction. Computer Aided Despatch (CAD) systems are used in the service industry to provide prompt service to their clients. In this project, a prototype CAD system will be implemented on CORBA/Java platform. CORBA. - PowerPoint PPT Presentation

Citation preview

Page 1: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

A Computer Aided Despatch System

on CORBA/Java Platform

Chau Chi Wing

Page 2: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Introduction

• Computer Aided Despatch (CAD) systems are used in the service industry to provide prompt service to their clients.

• In this project, a prototype CAD system will be implemented on CORBA/Java platform.

Page 3: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

CORBA

• CORBA was designed to allow intelligent components to discover each other and interoperate on an object bus.

• CORBA is much more sophisticated than alternative forms of client/server middleware, including RPC, MOM, database store procedures.

Page 4: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Distributed Systems on CORBA

• City of Pittsburgh – Crime Information System

• Allied Signal – Vacation Time Tracking System

• Standard Chartered Bank – Customer Service Terminal

• Harvard University – Educational Records System

Page 5: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

The Java Platform

• The Java platform is a fundamentally new way of computing, based on the power of networks and the objective to run the same software on different kinds of computers.

• CORBA provides the link between the Java portable application environments.

Page 6: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Computer Aided Despatch (CAD) System

• Two main entities: incident and resource.

• Track incidents and resources, and the interactions between them.

• Inteface with other systems, e.g., PABX, GIS, GPS, mobile radio system, systems in immigration and transportation departments.

Page 7: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Computer AidedDespatch System

Telephone callfrom publicnetwork

Private AutomaticBranch Exchange(PABX)

ManagementInformationSystem (MIS)

Historic incident &historic resource

Addressinformation

GeographicInformationSystem (GIS) /GlobalPositioningSystem (GPS)

Radio callinformation

Mobile RadioSystems

External systems,e.g. those inimmigration andtransportationdepartments.

Page 8: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

RCCC, H K Police

Page 9: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

System Requirements

• Functions: functions to manipulate incidents and resources, multiple communication patterns, e.g. client-server, server-client.

• Performance: response time in seconds, intuitive user interface.

• System Management: complex distributed application - needs easy update.

Page 10: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Design Considerations

• 3-tier Architecture– Thin client– Business logic in middle tier– RDBMS for persistence

• CORBA– Cross platform– Cross language– Support all communication patterns

Page 11: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Design Considerations (2)

• Front End– Java - write-once-run-anywhere– Applet - no installation needed, browser plugins

can be used.– Swing - consistent look-and-feel, sophisticated

GUI.– Java 2 - drag-and-drop, plugin caching.– CORBA - multiple communication patterns

Page 12: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Design Considerations (3)

• Middle Tier– Java - write-once-run-anywhere, no vendor

lock-in, high-end production platform but low-end development platform

– JDBC - database connectivity– CORBA - multiple communication patterns,

native languages can be used for performance or reuse of existing code.

Page 13: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Design Considerations (4)

• Back End– RDBMS - mature, robust, high performance.– Features - parallel processing, fault-tolerance,

extended SQL functionality.– Connection - computationally expensive,

should be made on server object startup.

Page 14: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Outline Software Design Specification

• Platform– Java Platform -Sun Microsystems Java

Development Kit 1.3– CORBA ORB - Inprise VisiBroker for Java 3.4– RDBMS - Oracle8i

Page 15: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

OSDS (2)

• User interface– Command line– Context-sensitive popup menu– Drag-and-drop operations

Page 16: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing
Page 17: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing
Page 18: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing
Page 19: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

OSDS (3) - Architecture

Server JVMWeb browser JVM

ORB ORB RDBMS

ResList

DynaWinHandler

Resource

Incident

IncQueue

IIOP JDBC

Calls

Callbacks

CadApplet

AccessControl

Page 20: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

CadApplet ResList IncQueue AccessControl Resource IncidentDynaWinHandlerlogin

registerResList

registerIncQueue

fillIncQueue

fillResList

CadApplet ResList IncQueue AccessControl Resource IncidentDynaWinHandlerlogout

unregisterResList

unregisterIncQueue

OSDS (4) - Object interactions

Page 21: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

CadApplet ResList IncQueue AccessControl Resource IncidentDynaWinHandlerresource operations

addRes/updateRes/deleteRes

addInc/updateInc/deleteInc

addRes/updateRes/deleteRes

addInc/updateInc/deleteInc

CadApplet ResList IncQueue AccessControl Resource IncidentDynaWinHandler

incident operations

addRes/updateRes/deleteRes

addRes/updateRes/deleteRes

addInc/updateInc/deleteInc

addInc/updateInc/deleteInc

OSDS (5)

Page 22: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Future Directions

• The CAD system lacks attributes of a mission-critical system – manageability, scalability and high reliability.

• Answered by Enterprise Java Bean (EJB) technology, the Java server-side component architecture.

Page 23: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Conclusion

• CORBA provides a solid and versatile distributed object foundation. It enables the invocation of methods on objects, with network transparency. CORBA callbacks can be used to control client from the server side.

Page 24: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Conclusion (2)

• Swing of the Java 2 standard enables the construction of sophisticated GUI, with user-friendly features like drag-and-drop mechanism and popup menu, that has consistent look-and-feel across platforms.

• With the help of Java Just-In-Time (JIT) compiler, the performance of applet and server objects are excellent.

Page 25: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

Conclusion (3)

• Both Java and CORBA are open standards – vendor lock-in is eliminated and so hardware and software can be chosen based solely on performance, features and services.

Page 26: A Computer Aided Despatch System  on CORBA/Java Platform Chau Chi Wing

END

• Thanks for coming.