ASMX Web 服务的自定义 WSDL
是否可以将自定义 WSDL 与 .NET WebService 一起使用?我想在我的 .NET WebService 中使用自定义 WSDL,而不是由 .NET 生成的作为我的 WebService 一部分的 WSDL。
Is it possible to use a custom WSDL with a .NET WebService? I would like to use a custom WSDL with my .NET WebService instead of the one generated by .NET as part of my WebService.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上有一种方法可以做到这一点:
您可以创建自己的 WSDL(即删除您不想发布的方法),然后将其放在专用位置,这允许用户正常绑定到它。
为了防止用户只检索默认的 WSDL (
foo.asmx?wsdl
),您必须在 Web 服务的 web.config 中翻转一个开关:从 相关 MSDN 部分:
Actually there is a way to do this:
You can create your own WSDL (i.e. removing methods you don't want to publish) and then make it available at a dedicated spot, this allows users to bind to it as normal.
To prevent users from just retrieving the default WSDL (
foo.asmx?wsdl
) you have to flip a switch in the web.config of your web service:From the relevant MSDN section:
我认为您想要的是当您的服务被“?wsdl”查询字符串击中时替换 .NET 生成的文件。
不,没有直接的方法可以做到这一点。相反,只需将 .wsdl 放在网站上,然后告诉服务的使用者从那里获取它即可。没有标准规定“?wsdl”是获取 WSDL 文件的唯一方法。
I presume that what you want is to replace the file generated by .NET when your service is hit with the "?wsdl" query string on it.
No, there is no direct way to do this. Instead, simply place your .wsdl on a web site, and tell the consumers of your service to get it from there. There is no standard saying that "?wsdl" is the only way to get a WSDL file.