1

重複の可能性:
Delphi SOAP エンベロープと WCF

C# で自己ホスト型の WCF アプリケーションを作成しました。製本方法はBasicHttpBinding (SOAP). 次に、サービスを使用するクライアント C# アプリケーションを作成し、Visual Studio でサービス参照を追加しましたが、エラーはまったくありませんでした。ここまではすべて問題ありません。Delphi 7 クライアントに接続しようとすると問題が発生します。私が行った手順は次のとおりです。

  1. 新しいアプリケーションを作成しました
  2. フォームに HTTPRIO コンポーネントをドロップ
  3. WSDL Importer Wizard インポート サービスを使用
  4. 手順 3 で作成したファイルに FRS.pas という名前を付けて保存しました。
  5. 主な用途「用途」にFRSを追加
  6. アプリケーションを実行すると、「[エラー] FRS.pas(52): 宣言されていない識別子: 'GetOptions'」および「[致命的なエラー] Unit1.pas(7): 使用されているユニット 'FRS.pas' をコンパイルできませんでした」というエラー メッセージが表示される

ここに生成されたコードがあります

// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL     : http://localhost:933/FRS?wsdl
// Encoding : utf-8
// Version  : 1.0
// (29.11.2012 13:16:07 - 1.33.2.5)
// ************************************************************************ //

unit FRS;

interface

uses InvokeRegistry, SOAPHTTPClient, Types, XSBuiltIns;

type

  // ************************************************************************ //
  // The following types, referred to in the WSDL document are not being represented
  // in this file. They are either aliases[@] of other types represented or were                 referred
  // to but never[!] declared in the document. The types from the latter category
  // typically map to predefined/known XML or Borland types; however, they could also 
  // indicate incorrect WSDL documents that failed to declare or import a schema type.
  // ************************************************************************ //
  // !:GetOptions      - "http://tempuri.org/"
  // !:GetOptionsResponse - "http://tempuri.org/"
  // !:SetOptions      - "http://tempuri.org/"
  // !:SetOptionsResponse - "http://tempuri.org/"
  // !:Beep            - "http://tempuri.org/"
  // !:BeepResponse    - "http://tempuri.org/"
  // !:GetStatus       - "http://tempuri.org/"
  // !:GetStatusResponse - "http://tempuri.org/"
  // !:RegisterReceipt - "http://tempuri.org/"
  // !:RegisterReceiptResponse - "http://tempuri.org/"
  // !:RegisterBill    - "http://tempuri.org/"
  // !:RegisterBillResponse - "http://tempuri.org/"
  // !:PrintReport     - "http://tempuri.org/"
  // !:PrintReportResponse - "http://tempuri.org/"


  // ************************************************************************ //
  // Namespace : http://tempuri.org/
  // soapAction: http://tempuri.org/IFRS/%operationName%
  // transport : http://schemas.xmlsoap.org/soap/http
  // binding   : BasicHttpBinding_IFRS
  // service   : FRS
  // port      : BasicHttpBinding_IFRS
  // URL       : http://localhost:933/FRS/soap
  // ************************************************************************ //
  IFRS = interface(IInvokable)
  ['{75F3494A-C58E-25D0-475B-CD49AEDABE03}']
    function  GetOptions(const parameters: GetOptions): GetOptionsResponse; stdcall;
    function  SetOptions(const parameters: SetOptions): SetOptionsResponse; stdcall;
    function  Beep(const parameters: Beep): BeepResponse; stdcall;
    function  GetStatus(const parameters: GetStatus): GetStatusResponse; stdcall;
    function  RegisterReceipt(const parameters: RegisterReceipt):     RegisterReceiptResponse; stdcall;
    function  RegisterBill(const parameters: RegisterBill): RegisterBillResponse; stdcall;
    function  PrintReport(const parameters: PrintReport): PrintReportResponse; stdcall;
  end;

function GetIFRS(UseWSDL: Boolean=System.False; Addr: string=''; HTTPRIO: THTTPRIO =     nil): IFRS;


implementation

function GetIFRS(UseWSDL: Boolean; Addr: string; HTTPRIO: THTTPRIO): IFRS;
const
  defWSDL = 'http://localhost:933/FRS?wsdl';
  defURL  = 'http://localhost:933/FRS/soap';
  defSvc  = 'FRS';
  defPrt  = 'BasicHttpBinding_IFRS';
var
  RIO: THTTPRIO;
begin
  Result := nil;
  if (Addr = '') then
  begin
    if UseWSDL then
      Addr := defWSDL
    else
      Addr := defURL;
  end;
  if HTTPRIO = nil then
    RIO := THTTPRIO.Create(nil)
  else
    RIO := HTTPRIO;
  try
    Result := (RIO as IFRS);
    if UseWSDL then
    begin
      RIO.WSDLLocation := Addr;
      RIO.Service := defSvc;
      RIO.Port := defPrt;
    end else
      RIO.URL := Addr;
  finally
    if (Result = nil) and (HTTPRIO = nil) then
      RIO.Free;
  end;
end;


initialization
  InvRegistry.RegisterInterface(TypeInfo(IFRS), 'http://tempuri.org/', 'utf-8');
  InvRegistry.RegisterDefaultSOAPAction(TypeInfo(IFRS),     'http://tempuri.org/IFRS/%operationName%');
  InvRegistry.RegisterInvokeOptions(TypeInfo(IFRS), ioLiteral);

end.

そして、ここにc#サービスインターフェースがあります

[ServiceContract]
public interface IFRS
{
    [OperationContract]
    string GetOptions();

    [OperationContract]
    void SetOptions(string xml);

    [OperationContract]
    void Beep();

    [OperationContract]
    string GetStatus();

    [OperationContract]
    void RegisterReceipt(string xml);

    [OperationContract]
    void RegisterBill(string xml);

    [OperationContract]
    void PrintReport(string xml);
}

私が理解できるように、いくつかの互換性の問題があるため、c# クライアントは正常に動作します。Delphi は苦手ですが、動作するサンプルを提供する必要があります。誰かがこの種の問題に直面している場合は、助けてください。

4

0 に答える 0