Samples - OpenId - Google Login - Hostname in Certificate didn't match
Hello,
I am trying to run the OpenId sample from the latest version in git. I start it up using 'gradle jettyRun' and proceed to localhost:8080. Once I get there, I click on google as my account provider and receive the following error message in the browser:
"Your login attempt was not successful, try again.
Reason: Unable to process claimed identity 'https://www.google.com/accounts/o8/id'."
There is a stack trace on the console - the main points are here:
o.s.s.o.OpenIDAuthenticationFilter - Failed to consume claimedIdentity: https://www.google.com/accounts/o8/id org.springframework.security.openid.OpenIDConsumer Exception: Error during discovery
Caused by: org.openid4java.discovery.yadis.YadisException: 0x704: I/O transport error: hostname in certificate didn't match: <www.google.com/74.125.225.82> != <www.google.com>
Caused by: javax.net.ssl.SSLException: hostname in certificate didn't match: <www.google.com/74.125.225.82> != <www.google.com>
I've attached the full stacktrace to this post rather than pollute the entire post with exceptions.
Could someone please help me? I've been trying to learn how to use Spring Security with Google as an OpenId provider, and if I can't get the sample application working, I don't have much hope for being able to do it on my own.
I am using Java 1.6.0_27 64 bit and this is happening on both of my Windows 7 64 bit computers.