2010-04-12 2 views
2

mon développement url @: http://192.168.0.1:8888/com.company.MyEntryPoint/MyEntrypoint.html mon url @ env direct: http://www.example.com/com.company.MyEntryPoint/MyEntrypoint.htmlcomment spécifier royaume id ouvert openid4java 0.9.5

J'ai besoin des utilisateurs pour l'authentification avec Open ID, c'est comment je veux que mon royaume à être: * .company.MyEntryPoint

J'ai écrit un code simple pour spécifier royaume:

AuthRequest authReq = 
    manager.authenticate(
     discovered, 
     returnToUrl, 
     "*.company.MyEntryPoint" 
    ); 

il ne fonctionne pas. Exception:

org.openid4java.message.MessageException: 0x301: Realm verification failed (2) for: *.company.MyEntryPoint 
    at org.openid4java.message.AuthRequest.validate(AuthRequest.java:354) 
    at org.openid4java.message.AuthRequest.createAuthRequest(AuthRequest.java:101) 
    at org.openid4java.consumer.ConsumerManager.authenticate(ConsumerManager.java:1073) 

De toutes les combinaisons que j'ai essayé, curieusement, ce qui suit travaillé:

AuthRequest authReq = 
    manager.authenticate(
     discovered, 
     returnToUrl, 
     "http://localhost:8888/com.capgent.MyEntryPoint" 
    ); 

Cela ne résout pas mon problème, mais plutôt complique :)

Selon google et open id spec il aurait dû travaillé

extrait complet de code:

List discoveries = manager.discover(clientUrl); 
DiscoveryInformation discovered = manager.associate(discoveries); 
AuthRequest authReq = manager.authenticate(discovered, returnToUrl,"*.company.MyEntryPoint"); 
FetchRequest fetch = FetchRequest.createFetchRequest(); 
fetch.addAttribute("email", "http://schema.openid.net/contact/email", true); 
fetch.addAttribute("country", "http://axschema.org/contact/country/home", true); 
fetch.addAttribute("firstname", "http://axschema.org/namePerson/first", true); 
fetch.addAttribute("lastname", "http://axschema.org/namePerson/last", true); 
fetch.addAttribute("language", "http://axschema.org/pref/language", true); 
authReq.addExtension(fetch); 
String returnStr; 
if (!discovered.isVersion2()) 
{ 
    returnStr = authReq.getDestinationUrl(true); 
} 
else 
{ 
    returnStr = authReq.getDestinationUrl(false); 
} 

Qu'est-ce que je fais de mal ici?

+0

http://code.google.com/p/openid4java/source/browse/trunk/src/org/openid4java/server/RealmVerifier.java?r=631#164 mise à jour, if (realmUrl.getAuthority(). startsWith ("*.")) realm = realm.replaceFirst ("\\ * \\.", "www."); –

Répondre

0

returnStr = authReq.getDestinationUrl (faux); => returnStr = authReq.getDestinationUrl (true);

Questions connexes