CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Nov 2004
    Posts
    42

    The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hello All

    First, let me thank you for looking into this thread and your help. I am new to writting web services and I am getting the following error.

    My enviroment: Windows XP , Visual Studio 2005 , ASP.NET 2.0

    Problem description:

    When I compile the code, both DEBUG version and RELEASE version compile with no error or warning.However, when I try to access the site through my browser:

    http://localhost/NCTAuthCode/NCTAuthCode.asmx


    When I have the release version of my software build, I get the following error:

    ************************************************************************************************************************
    The specified module could not be found. (Exception from HRESULT: 0x8007007E)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Source Error:

    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

    Stack Trace:


    [FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
    System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0
    System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +211
    System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +141
    System.Reflection.Assembly.Load(String assemblyString) +25
    System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +32

    [ConfigurationErrorsException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
    System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +596
    System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +3596761
    System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +46
    System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +177
    System.Web.Compilation.BuildProvidersCompiler..ctor(VirtualPath configPath, Boolean supportLocalization, String outputAssemblyName) +180
    System.Web.Compilation.ApplicationBuildProvider.GetGlobalAsaxBuildResult(Boolean isPrecompiledApp) +3561465
    System.Web.Compilation.BuildManager.CompileGlobalAsax() +51
    System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +462

    [HttpException (0x80004005): The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
    System.Web.Compilation.BuildManager.ReportTopLevelCompilationException() +57
    System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +612
    System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters) +521

    [HttpException (0x80004005): The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
    System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +3540923
    System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +69
    System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +275

    ************************************************************************************************************************

    However, if I have the DEBUG version build, everything works fine and my page displays correctly !!!!!!


    I did a google sreach for this error and someone suggested to use "FUSLOGVW.exe " to see what is missing. When I run my FUSLOGVW.exe, there is no file or application name under the main screen !!! I have attached the snap shot of that to this page to this thread.


    I really appritiate your help with this problem.
    Attached Images Attached Images

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured