SoapServerIntf.pas
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit SoapServerIntf;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, DB, DBClient, SoapConn, Grids, DBGrids, StdCtrls,
- Rio, SoapHTTPClient, Midas, InvokeRegistry;
- type
- ISoapTestDm = interface(IAppServer)
- ['{1F109687-6D8B-4F85-9BF5-EFFC87A9F10F}']
- function GetRecordCount: Integer;
- end;
- implementation
- initialization
- InvRegistry.RegisterInterface(TypeInfo(ISoapTestDm));
- end.