L
liangzhang3942
Unregistered / Unconfirmed
GUEST, unregistred user!
我想调用接口里面的函数,但是不知道怎样调用,特着急,下面是一个单元的接口函数
unit Service_RySb;
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.
// ************************************************************************ //
// !:string - "http://www.w3.org/2001/XMLSchema"
Service_RysbSoap = interface(IInvokable)
['{189DDA3B-599C-9807-FD08-F30347B43999}']
function F_GetDate: WideString; stdcall;
function F_ZySb(const strZyBlCode: WideString; const strXML: WideString): WideString; stdcall;
end;
function GetService_RysbSoap(UseWSDL: Boolean=System.False; Addr: string=''; HTTPRIO: THTTPRIO = nil): Service_RysbSoap;
implementation
上面是单元的声明内容
我想调用的函数是F_ZySb,请问各位老大怎么调用呀
unit Service_RySb;
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.
// ************************************************************************ //
// !:string - "http://www.w3.org/2001/XMLSchema"
Service_RysbSoap = interface(IInvokable)
['{189DDA3B-599C-9807-FD08-F30347B43999}']
function F_GetDate: WideString; stdcall;
function F_ZySb(const strZyBlCode: WideString; const strXML: WideString): WideString; stdcall;
end;
function GetService_RysbSoap(UseWSDL: Boolean=System.False; Addr: string=''; HTTPRIO: THTTPRIO = nil): Service_RysbSoap;
implementation
上面是单元的声明内容
我想调用的函数是F_ZySb,请问各位老大怎么调用呀