Maintaining session in Silverlight
I am creating a Silverlight with WCF connectivity. I would like to create and maintain a session after user login in Silverlight and do the following. On successful login, create a session object and store session id, user id, user name, session status On further calls with WCF, the session information needs to be passed from Silverlight to WCF One solution would be to create a session object and pass it as parameter to all methods. Is there any other way of passing the info in all web service calls without passing a member variable? Something similar to persistent Session object in ASP.NET.