Silverlight LOB app w/ WCF RIA Services on IIS Web farm with ARR for redundancy - suggestions to handle state
I'm wondering if anyone has some experience with this. My concern is with session state. To simplify the issue, we would like to develop services to be stateless, and keep all state on client, in Silverlight frontend. Is WCF RIA using state? what could be the best approach for this?
Any suggestio开发者_如何学Cns on keeping all state on client? Can I use ASP.NET membership authentication with such approach?
Thanks
As far as I know, it's not a safe way to use session in the client (if possible at all). I guess you want to accomplish session state distribution across multiple servers. You can store sessions in SQL Server instead of memory. You can use ASP.NET membership provider or write your own in pair with WCF RIA, no problem here.
精彩评论