I'm trying to develop a web service with application and session states (e.g.: Session["counter"] = 1, Application["users"] = 33).
I'm aware that web services can use the same functionality as asp.net web apps. But this only works if the caller is a web app as well.
How do I go about making stateful web services when the caller is a windows form or console app.
I've looked at several website/tutorials but can't make any sense of them (CookieContainer ?)
Any help/examples would be really helpful!!
Thanks
Start Free Trial