Data Snap
03/02/2003
0
No Delphi 6 , eu chamava métodos na aplicação servidora da seguinte forma :
MinhaConexao.AppServer.MeuMetodo(x,y);
No Delphi 7 , o help nos diz para fazermos assim :
var
TempInterface: IMyAppServerDisp;
begin
TempInterface :=IMyAppServerDisp(IDispatchConnection.AppServer));
...
TempInterface.SpecialMethod(x,y);
...
end;
Só que não funciona : Erro = ´Invalid Arguments´
MinhaConexao.AppServer.MeuMetodo(x,y);
No Delphi 7 , o help nos diz para fazermos assim :
var
TempInterface: IMyAppServerDisp;
begin
TempInterface :=IMyAppServerDisp(IDispatchConnection.AppServer));
...
TempInterface.SpecialMethod(x,y);
...
end;
Só que não funciona : Erro = ´Invalid Arguments´
Anonymous
Curtir tópico
+ 0
Responder
Posts
04/02/2003
Renato Moura
Bom dia Ruben.
eu uso char o funcao ou procedimento direto como no delphi6 e funciona normal
eu uso char o funcao ou procedimento direto como no delphi6 e funciona normal
Responder
Clique aqui para fazer login e interagir na Comunidade :)