WCF中關於HttpContext.Current為空的解決方法

兵工廠三劍客發表於2018-07-13

轉載自:WCF中關於HttpContext.Current為空的解決方法

1. 在hosting WCF的web.config中加入:

<system.serviceModel>

    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>

</system.serviceModel>

2. 在Service的類定義上加上下面Attribute:

[AspNetCompatibilityrequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]

相關文章