SQL Server 2008 的本机 XML Web 服务

发布于 2024-10-08 07:43:34 字数 257 浏览 3 评论 0原文

我想共享 SQL Server 2008 数据库中的一些小表。客户端是基于 html/javascript 的。我开始使用 SQL Server 的本机 XML Web 服务,但它在 SQL Server 2008 中已弃用< /a>.

除了从头开始构建数据服务之外,还有其他快速且廉价的解决方案吗?

I want to share a few small tables from my SQL Server 2008 database. Client is html/javascript based. I started with Native XML Web Services for SQL Server, but it's deprecated in SQL Server 2008.

Is there any other quick and cheap solution, rather then building data service from scratch?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

美人如玉 2024-10-15 07:43:34

WCF 数据服务(基于 REST 的 HTTP 服务)是可行的方法,基本上取代了“本机”SQL Server XML Web 服务。

阅读有关 WCF 数据服务的所有内容,并观看大量白皮书、教程和介绍视频等等。 WCF 数据服务是 Microsoft OData 协议的具体实现。

WCF Data Services (REST-based HTTP services) are the way to go and basically replace the "native" SQL Server XML web services.

Read all about WCF Data Services and see lots of white papers, tutorials, intro videos and more. The WCF Data Services are Microsoft's concrete implementation of the OData protocol.

忘东忘西忘不掉你 2024-10-15 07:43:34

我不知道 SqlServer 的内置功能,但您可以使用 OData 界面快速完成此操作,如下所示此处进行了描述(其中解释了如何使用 stackoverflow 数据库从头开始构建它)。

它使用实体框架,实际上它非常好用,可以快速构建,不需要太多的知识,并且很容易进一步调整。

I don't know about built in functionality of SqlServer, but you could do it very quickly using OData interface, as described here (there it explains how to build it from scratch using stackoverflow database).

It's using Entity Framework, and it's actually very nice to have, quick to build, doesn't require much knowledge about it, and it's easy to tweak further.

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