如何重写“帮助页面”上的表单操作ASP.NET Web 服务的
对于普通的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要更改帮助页面,请使用< 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.aspx.
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.