创建Delphi TRestClient时出现EIPAbstractError

时间:2017-02-07 17:38:42

标签: rest delphi

在我看到的每一个例子中,当我想将这个控制台应用程序保留为最终时,会使用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.

0 个答案:

没有答案