ASMX Web 服务的自定义 WSDL

发布于 2024-10-15 00:06:02 字数 117 浏览 3 评论 0原文

是否可以将自定义 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 技术交流群。

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

发布评论

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

评论(2

绝影如岚 2024-10-22 00:06:02

实际上有一种方法可以做到这一点:
您可以创建自己的 WSDL(即删除您不想发布的方法),然后将其放在专用位置,这允许用户正常绑定到它。

为了防止用户只检索默认的 WSDL (foo.asmx?wsdl),您必须在 Web 服务的 web.config 中翻转一个开关:

  <webServices>
    <protocols>
      <remove name="Documentation"/>
    </protocols>
  </webServices>

相关 MSDN 部分

注意删除文档
协议还禁用 WSDL 文件
任何 XML Web 服务的生成
在 Web 应用程序中。这
防止客户端生成
代理类,除非自定义 WSDL 文件
是为他们创建和提供的。

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:

  <webServices>
    <protocols>
      <remove name="Documentation"/>
    </protocols>
  </webServices>

From the relevant MSDN section:

Note Removing the Documentation
protocol also disables WSDL file
generation for any XML Web services
within the Web application. This
prevents clients from generating a
proxy class unless a custom WSDL file
is created and provided for them.

童话 2024-10-22 00:06:02

我认为您想要的是当您的服务被“?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.

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