yes , once i added the performance tab, i saw how the sessions where building up,
i had to fiddle with things to get it right , but i can trust the counters, right?
i have delete session on logout = true
I turn off allow keep alive - (probably not needed)
it has been working, so long as i logoff at the end of a servicemethod
- this kind of dedicates the server for the APIs, which in this case i can live with, as i have s separate server for pages..
but i'd rather have the option that each method automatically can simply delete/ clean up everything like it was never there.
Perhaps with the default option set in the NetWebservice not the webMethod that indicates all its methods are stateless?
i tried to find a place in web handler like getpassword or authenticate
where i also do things like Free(self._CookieQueue) to remove the sessionid.
but its too to soon for logout, as there is stuff in a netwebmethod that may depend on session data (loggedin state for example)
so It would be great if you could add something, thanks.
poul