Reputation: 33
i have deploy an Azure website and Azure database for it. my website is a MVC website with Account Controller that need username and password to get in using asp .net. i've made the account for login. everything is okay until i login. my Azure apps throw exception that i assume that my web apps cannot connect to my Azure Database.
so i deploy it again in my local machine with local database to check whether my apps is working or not .
here is the list the thing that i've done and the result of login page :
i've point my web apps to azure database in Azure Management Portal like like this
and also the connection string in Web.config file like this
<add key="CMMSConnectionString" value="Data Source=tcp:(my azure database server).database.windows.net,1433;User ID=(my username);Password=(my password);Initial Catalog=(my azure database);" />
this exact same connection string worked from my local website.
Any suggestions would be very welcome. NOTE : CMMS is the name of my project
Upvotes: 1
Views: 476
Reputation: 15860
From the call stack, this does not appear to be a SQL Azure based exception. Is there any non-SQL callouts to other web services/API's in your ValidateEmployee callback?
Upvotes: 1