HttpContext.Current.Session 无法执行并行 wcf 服务

HttpContext.Current.Session cannot execute parallel wcf service

我尝试调用并行请求它正在工作,但如果我添加了这行而不是并行调用。

System.Web.HttpContext.Current.Session["UserName"] = "dtest";

有什么方法可以通过会话调用并行请求?

我也遇到了同样的问题。 以下解决方案对我有帮助。

 if (Context.Request.Path.Contains("xyz.svc"))
 {
       Context.SetSessionStateBehavior(SessionStateBehavior.ReadOnly);
 }

请尝试检查是否有效。