ProcessAjaxOpenIdResponse doesn't exist in OpenAuth library?

Posted by Stacey on Stack Overflow See other posts from Stack Overflow or by Stacey
Published on 2010-04-03T18:45:58Z Indexed on 2010/04/03 18:53 UTC
Read the original article Hit count: 1046

Filed under:
|

Using the NerdDinner 2.0 source code, I was trying to emulate its use of OpenID. All was fine and good until I ran into this line of code.. ( seen in the source code at : http://nerddinner.codeplex.com/sourcecontrol/network/Show?projectName=nerddinner&changeSetId=46375#952606 ) - ( trunk/nerddinner/services/OpenIdRelyingPartyService.cs )

    public ActionResult ProcessAjaxOpenIdResponse() {
        return relyingParty.ProcessAjaxOpenIdResponse().AsActionResult();
    }

ProcessAjaxOpenIdResponse doesn't exist, though!

If I download the nerddinner application and follow the dependancies, I can see that the OpenAuth library they use has this method. However, getting the newest version from http://www.dotnetopenauth.net/ - the library does not have this method.

Any ideas on what happened to it, and what I should use instead?

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about dotnetopenauth