zoukankan      html  css  js  c++  java
  • Automation Clients

    Automation Clients

      Automation makes it possible for your application to manipulate objects implemented in another application, or to expose objects so they can be manipulated. An automation client is an application that can manipulate exposed objects belonging to another application. The application that exposes the objects is called the Automation server. The client manipulates the server application’s objects by accessing those objects’ properties and functions.

      There are two types of Automation clients:

    • Clients that dynamically (at run time) acquire information about the properties and operations of the server.

    • Clients that possess static information (provided at compile time) that specifies the properties and operations of the server.

      Clients of the first kind acquire information about the server’s methods and properties by querying the OLE system’s IDispatch mechanism. Although it is adequate to use for dynamic clients, IDispatch is difficult to use for static clients, where the objects being driven must be known at compile time. For static bound clients, the Microsoft Foundation classes provide the class along with ClassWizard support.

      Static bound clients use a proxy class that is statically linked with the client application. This class provides a type-safe C++ encapsulation of the server application’s properties and operations.

      The class COleDispatchDriver provides the principal support for the client side of Automation. Using ClassWizard, you create a class derived fromCOleDispatchDriver.

      You then specify the type-library file describing the properties and functions of the server application’s object. ClassWizard reads this file and creates theCOleDispatchDriver-derived class, with member functions that your application can call to access the server application’s objects in C++ in a type-safe manner. Additional functionality inherited from COleDispatchDriver simplifies the process of calling the proper Automation server.

  • 相关阅读:
    异常问题处理记录(转载篇)
    linux服务器出现大量连接:sshd: root@notty
    第4章 Python运算符
    第2章 python基础知识
    第1章 python环境搭建
    Tomcat漏洞升级
    第3章 数据类型、运算符和表达式
    第2章 C语言基础知识
    第1章 概述
    第1章 企业管理概论
  • 原文地址:https://www.cnblogs.com/tekkaman/p/2585346.html
Copyright © 2011-2022 走看看