I am trying to integrate openid authentication in asp.net 4 following this article. I have proceeded as was demonstrated in the article. The problem i face is that only openid login link works. All other links gives an error: Precondition failed.: userSuppliedIdentifier != null

I have uploaded the page here. Also the openid selector from the toolbox doesn't work as i have asked here. Kindly reply.

link|improve this question

When you get the response back from the OpenID OP are you handling that response and storing the user's claimed_identity somewhere? – ashelvey Jun 5 '11 at 20:40
I am storing the fetched response in a session variable. I am displaying the friendly identifier in a label which you can see in the link i shared, if u sign in using open id. But is the problem due to handling of response or is it due to sending of response? or do i have to edit the javascript files as google & yahoo links are also not opening? – Jayesh Jun 6 '11 at 9:54
feedback

1 Answer

up vote 1 down vote accepted

If you are following the example you referred to then in method HandleRelyingPartyRequest, change this line:

var request = openid.CreateRequest(Request.Form["openid_identifier"]); to

var request = openid.CreateRequest(Request.Form["openid_username"]);

and also remove any general exception you have in that method. That should resolve the issue.

Thanks, Raju

link|improve this answer
Nope. Same error. Btw, what diff does the form name here makes? In aspx file the div-openid_inputarea has an input id="openid_identifier", as given in the example. – Jayesh Jun 9 '11 at 19:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.