Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am trying to connect to MySQL using dotnet core application in VS 2015.
I am getting "
SSL not supported in this WinRT release
" error.

Can you please let me know why I am getting this issue?

What I have tried:

I have below connection string in my appsettings.json file:


{
  "ApplicationInsights": {
    "InstrumentationKey": ""
  },
  "ConnectionStrings": {
    "DefaultConnection": "Server=192.168.3.233;port=3306;Database=softwebcrm;Uid=softweb;Pwd=softweb#123;"
  },
  "Logging": {
    "IncludeScopes": false,
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information"
    }
  }
}
Posted
Updated 8-May-17 4:16am
v2

1 solution

MySQL Connector does not support SSL for WinRT.
Add 'SslMode=None' to your connection string to resolve the problem...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900