Venegas
unread,Oct 8, 2009, 6:08:34 PM10/8/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to openid-server-dev
Hi, congratulations to people work in JOS.
I detected a error in source code. This mistake is resolved easy:
1. Error is locate in class
cn.net.openid.jos.web.ApprovingRequestProcessor module jos-web
2. Line 209, replace this
response = this.serverManager.authResponse(authRequest, opLocalId,
userSelectedClaimedId, authenticatedAndApproved.booleanValue(),
signNow);
for:
response = this.serverManager.authResponse( new ParameterList
(authRequest.getParameterMap()), opLocalId,userSelectedClaimedId,
authenticatedAndApproved.booleanValue(),
signNow);
The problem with the first parameters was illegal type.
bye