asp.net – 来自WebHttpBinding的WCF服务中的Access Session

前端之家收集整理的这篇文章主要介绍了asp.net – 来自WebHttpBinding的WCF服务中的Access Session前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用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

猜你在找的asp.Net相关文章