I have a service that needs to implement something like like a "session" where several objects are created that are used across several service calls, then disposed when the session ends.
A database is way overkill. It's similar to establishing a session on a web site that lets you visit several web pages that collect data and stash it away, like a shopping cart.
In fact, it's just a couple of stringlists with a handful of strings in them, and an object that's initialized with some data that needs to be used each time the service is called for the given session.
I could reinitialize the object each time, but ... why? It's a lot of needless overhead.
What's the best way to do this with XData other than using a DB?