Azure-Samples / active-directory-dotnet-graphapi-web

A .NET 4.5 MVC web app that demonstrates how to query the Azure AD Graph API using the Azure AD Graph Client Library
82 stars 68 forks source link

SSL Connection Error #17

Open nitinmeria opened 9 years ago

nitinmeria commented 9 years ago

I configured the App to use my AAD tenant as you have mentioned but now I am getting : An error occurred during a connection to localhost:44322. SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long)

neothoms commented 9 years ago

Me too.

Everty time the url redirect to an https

baseif commented 9 years ago

Change the In the project properties => Web properties, set the Project Url to be the SSL URL. http://localhost:44322 TO https://localhost:44322/

JHChan314 commented 9 years ago

Have the same issue AND change the properties -> project url to SSL URL can't work

JHChan314 commented 9 years ago

@baseif @neothoms @nitinmeria Fix, just change the port from 44322 to 44333 or anther, maybe your anther program using the 44322 port

vkurpad commented 9 years ago

If you're still seeing the connection error. Change the project url to a port other than the SSL port (44322). Now your SSL endpoint is http://localhost:44322 and your project URL is http://localhost:44333

dkershaw10 commented 8 years ago

Is this still an issue for you @baseif @neothoms @nitinmeria ?