WCF Configuring server to remember data
I currently have a service in WCF where it processes requests made by a client. However, it caches some data that the client sends it. It then does computations on the data. At any point the client should be able to retrieve some of the data. It is at the discretion of the user (when a Button is clicked, an AJAX query is sent to get some of the data). The problem I'm having is that as soon as another client connects, and starts sending requests, the data that the original client sent is now distorted. I was wondering how I can resolve this. I've attempted to use sessions, as I was looking for