S
sixeight
Unregistered / Unconfirmed
GUEST, unregistred user!
这几天看了一下书,用使用CreateCOMObject方法,服务器端我创建RemoteDataModule,自动产生了一个接口,如IMyTest,这个接口有 Func_1方法,客户端可以这样用CreateCOMObject来调用:
var
intf: IMyTest;
begin
intf := CreateComObject(Server_TLB.CLASS_MyTest) as IMyTest;
intf.Func_1;
end;
现在我想自已再定义一个接口,如IMyTest2,实现类TMyTest2, 这个接口应该从哪里继承才能注册(是不是要自已写)并可在客户端调用。
不知道这样的思路有没有错误? 大家在作业务逻辑层是怎样设计的?
var
intf: IMyTest;
begin
intf := CreateComObject(Server_TLB.CLASS_MyTest) as IMyTest;
intf.Func_1;
end;
现在我想自已再定义一个接口,如IMyTest2,实现类TMyTest2, 这个接口应该从哪里继承才能注册(是不是要自已写)并可在客户端调用。
不知道这样的思路有没有错误? 大家在作业务逻辑层是怎样设计的?