asp.net - Does IHttpModule module work with WCF service, -
i have wcf service. want each , request wcf operation scanned throughthe ihttpmodule module. not hitting ihttpmodule.
any highly appreciated.
httpmodules work wcf if run wcf service in asp.net compatibility mode. can enable asp.net compatibility mode either of following way.
using web.config
< system.servicemodel> < servicehostingenvironment aspnetcompatibilityenabled="true"/> < /system.servicemodel>
using attribute
[aspnetcompatibilityrequirements(requirementsmode = aspnetcompatibilityrequirementsmode.allowed)] public class service : iservice { // ... }
Comments
Post a Comment