delphi xe3调用webservice如何调用啊delphi7还会,但xe3就不会了。请问一下。

delphi xe3调用webservice怎么调用啊,delphi7还会,但xe3就不会了。请教一下。。。
delphi xe3调用webservice怎么调用啊,delphi7还会,但xe3就不会了。请教一下。。。
点击按钮后,调用下面的接口,但不知道怎么写代码,请大家指点一下:
/*****************************/
function  CreateUsr(const parameters: CreateUsr): CreateUsrResponse; stdcall;

/*****************************/
  CreateUsrResponse = class(TRemotable)
  private
    FCreateUsrResult: Integer;
    FoutMsg: string;
    FoutMsg_Specified: boolean;
    procedure SetoutMsg(Index: Integer; const Astring: string);
    function  outMsg_Specified(Index: Integer): boolean;
  public
    constructor Create; override;
  published
    property CreateUsrResult: Integer  read FCreateUsrResult write FCreateUsrResult;
    property outMsg:          string   Index (IS_OPTN) read FoutMsg write SetoutMsg stored outMsg_Specified;
  end;
------解决思路----------------------
webservice地址方便发来看看不