Re: fatal error CS0007: Unexpected common language runtime initialization error -- 'The specified module could not be found. '

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance

lee_at_woodchop.com
Date: 08/10/04


Date: 9 Aug 2004 20:03:42 -0700

If this is a debug build, check to make sure you are deploying the PDB
files with the dll as well. If there is a version mismatch between the
dll and the PDB, which would easily happen if you only deployed the dll
on top of an existing web app, then you could get this error.

WGH wrote:
> HELP ME PLEASE!!
>
> I have been working with .NET for a while now and never run into this
> one. I have an ASP.NET application with C# code-behinds and get the
> error message that is below when I deploy (either by using an MSI or
> by copying the necessary files and setting up a virtual directory in
> IIS) the application.
>
> The strange piece seems to be that it references a non-existant DLL
> (see below following the "Show Detailed Compiler Output:" section).
> In this case it is looking for "riexran5.dll", which I did not create
> and does not exist on the server anywhere. This DLL name seems to
> change with every different virtual directory I create. Other
example
> names include: "yhkzggnj.dll", "u898q81e.dll", "etom4cdc.dll", and
> "imfraewp.dll". I have never seen this before and don't know if this
> is the problem or not.
>
> I do not believe that this is a code/development problem as the exact
> same source is running on 2 other servers with absolutely no
problems.
> This error occurs when ANY page within the site is attempted to be
> loaded into IE on the server (the error message is not displayed with
> this detail on a client machine...).
>
> We have tried reinstalling the .NET framework (v1.1.4322.573) and I
am
> tempted to reinstall IIS. Please let me know if anyone has ever seen
> this behavior before and how you got rid of it!
>
> Thanks,
>
> Bill
>
> --------------------
>
>
> Server Error in '/HelloWorld' Application.
> ________________________________________
> Compilation Error
> Description: An error occurred during the compilation of a resource
> required to service this request. Please review the following
specific
> error details and modify your source code appropriately.
>
> Compiler Error Message: CS0007: Unexpected common language runtime
> initialization error -- 'The specified module could not be found. '
>
> Source Error:
>
> [No relevant source lines]
>
> Source File: Line: 0
>
> Show Detailed Compiler Output:
>
> C:\WINNT\system32>
> "c:\winnt\microsoft.net\framework\v1.1.4322csc.exe"
> /t:library /utf8output
> /R:"c:\winnt\microsoft.net\framework\v1.1.4322\mscorlib.dll"
>
/R:"c:\winnt\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll"
>
/R:"c:\winnt\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll"
>
/R:"c:\winnt\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.data.dll"
>
/R:"c:\winnt\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.dll"
>
/R:"c:\winnt\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll"
>
/R:"c:\winnt\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\system.web.services.dll"
>
/R:"c:\winnt\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll"
>
/R:"c:\winnt\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.web.dll"
> /R:"c:\winnt\microsoft.net\framework\v1.1.4322\temporary asp.net
>
files\helloworld\0f3cddc2\2d10a607\assembly\dl2\2ae75aa7\d0cbd1be_267ec401\helloworld.dll"
> /out:"C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
> Files\helloworld\0f3cddc2\2d10a607\riexran5.dll"
> /D:DEBUG /debug+ /optimize-/warnaserror /w:1
> "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
> Files\helloworld\0f3cddc2\2d10a607\riexran5.0.cs"
>
> Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
> for Microsoft (R) .NET Framework version 1.1.4322
> Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.
>
> fatal error CS0007: Unexpected common language runtime initialization
> error -- 'The specified module could not be found. '
>
> Show Complete Compilation Source:
>
> Line 1:
//------------------------------------------------------------------------------
> Line 2: // <autogenerated>
> Line 3: // This code was generated by a tool.
> Line 4: // Runtime Version: 1.1.4322.573
> Line 5: //
> Line 6: // Changes to this file may cause incorrect behavior
> and will be lost if
> Line 7: // the code is regenerated.
> Line 8: // </autogenerated>
> Line 9:
//------------------------------------------------------------------------------
> Line 10:
> Line 11: namespace ASP {
> Line 12: using System;
> Line 13: using System.Collections;
> Line 14: using System.Collections.Specialized;
> Line 15: using System.Configuration;
> Line 16: using System.Text;
> Line 17: using System.Text.RegularExpressions;
> Line 18: using System.Web;
> Line 19: using System.Web.Caching;
> Line 20: using System.Web.SessionState;
> Line 21: using System.Web.Security;
> Line 22: using System.Web.UI;
> Line 23: using System.Web.UI.WebControls;
> Line 24: using System.Web.UI.HtmlControls;
> Line 25:
> Line 26:
> Line 27:
[System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
> Line 28: public class Global_asax : HelloWorld.Global {
> Line 29:
> Line 30: private static bool __initialized = false;
> Line 31:
> Line 32: public Global_asax() {
> Line 33: if ((ASP.Global_asax.__initialized == false))
{
> Line 34: ASP.Global_asax.__initialized = true;
> Line 35: }
> Line 36: }
> Line 37: }
> Line 38: }
> Line 39:
> ________________________________________
> Version Information: Microsoft .NET Framework Version:1.1.4322.573;
> ASP.NET Version:1.1.4322.573



Relevant Pages

  • Re: How to share code between two different sites?
    ... I don't think you'll find that feature on *any* server, ... This way I can automate the compilation process. ... putting dll in multiple pathes after compilation?? ... You can't add child project to website. ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: ASP .NET 2.0 Visual Studio 2005 - deploying - no DLLs
    ... I thought that the application would be compiled on the server the first ... and this would create the DLL files in the BIN folder. ... triggered a compilation of the website, but there are no DLL files in the ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: fatal error CS0007: Unexpected common language runtime initialization error -- The specified mod
    ... ASP.NET and indexing don't really play nice. ... > The strange piece seems to be that it references a non-existant DLL ... > and does not exist on the server anywhere. ... An error occurred during the compilation of a resource ...
    (microsoft.public.dotnet.framework.clr)
  • Re: ASP .NET 2.0 Visual Studio 2005 - deploying - no DLLs
    ... and source siles in the App_Code folder) is on ... I thought that the application would be compiled on the server the first ... and this would create the DLL files in the BIN folder. ... triggered a compilation of the website, but there are no DLL files in the ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Please help
    ... Unable to open the Server service. ... DLL files to display messages from a remote computer. ... The NVIDIA Driver Helper Service service hung on starting. ... have the necessary registry information or message DLL ...
    (microsoft.public.windowsxp.perform_maintain)