364,033 Members | 4770 Browsing Online
Community for Developers & IT Professionals
Bytes IT Community

Assembly.Load() exception

Steve
P: n/a
Steve
I'm playing with late binding and trying a very simple test to load an
assembly

In my "Host" application I have this code:
<code>
string modulePath =
@"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\Te stModule\bin\Debug\TestModule";
Assembly a = Assembly.Load(modulePath);
</code>

This is throwing the following exception:
Could not load file or assembly
'C:\\PMDRepository\\Tools\\ManfBusProcMgr\\Modules \\TestModule\\bin\\Debug\\TestModule'
or one of its dependencies. The given assembly name or codebase was invalid.
(Exception from HRESULT: 0x80131047)


The assembly that I'm trying to load is just a simple class library with one
member and one property. Both were created in VS2005.
I've done some initial googling, but nothing is popping up. Any ideas?

Thanks for reading!
Steve Klett


Jan 24 '06 #1
Share this Question
Share on Google+
6 Replies


Mattias Sjögren
P: n/a
Mattias Sjögren
><code>[color=blue]
> string modulePath =
>@"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\T estModule\bin\Debug\TestModule";
> Assembly a = Assembly.Load(modulePath);
></code>[/color]

Assembly.Load takes a assembly name, not a file path. You can try
Assebmly.LoadFrom instead (though it has its own set of problems).


Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Jan 24 '06 #2

Steve
P: n/a
Steve
I tried just the name and I get the same exception.
Does the assembly need to be in the same location as the loading assembly?


