I am trying to use session in my WCF service (webHttp), but the session is not consistent between requests (When I make the second call to the service the session is not NULL, but the key I inserted doesn't exist and the session ID is different).
I checked and the default InstanceContextMode is PerSession, which as I understand should be suitable for my requirements.
Are there any other configurations I need for using session in WCF?
Thanks!