在我看到的每一个例子中,当我想将这个控制台应用程序保留为最终时,会使用Form,这一点并没有走得太远。
以下代码每次都会以EIPAbstractError: IPProcs is not defined. Make sure IPPeerCommon() is in the uses clauses
崩溃。
将其添加到Uses子句中会使用No peer with the interface guid [xxx-xx...]
program EMV_ConsoleTest;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils, REST.Client;
var
LClient: TRESTClient;
begin
try
LClient := TRESTClient.Create('http://localhost:9000/');
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.