Readonly access to session in a web service call?

两盒软妹~` 提交于 2020-07-20 07:07:24

问题


We have a .net asmx web service that gets called from javascript (using ASP.Net AJAX), and requires access to Session.

[WebMethod(true)]
public string DoSomethingOnTheServer() { }

We're running into the problem of session being locked on a read/write request. Is there any way to mark a web service method as requiring read-only access to Session?

Thanks!


回答1:


This is a really old thread, but i stumbled on it in my search for an answer to the same question.

I found the answer else where, and will leave it here for other internets in my place:

In Global.asax you can specify for each request, what access the request should have to the session object, and thereby if it should block or not.

private void Application_BeginRequest(object sender, EventArgs e)
{
    // This will set the session to read only for asmx services
    // This will make the asmx services non blocking for other requests as it doesnt lock the session object
    if (Context.Request.Path.Contains(".asmx/"))
    {
        Context.SetSessionStateBehavior(SessionStateBehavior.ReadOnly);
    }
}

This way asmx services always only have read only access to the session and will not block other requests




回答2:


This http://msdn.microsoft.com/en-us/library/aa480509.aspx page seems to suggest that the answer is "no" - you cannot mark a WebSerivce as having EnableSessionState=ReadOnly.

If you are making simultaneous Web service calls from the same process, the requests will be serialized at the server so that only one will execute at any one time. Unlike .ASPX pages that have support for read-only access to the HttpSessionState object, which allows for simultaneous processing of multiple requests, there is no such capability with ASP.NET Web services. All Web method calls with sessions enabled have read/write access and will be serialized within each session.

Warning: That article is old (2002).




回答3:


According to the MSDN documentation of the WebMethod Attribute there are several possible properties, so I'm not sure what the 'true' value in your WebMethod Attribute going to do.

Have you tried:

[WebMethod(EnableSession=true)]

According to this document that should give you full access to the session.



来源:https://stackoverflow.com/questions/935695/readonly-access-to-session-in-a-web-service-call

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!