Is it possible to retrieve HttpRuntime.Cache
from another application?
i am having two applications ,
for example App-A, App-B
in App-A i am inserting values to cache
HttpRuntime.Cache.Insert(sCacheKey, sCacheValue, Nothing, Now.AddHours(CInt(System.Configuration.ConfigurationManager.AppSettings("CacheExpirationHours"))), TimeSpan.Zero)
I am not able to retrieve the values in App-B
Dim strList As String
strList = HttpRuntime.Cache.Get(sCacheKey)
it is simply returning as Nothing. what i am doing wrong?