自动生成使用 SOAP WSDL 的代码时出现“Delphi 错误”

问题描述 投票:0回答:1

我使用的是Delphi 10.3.2企业版。

我使用了 Delphi 中的 Importer WSDL,但出现错误:

[dcc32 错误] ConsultaRUCDNI.pas(190): E2029 ';', ')' 或 '=' 预期但 ' <' found

Delphi Programming Error

WSDL 为:http://181.176.170.150:555//ConsultaRUCDNI.svc?wsdl

WSDL

感谢大家的帮助

web-services delphi soap delphi-10.3-rio
1个回答
1
投票

声明

procedure Set_foto(Index : Integer; const ATArray<System.Byte>: TArray<System.Byte>);

是错误的。正确的是:

procedure Set_foto(Index : Integer; const ATArray: TArray<System.Byte>);

顺便说一句,

TArray<System.Byte>
TBytes
,所以你也可以这样写:

procedure Set_foto(Index : Integer; const ATArray: TBytes);
© www.soinside.com 2019 - 2024. All rights reserved.