0

使用 Delphi 2005,我创建了一个测试应用程序(使用 TForm)来测试 SOAP API。不幸的是,这个 API 声明了一些由 Delphi 保留的枚举(应用程序、系统和终端)。我重命名了 SOAP 文件中的枚举(_Application、_Terminal 和 _System),并且能够编写 OnBeforeExecute 和 OnAfterExecute 方法来用提交前后的原始名称替换这些重命名的枚举。

我现在正在尝试将其合并到我的更大项目中,并希望在类文件(无形式)中捕获此 SOAP API 的所有代码。通过我的测试应用程序,我向表单添加了一个 THTTPRIO 对象(来自工具面板),并且可以轻松地在对象检查器中设置 OnBeforeExecute 和 OnAfterExecute 方法。现在使用类(一个 TComponent),我无法像使用表单一样使用 Tool Palette 添加 THTTPRIO 对象。我尝试通过代码创建 THTTPRIO 对象,但遇到了一些错误。

我得到错误(见下面的代码E2009 incompatible types: 'Parameter lists differ'FEPS_HTTPRIO.OnAfterExecute := HTTPRIOAfterExecute;

为什么我会在这个问题上得到错误,而不是在这个问题上 FEPS_HTTPRIO.OnBeforeExecute := HTTPRIOBeforeExecute;,我如何在我的类中实现这两种方法?

以下是我通过代码创建 THTTPRIO 的方式:

unit c_MoSh;

interface

uses classes, forms, Windows, SysUtils, c_MoShAPI, InvokeRegistry, controls;

Type

  TMoSh = class(TComponent)
  private
    ...
    procedure HTTPRIOBeforeExecute(const MethodName: string;
                                    var SOAPRequest: WideString);
    procedure HTTPRIOAfterExecute(const MethodName: string;
                                    var SOAPResponse: TStream);

  ...

constructor TMoSh.Create();
begin
  FEPS_HTTPRIO := THTTPRIO.Create(self);
  FEPS_HTTPRIO.OnBeforeExecute := HTTPRIOBeforeExecute;
  FEPS_HTTPRIO.OnAfterExecute := HTTPRIOAfterExecute;       <-- Error line

end;

procedure TMosquitoShield.HTTPRIOBeforeExecute(const MethodName: string;
                                    var SOAPRequest: WideString);
var
  tmpString: TStringList;
begin

  try

    SOAPRequest := StringReplace(SOAPRequest,'<ReversalType>_Application','<ReversalType>Application',[RfReplaceAll]);
    SOAPRequest := StringReplace(SOAPRequest,'<ReversalType>_System','<ReversalType>System',[RfReplaceAll]);
    SOAPRequest := StringReplace(SOAPRequest,'<CardholderPresentCode>NotPresent2','<CardholderPresentCode>NotPresent',[RfReplaceAll]);
    SOAPRequest := StringReplace(SOAPRequest,'<DeviceInputCode>NotUsed3','<DeviceInputCode>NotUsed',[RfReplaceAll]);

  except
    on ER : ERemotableException do
      ShowMessage(ER.ClassName + ' error raised, with message : ' + ER.FaultDetail + ' :: '
                    + ER.Message);

    on E : Exception do
      ShowMessage(E.ClassName + ' error raised, with message : ' + E.Message);
  end;

end;

procedure TMosquitoShield.HTTPRIOAfterExecute(const MethodName: string;
                                    var SOAPResponse: TStream);
var
  tmpString: TStringList;
begin

  try
    tmpString := TStringList.Create;
    SOAPResponse.Position := 0;
    tmpString.LoadFromStream(SOAPResponse);

    tmpString.Text := StringReplace(tmpString.Text,'Application','_Application',[RfReplaceAll]);
    tmpString.Text := StringReplace(tmpString.Text,'System','_System',[RfReplaceAll]);
    tmpString.Text := StringReplace(tmpString.Text,'<PASSUpdaterOption>Null','<PASSUpdaterOption>Null2',[RfReplaceAll]);
    tmpString.Text := StringReplace(tmpString.Text,'<TransactionSetupMethod>Null','<TransactionSetupMethod>Null3',[RfReplaceAll]);
    tmpString.Text := StringReplace(tmpString.Text,'<Device>Null','<Device>Null4',[RfReplaceAll]);
    tmpString.Text := StringReplace(tmpString.Text,'<ConsentCode>NotUsed','<ConsentCode>NotUsed2',[RfReplaceAll]);
    tmpString.Text := StringReplace(tmpString.Text,'<DeviceInputCode>NotUsed','<DeviceInputCode>NotUsed3',[RfReplaceAll]);

    SOAPResponse.Position := 0;
    tmpString.SaveToStream(SOAPResponse);

  except
    on ER : ERemotableException do
      ShowMessage(ER.ClassName + ' error raised, with message : ' + ER.FaultDetail + ' :: '
                    + ER.Message);

    on E : Exception do
      ShowMessage(E.ClassName + ' error raised, with message : ' + E.Message);
  end;

end;
4

1 回答 1

4

您的方法签名必须与事件类型的签名完全匹配。删除方法中的varbeforeSOAPResponse参数HTTPRIOAfterExecute

至于您描述的名称冲突,您可以通过在代码元素(枚举成员、变量、类型等)前面加上单元名称来避免它们:SOAP_API.Application- 对于 SOAP 枚举,Forms.Application对于 DelphiApplication全局。

于 2013-04-24T13:43:34.347 回答