OpenId with Silverlight

What are your solutions?

Has anyone successfully implemented OpenId with Silverlight 2?

OpenId requires redirecting to an external site. I was looking forward to the weak Silverlighty login page for my application, but this will not happen when looking at things!

+4
source share
1 answer

This is an interesting problem. An SL2 application should not check the OpenID statement, but rather pass it to the server to check it. An SL2 application can test it, but then nonce will be consumed, and the server cannot check it again, but ultimately the server MUST check its security. Therefore, most likely, the login should occur before the appearance of the SL2 application, and then it can appear with the already registered context.

There are probably other ways to do this, but the above server restriction, which is a statement verifier, is clear.

+2
source

All Articles