Hi all, I'm writing a .NET(3.5) web service for an IPhone native app in which I need to manage users' sessions.
Question is - can I just add the [WebMethod (EnableSession = true)]
attribute to my web services, and the native app (which I'm not the one who's writing and hence the ignorance) would be able to use, or should I write an implementation for the session mechanism??
And just for general knowledge - would the .NET session mechanism work if I was to write a web app instead of a native app??
Thank you!