将记录返回至 Web 服务时出现问题

发布于 2024-09-29 17:31:45 字数 273 浏览 1 评论 0原文

我在尝试从网络服务显示记录集时遇到一些问题。

目前,我的应用程序涉及一个客户将其值输入到我的网络服务中。
然后,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笛声青案梦长安 2024-10-06 17:31:45

我认为.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文