I get the following error when running my MVC asp.net (.net 4.0) website on my hosting provider's server: Attempt by method 'MySql.Data.MySqlClient.MySqlClientFactory.System.IServiceProvider.GetService(System.Type)' to access field 'MySql.Data.MySqlClient.MySqlProviderServices.Instance' failed.
The following should be known about this application:
- It uses the entity framework. The hosting provider put a test .aspx page on my website which does not use the entity framework which can connect to the database.
- The website works on my localhost, except when I use their trust policy config file. In which case I get the same error.
- It worked before they did some updates, which included adding the SecurityClass MySqlClientPermission
I have searched for solutions, but found only answers to other problems with mysql connector. To show that these are not the issue I include those here: This in included in the web.config:
<DbProviderFactories>
<clear />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.5.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> </DbProviderFactories>
They did include this in the trust config:
<SecurityClass Name="MySqlClientPermission" Description="MySql.Data.MySqlClient.MySqlClientPermission, MySql.Data, Version=6.5.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
<IPermission class="MySqlClientPermission" version="1"> <add connectionString="Server=;Database=;User=;Password=;Port=;Pooling=;" restrictions="" KeyRestrictionBehavior="PreventUsage" />
</IPermission>
Perhaps someone can point me in the right direction, because after trying a lot of things I am at a loss.