Can I allow AspNetCompatibilityRequirementsMode for net.tcp WCF services?
As in the title - i'm strugglin开发者_如何学Gog to get my services to be hosted outside of basicHttp bindings...
No you can't. Once you use AspNetCompatibility you degrade WCF service to .asmx service and you have all its limitations - including tight coupling with HTTP protocol because ASP.NET pipeline works only for HTTP(S) protocol.
精彩评论