I am wondering if there is a way to persist variables in the business layer once the clients session has ended in WCF RIA Services. The challange is we are going to be loading a fair amount of data into caching but want the cache to persist, and allow the silverlight client to connect to the cache without recreating it and reloading all the data.

Any ideas or work arounds?

Thank you, Derrick

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I presume the service is hosted on IIS. You can set the ASPNET compatibility on in a web service and then can use Application and Session variables.

Set this in Web.config: <serviceHostingEnvironment aspNetCompatibilityEnabled=”true” />

See: http://social.msdn.microsoft.com/forums/en-US/wcf/thread/71671241-eab0-4b9f-9343-6e4445ed41a5 and http://msdn.microsoft.com/en-us/library/ms733040.aspx

link|improve this answer
Thanks Kangkan. That definitly helped. – Derrick Nov 7 '11 at 6:11
Glad to be of help @Derrick. – Kangkan Nov 7 '11 at 6:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.