我正在使用WCF服务(通过WebGet
属性).
我正在尝试从WCF服务访问Session,但HttpContext.Current为null
我添加了AspNetCompatibilityRequirements并编辑了web.config但我仍然无法访问会话.
是否可以一起使用WebGet和Session?
谢谢!
对的,这是可能的.如果您编辑web.config:
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
并添加AspNetCompatiblityRequirements,HttpContext.Current应该可用.
再次检查所有内容,也许你已将属性放在错误的位置(界面而不是类?).
原文链接:https://www.f2er.com/aspnet/245557.html