调用 SQL Server Endpoint Web 服务

发布于 2024-07-18 08:57:21 字数 66 浏览 10 评论 0 原文

据我所知,SQL Server 端点使用 SOAP 返回数据。 有谁知道他们是否可以返回 JSON 数据? 谢谢!

I understand that SQL Server endpoint returns data using SOAP.
Does anyone know if they can return JSON data?
Thanks!

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

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

发布评论

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

评论(2

简单 2024-07-25 08:57:21

本机 HTTP 端点只能返回 SOAP 消息。

但是,如果您在声明的 FOR SOAP 部分中指定 FORMAT = NONE,则可以关闭 SOAP 信封的生成。
您可以使用它为您自己的存储过程提供 HTTP 包装器,其中 JSON-ise SQL 服务器数据(请参阅 在线书籍,详细描述了您的程序必须满足的非常具体的要求)。

您应该注意,在 SQL 2008 中已弃用本机端点

Native HTTP endpoints can only return SOAP messages.

However it's possible to switch off the generation of the SOAP envelope, if you specify FORMAT = NONE in the FOR SOAP section of the declaration.
You could use this to provide an HTTP wrapper to your own stored procedure(s) which JSON-ise SQL server data (see books online for a detailed description of the very specific requirements your procedure must fulfill).

You should be aware that native endpoints are deprecated in SQL 2008.

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