如何重写“帮助页面”上的表单操作ASP.NET Web 服务的

发布于 2024-12-06 13:36:37 字数 628 浏览 1 评论 0原文

对于普通的 .aspx 页面,我可以将 Form.browser 文件放入 App_Browsers 目录中,如下所示。

<browsers>
    <browser refID="Default">
        <controlAdapters>
              <adapter controlType="System.Web.UI.HtmlControls.HtmlForm"
                       adapterType="MyProject.FormRewriterControlAdapter" />
        </controlAdapters>
    </browser>
</browsers>

在该类中,我可以重写表单的操作属性。但是,对于 Web 服务帮助页面,不考虑此文件,并且使用默认操作(使用绝对 URL)编写表单。

这不允许我使用反向代理(Ionic 的 ISAPI 重写过滤器 - IIRF)来访问我的 Web 服务。

如何完成此操作并正确重写帮助页面上的表单操作?

For normal .aspx pages I can just put a Form.browser file into the App_Browsers directory like the following.

<browsers>
    <browser refID="Default">
        <controlAdapters>
              <adapter controlType="System.Web.UI.HtmlControls.HtmlForm"
                       adapterType="MyProject.FormRewriterControlAdapter" />
        </controlAdapters>
    </browser>
</browsers>

And in that class I can rewrite the action attribute of the form. However in the case of web service help pages, this file is not considered and the form is written with the default action (using an absolute URL).

This doesn't let me use a reverse proxy (Ionic's ISAPI Rewrite Filter - IIRF) to access my web service.

How can I accomplish this and rewrite the form action on the help page correctly?

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

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

发布评论

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

评论(1

白昼 2024-12-13 13:36:37

如果您需要更改帮助页面,请使用 < web.config 中的 /code>元素。

您可以在 C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\DefaultWsdlHelpGenerator.as‌ px 中找到默认帮助页面。

请注意,这仅在通过帮助页面测试服务时对您有帮助。它与客户如何访问服务无关。

If you need to change the help page, use the <wsdlHelpGenerator> element in the web.config.

You can find the default help page at C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\DefaultWsdlHelpGenerator.as‌​px.

Note that this will only help you when testing the service through the help page. It has nothing to do with how clients will access the service.

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