在soap server 数据模块接口中定义一个函数可以正常工作,但是定义多个函数则客户端在导入WSDL出现地址错误。(服务器可以运行,可以导出WSDL)
ISY_Employee = interface(IAppServerSOAP)
  ['{084FB812-D69D-EEF8-5284-B0D9C4CB6D3A}']
    function  GetEmpID: WideString; stdcall;
    function  ChekEmpCode(const AEmpCode: WideString;   const AEmpID: WideString; const iState: Integer):    Integer; stdcall;
end;
出错而改成下面的则能够导入WSDL
ISY_Employee = interface(IInvokable)
  ['{084FB812-D69D-EEF8-5284-B0D9C4CB6D3A}']
    function  GetEmpID: WideString; stdcall;
    function  ChekEmpCode(const AEmpCode: WideString;   const AEmpID: WideString; const iState: Integer):    Integer; stdcall;
end;help me