如何上传数据集到.net开发的中间层 ( 积分: 200 )

  • 主题发起人 主题发起人 wyj1974
  • 开始时间 开始时间
W

wyj1974

Unregistered / Unconfirmed
GUEST, unregistred user!
中间层是.net开发的,提供了一个上传数据集的函数,然后客户端按照其格式生成了一个XML文件,请问如何传输.
ds = class(TRemotable)
private
Fschema: WideString;
published
property schema: WideString read Fschema write Fschema;
end;

function UpEntedata(const ds: ds): Boolean;
stdcall;
其中DS在.net中为DataSet,客户端用的是一个XML文件.
感谢!!!
 
中间层是.net开发的,提供了一个上传数据集的函数,然后客户端按照其格式生成了一个XML文件,请问如何传输.
ds = class(TRemotable)
private
Fschema: WideString;
published
property schema: WideString read Fschema write Fschema;
end;

function UpEntedata(const ds: ds): Boolean;
stdcall;
其中DS在.net中为DataSet,客户端用的是一个XML文件.
感谢!!!
 
Have a look the source code from this link:
http://codecentral.borland.com/Item.aspx?id=21053
It demonstrates routine filling .NET DataSet with DATAPACKET file format. Supports nested datasets.
Hope this help.
 
后退
顶部