在NancyFX构建的站点上提供过时的ASP.NET Web服务

时间:2015-02-19 23:58:31

标签: asp.net nancy

我正在处理一些使用旧的ASP.NET asmx Web服务的封闭遗留代码。

我想要做的是包括程序集,然后继承构成我自己网站上的Web服务的类。从那里开始我就像过去一样(MyService.asmx?methodName = ...),但我不确定如何让NancyFX忽略这条路线。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

按照adding Nancy to existing siteusing the fact that directives in web.config are followed top to bottom, and the last one wins的说明,有些内容应该有所帮助:

<handlers>
      <add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*"/>
      <add verb="*" path="*.asmx" type="System.Web.Services.Protocols.WebServiceHandlerFactory, System.Web.Services" validate="false">
</handlers>