Reputation: 1291
Since 10.2, SQL Server enables SSL by default, which is a breaking change by their own admission:
Now, the question is how to adapt an existing, good/working JDBC connection string to not use encryption. E.g. what should this URL become?
jdbc:sqlserver://localhost:1433;databaseName=SomeDatabase;
Upvotes: 19
Views: 24229
Reputation: 1291
Seems to be just add encrypt=false;
to the end, and the app starts up again.
Upvotes: 22