Wednesday, August 20, 2014

Web services vs. CORBA and DCOM

Web services
Web services use HTTP protocol for sending and receiving messages between the applications. 
The data encoding in web services is based on XML. 
Web services are defined using WSDL (Web Services Description Language).
  • Web services are discovered using UDDI (Universal Description, Discovery and Integration).
  • Web services are firewalls friendly.
  • Web services supports interoperability i.e. cross platform integration is possible.

CORBA and DCOM

  • These technologies use non-standard protocol, i.e. CORBA uses IIOP (Inter Internet Object Protocol), and DCOM uses RPC (Remote Procedure Calls)
  • CORBA components are defined using CORBA Interface Description Language; DCOM components are defined using Microsoft Interface definition languages
  • CORBA components are discovered using the CORBA registry, DCOM using the Registry.
  • DCOM is a proprietary protocol that does not support interoperability and has firewall problems as DCOM transfers data in binary format and it uses many ports to call remote functions.
  • CORBA uses the IIOP protocol, which is non-Internet friendly.
  • CORBA and DCOM are fine for building enterprise applications that runs on the same platform and not good enough for applications that span platforms and languages.


Related Posts:

  • What is WSDL? WSDL stands for Web Services Description Language, an XML-based language  that describes Web services and how to access and locate them. … Read More
  • Explain how to document web services. ASP.NET web services are considered as self documenting as they provides all information about what methods are available and what parameters they require using XML based standard called WSDL. We can also provide addition … Read More
  • What is UDDI? UDDI stands for Universal Description, Discovery and Integration. It is an open,  Internet-based specification that offers directory service for storing information  about web services. … Read More
  • Web services vs. CORBA and DCOM Web services Web services use HTTP protocol for sending and receiving messages between the applications.  The data encoding in web services is based on XML.  Web services are defined using WSDL (Web Services Descr… Read More
  • Advantages of .Net Web Services Web Services are supported on a wide range of platforms. Web services may extend its interface and add new methods without affecting the clients as long as they still provide the old methods and parameters. A client makes… Read More

0 comments:

Post a Comment