为什么我的没有生成这个文件,我只有一个TRemotable返回类型
GetReportsResult = class(TRemotable) //但是这个类并不是DATASET结构,这个结构好象应该是在XML文件里?
private
Fschema: WideString;
published
property schema: WideString read Fschema write Fschema;
end;
// ************************************************************************ //
// Namespace : http://tempuri.org/
// soapAction: http://tempuri.org/GetReports
// transport : http://schemas.xmlsoap.org/soap/http
// style :do
cument
// binding : Service1Soap
// service : Service1
// port : Service1Soap
// URL : http://localhost/WebService1/Service1.asmx
// ************************************************************************ //
Service1Soap = interface(IInvokable)
['{CFE467D4-A39E-2BD2-5836-7685A9E27F8D}']
function GetReports: GetReportsResult;
stdcall;
//这里应该是你说的返回类
end;