Assembly reference error on web site with same signature - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:19:54Zhttp://stackoverflow.com/feeds/question/379686http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379686/assembly-reference-error-on-web-site-with-same-signature1Assembly reference error on web site with same signatureAndrea Celin2008-12-18T23:24:00Z2009-04-26T09:04:21Z
<p>I've more than one ASP.NET 2.0 web site on IIS 6 and Windows Server 2003.
Each site reference some DLLs: design, logic and so on.
Each site is on a different ApplicationPool with default configuration about recycling techniques.</p>
<p>Every DLL is strong named (not delayed) and has a version that never changes (2.0.0.0), all DLLs are placed in GAC.</p>
<p>After I update a DLL in GAC (ie. MyLibrary.dll) that has changed in something (method, classes..) for the use in web-site "A", and after recycling only the "A" application pool, when I try to access to web-site "B" that reference the same DLL I get the common error about that DLL:</p>
<blockquote>
<p>The located assembly's manifest
definition does not match the assembly
reference. (Exception from HRESULT:
0x80131040)</p>
</blockquote>
<p>Of course nothing is changed in DLL rather than code, same strongkey, same version, culture. The error disappear over recycling "B" application pool, of course.</p>
<p>What can generate a strange, <strong>RANDOM</strong> (I've to say!), behavior? There's something more, like hashing, that it's used to compare assemblies?</p>
<h2>Addendum</h2>
<ul>
<li><a href="http://stackoverflow.com/users/37494/perpetualcoder">Perpetualcoder</a> asked me how DLLs are referenced, if with full qualified name, I think it is, here a line of web.config:</li>
</ul>
<blockquote>
<p>assembly="MyNamespace.MyComponent,
Version=2.0.0.0, Culture=neutral,
PublicKeyToken=1234567890ASDFGH"</p>
</blockquote>
http://stackoverflow.com/questions/379686/assembly-reference-error-on-web-site-with-same-signature/380356#3803560Answer by Frans Bouma for Assembly reference error on web site with same signatureFrans Bouma2008-12-19T08:27:15Z2008-12-19T08:27:15Z<p>I keep repeating myself: don't store files in the GAC unless you absolutely have to. asp.net copies dlls to a temp folder and runs the site from there, it might be checksums mismatch between the loaded dll and the one in the tempfolder. </p>
<p>You should keep your site's dlls local to the sites, in their bin folder. It will give you more flexibility and you don't hurt application B by updating a dll for application A. you also get xcopy deployment for the low price of giving up a bit of diskspace. </p>
http://stackoverflow.com/questions/379686/assembly-reference-error-on-web-site-with-same-signature/380593#3805930Answer by Andrea Celin for Assembly reference error on web site with same signatureAndrea Celin2008-12-19T10:24:35Z2008-12-19T10:24:35Z<p>Frans, it is a procedure that I understand and it could be a way to deploy of course, but what I don't understand is why even if full qualified name is correct, error comes however.
I saw in DLL manifest, there's the hashing algoritm specification.
Does ASP.NET perform a hashing compare over DLLs?</p>
<p>What I mean in few words: IIS/ASP.NET finds that DDL "A" doesn't match DLL "B" hash, but triplet "key,culture,version" is the same so why it doesn't just update instead popping out an web.config error?</p>