Explain the problem with COM - C++

Explain the problem with COM.

- From the security point of view, COM and ActiveX controls are not safe.
- As COM and ActiveX components are run as native code on the user's machine, there are fewer restrictions on what the code can do.
- Many of these problems have been addressed by the introduction of "code Signing" (based on digital signatures), and later by the .NET platform as well.
- Therefore, before an ActiveX control is installed, the user is prompted whether to allow the installation or not. It is possible to disable ActiveX controls altogether, or to only allow a selected few.
What are dual interfaces?
What are dual interfaces? - A dual interface allows its methods to be accessed as dispinterface methods or as vtable methods...
What is the STL, standard template library?
What is the STL, standard template library? - The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterators....
What is the object serialization? - C++
What is the object serialization? - Object Serilization means converting the data into binary data so as to be able to transfer it over the network....
Post your comment