views:

92

answers:

1

I am using DotNetOpenAuth to authenticate an app on Windows Azure. From time to time, the system is slow, and I end up with the following error message

Login failed: The maximum time allowed to complete authentication has been exceeded. Please try again.

Any suggestion how to increase this timeout?

+3  A: 

Modify your .config file to change this line:

<openid maxAuthenticationTime="0:05">

(Taken from this code snippet page)

Amber