Using the following connectionstring when setting up a connection to a SQL Azure database from MS SQL Report builder using the Microsoft SQL Azure connection type.
Data Source=xxxxxx.database.windows.net;Initial Catalog=xxx;Encrypt=True;TrustServerCertificate=False;
but getting the following error message
A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The certificate's CN name does not match the passed value.)
When using
TrustServerCertificate=True;
Then the connection is successful.
Looks like the certificate issued by Microsoft Azure is not being trusted by my workstation?