osx - Error when Debugging in Visual Studio for the Mac; how to resolve? -


i'm using visual studio mac, , i'm receiving following error message:

http://127.0.0.1:8080/  application exception system.notimplementedexception ssl encryption data sent between client , server not implemented.  description: http 500.error processing request. details: non-web exception. exception origin (name of application or object): system.data. exception stack trace:   @ system.data.sqlclient.sqlconnection.setproperties (system.string name, system.string value) [0x00361] in /private/tmp/source-mono-4.8.0/bockbuild-mono-4.8.0-branch/profiles/mono-mac-xamarin/build-root/mono-x86/mcs/class/system.data/system.data.sqlclient/sqlconnection.cs:777    @ system.data.sqlclient.sqlconnection.setconnectionstring (system.string connectionstring) [0x00178] in /private/tmp/source-mono-4.8.0/bockbuild-mono-4.8.0-branch/profiles/mono-mac-xamarin/build-root/mono-x86/mcs/class/system.data/system.data.sqlclient/sqlconnection.cs:672    @ system.data.sqlclient.sqlconnection.set_connectionstring (system.string value) [0x00017] in /private/tmp/source-mono-4.8.0/bockbuild-mono-4.8.0-branch/profiles/mono-mac-xamarin/build-root/mono-x86/mcs/class/system.data/system.data.sqlclient/sqlconnection.cs:153    @ system.data.entity.infrastructure.interception.dbconnectiondispatcher.<setconnectionstring>b__18 (system.data.common.dbconnection t, system.data.entity.infrastructure.interception.dbconnectionpropertyinterceptioncontext`1[tvalue] c) [0x00007] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.infrastructure.interception.internaldispatcher`1[tinterceptor].dispatch[ttarget,tinterceptioncontext] (ttarget target, system.action`2[t1,t2] operation, tinterceptioncontext interceptioncontext, system.action`3[t1,t2,t3] executing, system.action`3[t1,t2,t3] executed) [0x0000f] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.infrastructure.interception.dbconnectiondispatcher.setconnectionstring (system.data.common.dbconnection connection, system.data.entity.infrastructure.interception.dbconnectionpropertyinterceptioncontext`1[tvalue] interceptioncontext) [0x00042] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.internal.lazyinternalconnection.initializefromconnectionstringsetting (system.configuration.connectionstringsettings appconfigconnection) [0x00062] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.internal.lazyinternalconnection.tryinitializefromappconfig (system.string name, system.data.entity.internal.appconfig config) [0x0000b] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.internal.lazyinternalconnection.initialize () [0x0005b] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.internal.lazyinternalconnection.get_connection () [0x00000] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.internal.lazyinternalcontext.get_connection () [0x00024] in <000f54522ad145bf987b3043022f9799>:0    @ system.data.entity.database.get_connection () [0x00000] in <000f54522ad145bf987b3043022f9799>:0    @ microsoft.aspnet.identity.entityframework.identitydbcontext`1[tuser].isidentityv1schema (system.data.entity.dbcontext db) [0x00006] in <be6c0ac8ba754afcbd0c83ce45dc28c2>:0    @ microsoft.aspnet.identity.entityframework.identitydbcontext`1[tuser]..ctor (system.string nameorconnectionstring, system.boolean throwifv1schema) [0x0000a] in <be6c0ac8ba754afcbd0c83ce45dc28c2>:0    @ microsoft.aspnet.identity.entityframework.identitydbcontext`1[tuser]..ctor (system.string nameorconnectionstring) [0x00000] in <be6c0ac8ba754afcbd0c83ce45dc28c2>:0    @ cardiactesting.bl.cardiactestingcontext..ctor () [0x00000] in /users/stecampe1/desktop/myfiles/projects/cardiactestingalt/cardiactesting.bl/dataaccess/cardiactestingcontext.cs:15    @ cardiactesting.logic.repositories.genericrepository`2[tentity,tviewmodel]..ctor (system.string currentuser) [0x0000f] in /users/stecampe1/desktop/myfiles/projects/cardiactestingalt/cardiactesting/logic/repositories/genericrepository.cs:28    @ (wrapper managed-to-native) system.reflection.monocmethod:internalinvoke (system.reflection.monocmethod,object,object[],system.exception&)   @ system.reflection.monocmethod.internalinvoke (system.object obj, system.object[] parameters) [0x00002] in /private/tmp/source-mono-4.8.0/bockbuild-mono-4.8.0-branch/profiles/mono-mac-xamarin/build-root/mono-x86/mcs/class/corlib/system.reflection/monomethod.cs:661  version information: 4.8.0 (mono-4.8.0-branch/8f6d0f6 thu mar 9 11:59:17 est 2017); asp.net version: 4.0.30319.42000 powered mono 

i had working. code same. 3 things changed: os updated 10.11 10.12; xcode installed; and, since there sass files, used npm start on files (probably should have confirmed working before doing so).

i suspect connection string issue. here is:

<connectionstrings>     <add name="projecttestingconnection" connectionstring="server=tcp:testserver.database.windows.net,1433;initial catalog=projecttesting;persist security info=false;user id=projecttestingweb;password=kz>n4?q>*.;multipleactiveresultsets=false;encrypt=true;trustservercertificate=false;connection timeout=30;" providername="system.data.sqlclient" />     <!--<add name="projecttestingconnection" connectionstring="data source=10.10.18.159;initial catalog=projecttesting;user id=projecttestingweb;password=pr@jectte$ting" providername="system.data.sqlclient" />-->   </connectionstrings> 

i'm trying view locally. again, had working 2 days ago. i've tried of suggestions in other posts no success. last 1 involved changing brackets (>) in password, suggested cause problem - didn't fix anything, put back.

how can troubleshoot this?

you've done this, did install homebrew , install ssl. here link https://www.microsoft.com/net/core#macos


Comments