I need to use or stimulate a very simple session object inside my WCF application.
I just need to save some values at the beginning of the call, and I need access to these values when I look at several different methods of my service.
An Asp.NET session would be very useful to use, so I need to find out what is available in the WCF application to store such values.
Note. This is just a session for each communication session, I do not need to save this session between different calls from the client to the service, etc.
source
share