将记录返回至 Web 服务时出现问题
我在尝试从网络服务显示记录集时遇到一些问题。
目前,我的应用程序涉及一个客户将其值输入到我的网络服务中。
然后,Webservice 将调用 vb.net 数据库类,该类执行 SQL 存储过程,将记录集返回到数据库类,该类将记录集传递回 Webservice,Webservice 将以 xml 形式将其显示给客户端。
问题是我将记录集从数据库类传递回 Web 服务,格式可以发送回客户端。我似乎无法将记录集转换为字符串格式。以 XML 格式返回记录会更好吗?
有什么想法吗?
I am having some issues in attempting to display a recordset from my webservice.
Currently my application involves a client feeding their values into my webservice.
The webservice will then call a vb.net database class, which executes a SQL stored procedure, returns a recordset to the database class, and the class will pass the recordset back to the webservice, which will display it to the client in xml.
The problem I am having passing the recordset from the database class back to the webservice in a format that can be sent back to the client. I can't seem to convert the recordset to string format. Would it be better to have the record returned in XML format?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为.NET 已经为您完成了大部分工作。如果您的 vb.net 类返回 DATASET 对象,则您已经拥有一个 XML 对象。您可能想要对其进行一些转换,但 XML 已经存在。
查找 dataset.GetXML 方法。
I think .NET has already done most of the work for you. If your vb.net class returns a DATASET object, you already have an XML object. You may want to do some transformations on it, but the XML is already there.
Look for the dataset.GetXML method.