assembly binding log file
-
here is my log file from fuslogvw.exe
*** Assembly Binder Log Entry (5/6/2004 @ 10:49:28 AM) ***
The operation failed.
Bind result: hr = 0x800704c7. The operation was canceled by the user.Assembly manager loaded from: C:\WINNT\Microsoft.NET\Framework\v1.1.4322\fusion.dll
Running under executable C:\Program Files\Droplet\Server\DropletConsole.exe
--- A detailed error log follows.=== Pre-bind state information ===
LOG: DisplayName = DotNetAppHost, Version=1.0.0.0, Culture=neutral, PublicKeyToken=15043562efa7be39
(Fully-specified)
LOG: Appbase = C:\Program Files\Droplet\Server\
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = NULL
Calling assembly : DotNetAppTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=15043562efa7be39.LOG: Processing DEVPATH.
LOG: DEVPATH is not set. Falling through to regular bind.
LOG: Publisher policy file is not found.
LOG: Host configuration file not found.
LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: DotNetAppHost, Version=1.0.0.0, Culture=neutral, PublicKeyToken=15043562efa7be39
LOG: Cache Lookup was unsuccessful.
ERR: A fatal error occurred when retrieving next codebase for download (hr = 0x800704c7).i can't figure out what the error is. did it fail to find one of the assemblies - DotNetAppHost or DotNetAppTest?? or is it something else?? thanks.
-
here is my log file from fuslogvw.exe
*** Assembly Binder Log Entry (5/6/2004 @ 10:49:28 AM) ***
The operation failed.
Bind result: hr = 0x800704c7. The operation was canceled by the user.Assembly manager loaded from: C:\WINNT\Microsoft.NET\Framework\v1.1.4322\fusion.dll
Running under executable C:\Program Files\Droplet\Server\DropletConsole.exe
--- A detailed error log follows.=== Pre-bind state information ===
LOG: DisplayName = DotNetAppHost, Version=1.0.0.0, Culture=neutral, PublicKeyToken=15043562efa7be39
(Fully-specified)
LOG: Appbase = C:\Program Files\Droplet\Server\
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = NULL
Calling assembly : DotNetAppTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=15043562efa7be39.LOG: Processing DEVPATH.
LOG: DEVPATH is not set. Falling through to regular bind.
LOG: Publisher policy file is not found.
LOG: Host configuration file not found.
LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: DotNetAppHost, Version=1.0.0.0, Culture=neutral, PublicKeyToken=15043562efa7be39
LOG: Cache Lookup was unsuccessful.
ERR: A fatal error occurred when retrieving next codebase for download (hr = 0x800704c7).i can't figure out what the error is. did it fail to find one of the assemblies - DotNetAppHost or DotNetAppTest?? or is it something else?? thanks.
DotNetAppTest is the calling assembly. The exception is either in DotNetAppHost or it can't find DotNetAppHost (most likely the latter since Fusion is giving you such a log). The log seems incomplete for an assembly binding error, though, since it doesn't seem to be probing additional, common paths, unless you've removed those lines. If the assembly was missing, you should've been thrown a
FileNotFoundException
, which you've either not reported here or are catching in theApplication.ThreadException
orAppDomain.UnhandledException
event handlers (or in a method that late-binds against DotNetAppHost). To accurately help you solve the problem, please provide more information, such as the complete log (it applicable) or any exceptions that were thrown.Microsoft MVP, Visual C# My Articles
-
DotNetAppTest is the calling assembly. The exception is either in DotNetAppHost or it can't find DotNetAppHost (most likely the latter since Fusion is giving you such a log). The log seems incomplete for an assembly binding error, though, since it doesn't seem to be probing additional, common paths, unless you've removed those lines. If the assembly was missing, you should've been thrown a
FileNotFoundException
, which you've either not reported here or are catching in theApplication.ThreadException
orAppDomain.UnhandledException
event handlers (or in a method that late-binds against DotNetAppHost). To accurately help you solve the problem, please provide more information, such as the complete log (it applicable) or any exceptions that were thrown.Microsoft MVP, Visual C# My Articles
-
thanks for the quick reply. that is the complete log. when i look at the output window in VS, i see that both DotNetAppHost and DotNetAppTest are loaded.
What exactly is the error you're getting, though? Is there any exceptions being thrown from your app (or being caught)?
Microsoft MVP, Visual C# My Articles
-
What exactly is the error you're getting, though? Is there any exceptions being thrown from your app (or being caught)?
Microsoft MVP, Visual C# My Articles
-
whoops. sorry. i meant to do that last post. a message box just pops up in DotNetAppHost which says, 'no source code available for this location.'
No source code? Unless your using a
CodeDomProvider
to compile source at run-time, this is not an error you should see. What exactly are you trying to do?Microsoft MVP, Visual C# My Articles