Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-14 Thread Jeff Ferguson
> I > think GAC classes can only load assemblies with strong names. Correct. As I understand it, assemblies referenced by a strongly named assembly must also be strongly named.

[ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-14 Thread Bill Bassler
I've created a custom publisher (write to file) that extends the MS .Net Exception Management application block. If I run the assemblies locally (i.e the client app's bin contains a local copy of the 2 constituient dlls:Management.dll and Interfaces.dll) the Management dll's code that actually refe

Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-14 Thread Bill Bassler
This is exactly what I was looking for ... the way to reference GAC'd dlls. Thanks!

Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-14 Thread Monsur Hossain
onsur > -Original Message- > From: Moderated discussion of advanced .NET topics. > [mailto:[EMAIL PROTECTED] On Behalf Of Bill Bassler > Sent: Wednesday, August 06, 2003 7:15 AM > To: [EMAIL PROTECTED] > Subject: Re: [ADVANCED-DOTNET] GAC'd assemblies cannot acces

Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-14 Thread Bill Bassler
RE: Also, if you haven't already, you'll want to add references to the GAC'd assemblies in the machine.config's system.web\compilation\assemblies section (I think this is only necessary for .NET 1.0)... Question: If I create version/key references in the machine.config to these assembly versions l

Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-08 Thread Chris Frazier
: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] Behalf Of Bill Bassler Sent: Wednesday, August 06, 2003 6:15 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings "It looks more to me like the error is rela

Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-06 Thread Philip Nelson
> The error received is listed below. I believe it is telling me that > the .config file classes cannot find the .config file. Again, > everything works as planned when the assemblies are not GAC'd. > It looks more to me like the error is related to the MS Exception block not being in the GAC or

Re: [ADVANCED-DOTNET] GAC'd assemblies cannot access application .config settings

2003-08-06 Thread Bill Bassler
"It looks more to me like the error is related to the MS Exception block not being in the GAC or having some other error loading the MSEB classes after finding the config section in the config file. Could that be the case? I think GAC classes can only load assemblies with strong names." Thanks f