--%>

CORBA

In what respects did CORBA seek to improve on technologies such as SunRPC?

E

Expert

Verified

As SunRPC is Language/OS (Unix System V, Linux, BSD, OS X) dependent where CORBA seeks to have an RPC which is Language/OS independent.

The SunRPC do not provide polymorphism (Object oriented languages expect polymorphism where services may behave differently based on data types passed to it.) where CORBA seeks improvement.

The SunRPC do not provide dynamic invocation where CORBA seeks improvement.

As with SunRPC, we need a unique program number per server while as CORBA seeks to have an RPC which provides to generate unique ID.

   Related Questions in Programming Languages

  • Q : Explain AJAX Control Extender Toolkit

    Explain the AJAX Control Extender Toolkit.

  • Q : Explain Declaration and initialization

    Declaration and initialization: It is a statement in which a variable is declared and instantly given its initial value. Three illustrations of declaration and initialization are as follows:     int

  • Q : Describe Throw an exception Throw an

    Throw an exception: Whenever an exceptional circumstance occurs in a program - frequently as an outcome of a logical error and exception object is formed and thrown. When the exception is not caught by an exception handler, the program will finish wit

  • Q : Program is prone to deadlock when

      Give a brief introduction about the operation of your program and show that you understand the idea behind threads and mutual exclusion variable. Why do we need to use mutual exclusion to control the access of the three global variables? What is the potential p

  • Q : Define the term Local inner class and

    Define the term Local inner class and Local variable: Local inner class: It is an inner class stated in a method. Local variable: It is a variable defined within

  • Q : What is an Operand Operand : An operand

    Operand: An operand is an argument of the operator. Expressions comprise combinations of operands and operators. The value of an expression is determined by exerting the operation stated by each and every operator to the value of its operands.

  • Q : Where must I utilize XML Where must I

    Where must I utilize XML?

  • Q : What do you mean by data movement What

    What do you mean by data movement? Describe in brief.

  • Q : What is Stepwise refinement Stepwise

    Stepwise refinement: It is a divide and conquer approach to the programming, in which a complicated problem is recursively divided into smaller, sub-problems and more manageable. This approach to program design is frequently employed with structured p

  • Q : Problem on linear equations using Matlab

    Use Matlab to solve the following system of linear equations:2x + y + 3z = 12x + 6y + 8z = 36x + 8y + 18z = 5Capture Matlab code and the result in a text file.