Asp Classic with ADODB needs to migrate to Medium Trust -


i have very large project written largely in asp classic. uses adodb (recordsets mostly) in several thousand files. mandatory move project medium trust, although can customized. attempting load adodb.dll under medium trust causes:

system.security.securityexception: assembly not allow partially trusted callers.

  1. i couldn't find way disable control custommedium trust level. there such thing?

  2. is there other way load old adodb under medium trust? can't figure out how strong name adodb not open source.

  3. is there other library similar enough adodb can substituted it, perhaps open source 1 strong named?

  4. any other ideas don't involve migrating thousands of pages asp.net/ado.net?

the specific call breaks application

using adodb; ... namespace applib {     public recordset recordset;     private void init()     {         ...         this.recordset = new recordsetclass();  //this throws securityexception 

the concept of trust specific .net , not classic asp. unless running classic .asp code using .net handler concepts of trust not relevant.


Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -