Closed GoogleCodeExporter closed 8 years ago
I'm using rev 559, and face same problem.
It seems that YadisResult sets ClamedId even when the response does not contain
ClamedId Element.
I have found workaround. But I'm not 100% sure if this has any side effect.
YadisResult.java line 170
new UrlIdentifier(_normalizedUrl),
to
(DiscoveryInformation.OPENID2.equals(type) ? new UrlIdentifier(_normalizedUrl)
: null),
Original comment by tomohisa...@gmail.com
on 6 Feb 2009 at 8:10
Won't that change leave out the discovery of OpenID 1.0/1.1 endpoints?
Original comment by andrefcruz
on 9 Feb 2009 at 10:34
How about:
(DiscoveryInformation.OPENID2_OP.equals(type) ? null: new
UrlIdentifier(_normalizedUrl)),
This way only openid2 OP's are nulled.
Original comment by andrefcruz
on 9 Feb 2009 at 5:16
Thanks for finding and reporting this! Fixed in rev560.
Original comment by Johnny.B...@gmail.com
on 14 Feb 2009 at 4:08
Original issue reported on code.google.com by
andrefcruz
on 3 Feb 2009 at 12:17