实现多个接口的问题(100分)

  • 主题发起人 主题发起人 first
  • 开始时间 开始时间
F

first

Unregistered / Unconfirmed
GUEST, unregistred user!
在数据模块中创建接口Interface11和Interface2,创建CoClass1,CoClass1实现
Interface11和Interface2,
在客户端掉用Interface2的方法时为什么报'无效的参数数据目',不关方法有无参数都
报此错误
调用方式为Dispatch Table
Var
aDisp: Interface2Disp;//接口Interface2
begin
aDisp := Interface2Disp(IDispatch(Socket.AppServer));
aDisp.Method1;
end;
 
到入接口文件 就是 接口工程文件名_TLB.pas
Var
aDisp: Interface2;//接口Interface2
begin
aDisp := Interface2.Create;
//或者创建远程的 aDisp := Interface2.CreateRemote('IP');
aDisp.Method1;
end;
 
to 强人
接口文件当然导入了,
Interface2.CreateRemote('IP');
报没有注册类别的错误,可我已注册了呀
 
服务端的接口Interface2要不要注册??
 
后退
顶部