Basically, I have two separate applications lets they be AppA and AppB. I have implemented the cache feature available in
"Microsoft.Practices.EnterpriseLibrary.Caching.dll" and "Microsoft.Practices.EnterpriseLibrary.Common.dll".
I want a cache to be added using AppA
var cacheManager = CacheFactory.GetCacheManager();
cacheManager.Add("SharedData","Data from AppA");
now, i want the next application "AppB" to retrieve this value
var cacheManager = CacheFactory.GetCacheManager();
var data = cacheManager.GetData("SharedData");
is it possible as these application runs in different application domain. If not can anybody suggest me any other alternative to achieve this behavior?