"Mattias Sjögren" <mattias.dont.want.spam@mvps.org> wrote in message
news:epeJw0RIGHA.1132@TK2MSFTNGP10.phx.gbl...[color=blue][color=green]
> ><code>
>> string modulePath =
>>@"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\ TestModule\bin\Debug\TestModule";
>> Assembly a = Assembly.Load(modulePath);
>></code>[/color]
>
> Assembly.Load takes a assembly name, not a file path. You can try
> Assebmly.LoadFrom instead (though it has its own set of problems).
>
>
> Mattias
>
> --
> Mattias Sjögren [C# MVP] mattias @ mvps.org
> http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
> Please reply only to the newsgroup.[/color]


Jan 24 '06 #3

C.C. \(aka Me\)
P: n/a
C.C. \(aka Me\)
You did not specify the filename or you forgot to put the extention on the
filename.

TestModule needs to have an extention (.DLL or .EXE).

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Charles Cox
VC/VB/C# Developer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

"Steve" <sss@sss.com> wrote in message
news:exy0BxRIGHA.3056@TK2MSFTNGP09.phx.gbl...[color=blue]
> I'm playing with late binding and trying a very simple test to load an
> assembly
>
> In my "Host" application I have this code:
> <code>
> string modulePath =
> @"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\Te stModule\bin\Debug\TestModule";
> Assembly a = Assembly.Load(modulePath);
> </code>
>
> This is throwing the following exception:
> Could not load file or assembly
> 'C:\\PMDRepository\\Tools\\ManfBusProcMgr\\Modules \\TestModule\\bin\\Debug\\TestModule'
> or one of its dependencies. The given assembly name or codebase was
> invalid. (Exception from HRESULT: 0x80131047)
>
>
> The assembly that I'm trying to load is just a simple class library with
> one member and one property. Both were created in VS2005.
> I've done some initial googling, but nothing is popping up. Any ideas?
>
> Thanks for reading!
> Steve Klett
>[/color]


Jan 24 '06 #4

Steve
P: n/a
Steve
That's the confusing part. LoadFrom() works when I specify the full path to
the module including extension. But Load() just wants the modul name, which
in my case is TestModule, but it failes.

Either way, LoadFrom() is working and that's fine for me, at least for
testing at this point.

Thanks for the post!

"C.C. (aka Me)" <me@home.com> wrote in message
news:7uSdnXOAXfYTGEveRVn-tg@comcast.com...[color=blue]
> You did not specify the filename or you forgot to put the extention on the
> filename.
>
> TestModule needs to have an extention (.DLL or .EXE).
>
> --
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Charles Cox
> VC/VB/C# Developer
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> "Steve" <sss@sss.com> wrote in message
> news:exy0BxRIGHA.3056@TK2MSFTNGP09.phx.gbl...[color=green]
>> I'm playing with late binding and trying a very simple test to load an
>> assembly
>>
>> In my "Host" application I have this code:
>> <code>
>> string modulePath =
>> @"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\Te stModule\bin\Debug\TestModule";
>> Assembly a = Assembly.Load(modulePath);
>> </code>
>>
>> This is throwing the following exception:
>> Could not load file or assembly
>> 'C:\\PMDRepository\\Tools\\ManfBusProcMgr\\Modules \\TestModule\\bin\\Debug\\TestModule'
>> or one of its dependencies. The given assembly name or codebase was
>> invalid. (Exception from HRESULT: 0x80131047)
>>
>>
>> The assembly that I'm trying to load is just a simple class library with
>> one member and one property. Both were created in VS2005.
>> I've done some initial googling, but nothing is popping up. Any ideas?
>>
>> Thanks for reading!
>> Steve Klett
>>[/color]
>
>[/color]


Jan 24 '06 #5

C.C. \(aka Me\)
P: n/a
C.C. \(aka Me\)
But the two methods are not the same.. See below from the MSDN
documentation:

Assembly SampleAssembly;
// You must supply a valid fully qualified assembly name here.
SampleAssembly = Assembly.Load("Assembly text name, Version,
Culture, PublicKeyToken");
Type[] Types = SampleAssembly.GetTypes();
// Display all the types contained in the specified assembly.
foreach (Type oType in Types)
{
Console.WriteLine(oType.Name.ToString());
}


Load takes a fully qualified assembly name, not the name of a file.

Hope this helps.

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Charles Cox
VC/VB/C# Developer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

"Steve" <sss@sss.com> wrote in message
news:OVySgCSIGHA.3176@TK2MSFTNGP12.phx.gbl...[color=blue]
> That's the confusing part. LoadFrom() works when I specify the full path
> to the module including extension. But Load() just wants the modul name,
> which in my case is TestModule, but it failes.
>
> Either way, LoadFrom() is working and that's fine for me, at least for
> testing at this point.
>
> Thanks for the post!
>
> "C.C. (aka Me)" <me@home.com> wrote in message
> news:7uSdnXOAXfYTGEveRVn-tg@comcast.com...[color=green]
>> You did not specify the filename or you forgot to put the extention on
>> the filename.
>>
>> TestModule needs to have an extention (.DLL or .EXE).
>>
>> --
>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> Charles Cox
>> VC/VB/C# Developer
>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>
>> "Steve" <sss@sss.com> wrote in message
>> news:exy0BxRIGHA.3056@TK2MSFTNGP09.phx.gbl...[color=darkred]
>>> I'm playing with late binding and trying a very simple test to load an
>>> assembly
>>>
>>> In my "Host" application I have this code:
>>> <code>
>>> string modulePath =
>>> @"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\Te stModule\bin\Debug\TestModule";
>>> Assembly a = Assembly.Load(modulePath);
>>> </code>
>>>
>>> This is throwing the following exception:
>>> Could not load file or assembly
>>> 'C:\\PMDRepository\\Tools\\ManfBusProcMgr\\Modules \\TestModule\\bin\\Debug\\TestModule'
>>> or one of its dependencies. The given assembly name or codebase was
>>> invalid. (Exception from HRESULT: 0x80131047)
>>>
>>>
>>> The assembly that I'm trying to load is just a simple class library with
>>> one member and one property. Both were created in VS2005.
>>> I've done some initial googling, but nothing is popping up. Any ideas?
>>>
>>> Thanks for reading!
>>> Steve Klett
>>>[/color]
>>
>>[/color]
>
>[/color]


Jan 24 '06 #6

David Levine
P: n/a
David Levine
Assembly.Load requires the full name, also known as the display name, of the
assembly, which is either its simple name (e.g. MyAssembly) without an
extension, or the fully qualified name, which consists of its simple name, a
version, a public key token, and its culture. For example,
Assembly.Load( "MyAsm, Version=1.0.1.220, Culture=Neutral,
PublicKeyToken=83b26e4166b7e1b8");

This also requires that the assembly be located either in the appdomain's
base directory, in a directory below there and which is one of the
components of the appdomain's PrivateBinPath, (so that the runtime knows how
to locate it), or specified in an app.config with a binding redirect and a
codebase hint. There are other places it can be located and mechanisms used
to tell the runtime how to find it, but these ought to get you started.
There are lots of options.

If you use Assembly.LoadFrom the the argument specified if the fully
specified path, either on the file system or to a url. This does not require
that the assembly be located in your appdomain's base directory, but it has
other limitations that can cause problems. Another major difference is that
the runtime internally stores loaded assemblies into multiple lists; the
Load context and the LoadFrom context (and others).

I've found it is usually better to use Load rather then LoadFrom because of
the way that the runtime locates and loads dependencies. If you use LoadFrom
you'll usually find it necessary to also subscribe to the
AppDomain.AssemblyResolve event to manually load dependencies of that
assembly.

I prefer to use a combination approach. I use:

AssemblyName an = AssemblyName.GetAssemblyName(filePath);
Assembly.Load(an);

This loads the filepath into the AssemlyName's codebase field and also
extracts all the other information from the assembly's manifest (version,
token, and culture). When you call Assembly.Load(an) the runtime tries to
load the assembly using the display name information, and if it can resolve
it it loads it into the Load context. If that fails it falls back to doing a
LoadFrom on the file path, loading it into the LoadFrom context.

Dave


"Steve" <sss@sss.com> wrote in message
news:exy0BxRIGHA.3056@TK2MSFTNGP09.phx.gbl...[color=blue]
> I'm playing with late binding and trying a very simple test to load an
> assembly
>
> In my "Host" application I have this code:
> <code>
> string modulePath =
> @"C:\PMDRepository\Tools\ManfBusProcMgr\Modules\Te stModule\bin\Debug\TestModule";
> Assembly a = Assembly.Load(modulePath);
> </code>
>
> This is throwing the following exception:
> Could not load file or assembly
> 'C:\\PMDRepository\\Tools\\ManfBusProcMgr\\Modules \\TestModule\\bin\\Debug\\TestModule'
> or one of its dependencies. The given assembly name or codebase was
> invalid. (Exception from HRESULT: 0x80131047)
>
>
> The assembly that I'm trying to load is just a simple class library with
> one member and one property. Both were created in VS2005.
> I've done some initial googling, but nothing is popping up. Any ideas?
>
> Thanks for reading!
> Steve Klett
>[/color]


Jan 24 '06 #7

Post your reply

Help answer this question



Didn't find the answer to your C# / C Sharp question?

You can also browse similar questions: C# / C Sharp c# loadexception