From: Andrew G. <ag...@jc...> - 2003-08-27 14:51:02
|
Have you added a reference to the dll into the WEB.CONFIG file of your ASP.NET app ?? Yes - and I verified version,public token are the same as in the GAC? <compilation debug="true"> <assemblies> <add assembly="FirebirdSql.Data.Firebird, Version=1.0.1220.28609, Culture=neutral, PublicKeyToken=e1b4f92304d7b12f" /> </assemblies> </compilation> The error I get when the above is in the web.config is: File or assembly name FirebirdSql.Data.Firebird, or one of its dependencies, was not found. Basically it looks like it's still looking for it under the local app bin and not finding it under the GAC. Does this having anything to do with strong naming of the assembly? Wouldn't it not install in the GAC if it wasn't strong named? Is anybody else having a problem reading assembly from GAC? Regards, Andrew C. Goodall |