I have a WCF Service which is hosted in my Web Application. Both are hosted under the same virtual directory. Don't they run under the same Application Domain and share the HttpContext?
I added a new item to my cache from within the WCF service:
HttpContext.Current.Cache["FirstName"] = "Will";
How could I access this value from the web page?
I tried the below after calling the WCF web service but it was null:
HttpContext.Current.Cache["FirstName"]
Thanks,