Bonjour,

J'ai récupéré depuis un serveur de dev un site web développé en ASP.NET 1.1.
Ce site utilise des références présentes sous la forme de fichiers DLL dans le répertoire bin du site.
J'ai configuré mon serveur IIS 5.1 (Windows XP), cependant à l'exécution j'obtiens systématiquement l'erreur suivante :

Server Error in '/Resa_Veh' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: File or assembly name netController, or one of its dependencies, was not found.

Source Error:


Line 196: <add assembly="System.EnterpriseServices, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 197: <add assembly="System.Web.Mobile, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 198: <add assembly="*" />
Line 199: </assemblies>
Line 200: </compilation>


Source File: c:\windows\microsoft.net\framework\v1.1.4322\Config\machine.config Line: 198

Assembly Load Trace: The following information can be helpful to determine why the assembly 'netController' could not be loaded.


=== Pre-bind state information ===
LOG: DisplayName = netController
(Partial)
LOG: Appbase = file:///C:/Documents and Settings/sylvain/Mes documents/Visual Studio 2008/Projects/Resa_Veh/Resa_Veh
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: netController
LOG: Attempting download of new URL file:///c:/windows/microsoft.net/framework/v1.1.4322/Temporary ASP.NET Files/resa_veh/e29610b8/9bf9850d/netController.DLL.
LOG: Attempting download of new URL file:///c:/windows/microsoft.net/framework/v1.1.4322/Temporary ASP.NET Files/resa_veh/e29610b8/9bf9850d/netController/netController.DLL.
LOG: Attempting download of new URL file:///C:/Documents and Settings/sylvain/Mes documents/Visual Studio 2008/Projects/Resa_Veh/Resa_Veh/bin/netController.DLL.
LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file (c:\windows\microsoft.net\framework\v1.1.4322\aspnet.config).
LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: netController, Version=4.1.1.4, Culture=neutral, PublicKeyToken=5ba884217106faf2




--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
Je pense que le copier-coller sauvage du répertoire du site ne suffit pas pour le faire fonctionner, il doit falloir configurer une assembly ou que sais-je, mais même après avoir enregistré la dll dans le GAC, le message d'erreur est encore là. Pourtant, la dll est bien trouvée dans le répertoire bin (j'ai fais un test en la supprimant, j'obtiens une erreur FileNotFound).
Je pense que le coeur du problème est le message
Publisher policy file is not found
mais je ne vois pas comment le résoudre...
Merci d'avance pour votre aide.