This is driving me nuts! This is the error I receive when to trying to connect to my VM running SQL from my asp.net web app.
'The requested name is valid, but no data of the requested type was found'
Here is my connection string:
connectionString="Server=tcp:xxxx.cloudapp.net,57500;User ID=xxxx;Password=xxxx;Database=xxxx;trusted_connection=false;Integrated Security=false;Encrypt=true;Trusted_Connection=false;TrustServerCertificate=true;" databaseVersion="2008"
- I have an end point for 57500 and it points to 1433 internally.
- I have a firewall exception set for 1433 on the VM.
I tested connecting to Azure from Sql Server on the machine and it connected ok using the doman name and port.
Ideas?