I have encrypt=true in the connection string to MsSqlServer2008R2 database.
So as i understand the traffic between IIS and database has to be encrypted.
But when i open SQL profiler i see every query that comes from web server is unencrypted (Select from … where …)
Is it correct behavior ?
I have encrypt=true in the connection string to MsSqlServer2008R2 database. So as i understand
Share
Yes, it’s correct. SSL only encrypts the network traffic, but SQL Profiler gets its information directly from the database engine. Have you reviewed the documentation on enabling and testing encryption?