I have a silverlight web application that maybe open for days. It uses a legacy web service that uses session…
How can I keep the session of the web service alive as long as the Silverlight appication is alive….
Good times
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are in control of both the Silverlight Client and the Webservice, you could add a Keep-Alive Method to the Service and periodically call it via Timer from the Silverlight Client. It’s definitely not pretty though. In my opinion it would be better to find a way to work out a solution that does not require to maintain session state (or state in general) within the service.