调用 SQL Server Endpoint Web 服务
据我所知,SQL Server 端点使用 SOAP 返回数据。 有谁知道他们是否可以返回 JSON 数据? 谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
据我所知,SQL Server 端点使用 SOAP 返回数据。 有谁知道他们是否可以返回 JSON 数据? 谢谢!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
本机 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 theFOR 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.
不,不幸的是他们没有支持JSON。
No, unfortunately they don't support JSON.