Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. assembly binding log file

assembly binding log file

Scheduled Pinned Locked Moved C#
csharpwpfwcfsysadminhelp
6 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    godzooky
    wrote on last edited by
    #1

    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.

    H 1 Reply Last reply
    0
    • G godzooky

      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.

      H Offline
      H Offline
      Heath Stewart
      wrote on last edited by
      #2

      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 the Application.ThreadException or AppDomain.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

      G 1 Reply Last reply
      0
      • H Heath Stewart

        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 the Application.ThreadException or AppDomain.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

        G Offline
        G Offline
        godzooky
        wrote on last edited by
        #3

        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.

        H 1 Reply Last reply
        0
        • G godzooky

          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.

          H Offline
          H Offline
          Heath Stewart
          wrote on last edited by
          #4

          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

          G 1 Reply Last reply
          0
          • H Heath Stewart

            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

            G Offline
            G Offline
            godzooky
            wrote on last edited by
            #5

            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.'

            H 1 Reply Last reply
            0
            • G godzooky

              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.'

              H Offline
              H Offline
              Heath Stewart
              wrote on last edited by
              #6

              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

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups