I have an Silverlight 4 application, that communicates with an WCF-Service. The user needs to sign on to access the WCF-Services.
Now I want to prevent the user from reentering username and password each time he starts the silverlight app. What is the best way to achieve this? I thought about cookies to save username / (hashed) passowrd, but cookies can’t handle Unicode and the password is saved as Unicode.
What would you suggest?
Thanks in advance,
Frank
Well you can do some thing like after first login, save its credential in Encrypted format in Isolated Storage. When SL starts pull up that and pass that to service to validate and then login.