Microsoft Web API 生成 WSDL 的最简单路径
Web API 与一些较旧的 Microsoft Web 服务技术不同,它不会自动生成 WSDL 文档。
自动生成(或快速手动生成)与每个服务调用关联的 WSDL 的最简单方法是什么?
Web API, unlike some of the older Microsoft web service technologies, does not generate WSDL documentation automatically.
What's the easiest way for it to automatically generate (or quickly manually generate) the WSDL associated with each service call?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Web API 是一种创建 REST 服务的技术,而 REST 服务不使用 WSDL,因此您的服务无法生成 REST 服务。 MS和WCF支持的WSDL 1.1甚至不提供描述REST服务的能力。
WSDL 2.0 或 WADL 提供 REST 服务描述,但 MS 和 WCF 都不支持它们,并且这些标准尚未得到更广泛的接受和支持。
Web API is technology to create REST services and REST services don't use WSDL so there is no way for your service to generate one. WSDL 1.1 supported by MS and WCF even doesn't offer ability to describe REST services.
WSDL 2.0 or WADL offers REST service description but MS and WCF supports neither of them and these standards were not broader accepted and supported yet.