Closed GoogleCodeExporter closed 8 years ago
The best way is to initialize this field in ServerManager.authResponse method
before
call AuthSuccess.createAuthSuccess(...).
It's value depends on existent request parameters and compatibility with OpenID
Auth. 1.1
ServerManager.authResponse(...) {
...
if (authenticatedAndApproved) // positive response
{
....
if (authReq.getReturnTo() != null) {
// ############ initialize SignList automatically ############
if( getSignList() == null ) {
generateSignList( requestParams, isVersion2 );
}
// ###########################################################
return AuthSuccess.createAuthSuccess(
opEndpoint, claimed, id, !authReq.isVersion2(),
authReq.getReturnTo(), _nonceGenerator.next(),
invalidateHandle, assoc, _signList);
}
else
return null;
}
}
Original comment by alisi...@gmail.com
on 13 Dec 2006 at 9:52
Hi,
I've fixed this in rev 79, and pushed it into AuthSuccess.setSigned().
Johnny
Original comment by Johnny.B...@gmail.com
on 23 Jan 2007 at 12:28
Original issue reported on code.google.com by
alisi...@gmail.com
on 13 Dec 2006 at 9:10