Questions tagged [openid4java]

34 questions
1
vote
3 answers

Java Servlet Behaviour Question

I am currently implementing an OpenID Relying Party (RP) and Identity Provider (IdP) with Java HttpServlets using the OpenID4Java library. I have run into trouble getting two servlets to communicate with each other. I believe the problem I am…
zombieball
  • 11
  • 1
1
vote
0 answers

How 'Logjam' attack affects openID since it uses Diffie-Hellman key exchange method?

According to the [1] Diffie-Hellman key exchange get affected by this and openID uses this to establish an association. So how this going to affect openID? [1] -…
Thanuja
  • 443
  • 3
  • 16
1
vote
2 answers

How to find which attribute extensions an OpenId provider supports?

I have been looking at http://code.google.com/p/openid4java/wiki/SampleConsumer and it is hardcoded to work with type "fetch_request". Does it matter which type one wants, is there a way to tell or can one just use Fetch requests.
mP.
  • 18,002
  • 10
  • 71
  • 105
1
vote
1 answer

openid4java YadisException peer not authenticated error

I am writing a Java JSP code that authenthicates against a WSO2 IS server using openid. I have taken the example code from de developer so I get the following: <% ConsumerManager manager = new ConsumerManager (); String _returnURL =…
jordi
  • 1,157
  • 1
  • 13
  • 37
1
vote
0 answers

retrieve openID-url using openid4java

Consider the following code excerpt: String openIDProviderURL = "https://www.google.com/accounts/o8/id"; try { URI loc = getUI().getPage().getLocation(); List discoveries =…
1
vote
0 answers

openid4java I/O Transport Error using Google OpenID and restricting to Google Apps

I'm using openid4java and Google as my OpenID federation. However, I would like to restrict the login to a specific Google App domain. I'm currently the endpoint: https://www.google.com/accounts/o8/site-xrds?hd=example.com The error I get when…
Jay S.
  • 441
  • 1
  • 6
  • 18
1
vote
0 answers

Google oAuth2 & OpenId without Gplus button (Java)

I'd like to create a web-application in Java that uses Google services both for initial authentication and API calls. (e.g. Google Calendar) I want to stay away from Google Apps Engine, because of the overhead it creates and because of the…
Cloud
  • 458
  • 1
  • 13
  • 34
1
vote
1 answer

NoClassDefFoundError in openid4java

I have downloaded openid4java-0.9.6.662 and implemented a class using it. When I execute: List discoveries = manager.discover("https://www.google.com/accounts/o8/id"); I get a java.lang.NoClassDefFoundError:…
Llistes Sugra
  • 991
  • 4
  • 9
  • 24
0
votes
1 answer

OpenId4Java not working for me

Hi I am using openId4Java for my application but for any URL I got the following error. Please help me to solve this problem. Thanks ... exception org.apache.jasper.JasperException: javax.servlet.ServletException:…
ppb
  • 2,299
  • 4
  • 43
  • 75
0
votes
1 answer

How do I run the OpenId4Java app engine sample app?

OpenId4Java have an appengine-consumer in their sample code. However I while I can build the sample I can't figure out how to run it. mvn jetty:run fails and there doesn't seem another obvious start mechanism. I'm developing my other projects using…
Programming Guy
  • 7,259
  • 11
  • 50
  • 59
0
votes
0 answers

how to integrate openid with springboot

I'm new to spring boot and I want to integrate openId provider into our application. I have searched a lot about it but didn't find any suitable article from which I can start. Problem statement: Once user hits our websites url(ex. www.abc.com)…
0
votes
1 answer

OpenID4Java to OpenID Connect

We are using OpenID4Java library in code. How can we upgrade to OpenID Connect as recommended but Google: https://developers.google.com/accounts/docs/OpenID
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100
0
votes
2 answers

WSO2IS with OpenID and Liferay

I followed the guide in the following link https://docs.wso2.com/display/IS500/WSO2+Identity+Server+as+an+OpenID+Provider I successfully added the certificate to the cacerts of Java but after restarting Liferay I got the same error from Liferay…
0
votes
1 answer

openid RP not maintaining session between calls to provider

I have a working "relying party" app that uses a thirdparty OpenID provider for login. However, if I attempt login in with a "home grown" OpenID provider which uses the org.openid4java.server.SampleServer, the session is not maintained between…
0
votes
1 answer

Error with openid4java

I found this project https://code.google.com/p/idp4java which depends on openId4Java but I am facing the following problem when I am running it HTTP Status 500 - org.openid4java.message.IndirectError cannot be cast to…