AJAX with Web services and ASP.NET SessionState

Posted by needhelp1 on Stack Overflow See other posts from Stack Overflow or by needhelp1
Published on 2010-04-25T07:07:13Z Indexed on 2010/04/25 7:13 UTC
Read the original article Hit count: 364

Filed under:
|
|
|

We have an application which uses ScriptManager to generate a client-side proxy which makes AJAX calls to web services. The web services being invoked live in a separate appDomain(separate cluster altogether). The problem is that our application uses a State server for storing session. I want the web services to be able to access session also. First off, does anyone see anything wrong with the client making web service calls to a separate cluster(we're hoping this would be a better approach for scalability)?

I was thinking that possibly anytime there is an update to the session dictionary in one appDomain, automatically update the session in the other appDomain also(referring to the web service appDomain, don't know how to do this, only theoretical). What do others think?

Thanks!

© Stack Overflow or respective owner

Related posts about AJAX

Related posts about web