ASP.NET and NTidy

  • Thread starter Thread starter Jonas Nilsson
  • Start date Start date
J

Jonas Nilsson

Windows 2000, .NET Framework 1.1 and IIS lockdown has been applied on this
machine.
I have 2 machines where my application runs without any problems but on my
third machine i get this error message: ( The os is in swedish ).

Konfigurationsfel
Beskrivning: Ett fel inträffade när en konfigurationsfil som är nödvändig
för att utföra begäran behandlades. Granska felinformationen nedan och gör
nödvändiga ändringar i konfigurationsfilen.

Tolkningsfelmeddelande: Fil- eller sammansättningsnamnet NTidy, eller ett av
dess beroenden, hittades inte.

Källfel:


Rad 256: <add assembly="System.EnterpriseServices,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Rad 257: <add assembly="System.Web.Mobile,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Rad 258: <add assembly="*"/>
Rad 259: </assemblies>
Rad 260:


Källfil: c:\winnt\microsoft.net\framework\v1.1.4322\Config\machine.config
Rad: 258

Starta spårning av sammansättning: Följande information kan vara användbar
när det gäller att avgöra varför sammansättningen NTidy inte kunde startas.


=== Pre-bind state information ===
LOG: DisplayName = NTidy
(Partial)
LOG: Appbase = file:///c:/inetpub/wwwroot
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: NTidy
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/2135a508/8d69a834/NTidy.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/2135a508/8d69a834/NTidy/NTidy.DLL.
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/bin/NTidy.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: NTidy, Version=1.0.1477.35308, Culture=neutral,
PublicKeyToken=null

Whats the problem?

/Jonas
 
We ran into the same issues using NTidy...the DLL would work fine on
our development machines, but fail horribly when the DLL was placed in
the /bin directory. We made it work by installing the .NET Framework
SDK on the server, instead of the redistributable version. There must
be some DLLs or libraries missing in the redist version related to the
C++ code...if anyone has any more insight into the problem, please let
me know.

-t
 
Back
Top