I keep getting this error in my windows logs:

 SharePointSocialNetworking.Facebook 
   b0ceb144-b183-4b66-aa10-39fd9ee42bd4 
   Could not load file or assembly 'Microsoft.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=736440c9b414ea16' or one of its dependencies. The system cannot find the file specified. 

But the assembly it's talking about already shows in my GAC:

alt text

Am I missing something here? Everything in the GAC matches the error message. How could windows not find this?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Add a SafeControl entry to your web.config:

<configuration>
...
  <SharePoint>
  ...
    <SafeControls>
      ...
      <SafeControl Assembly="Microsoft.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=736440c9b414ea16" Namespace="Microsoft.Contracts" TypeName="*" Safe="True" />
    </SafeControls>
  ...
  </SharePoint>
...
</configuration>
link|improve this answer
What does this do? – Abe Miessler Nov 23 '10 at 19:34
1  
I suppose I should make sure you are using SharePoint (I assumed since the error has SharePointSocialNetworking). If so, adding a safe control entry allows SharePoint to use the assembly. Without this entry or an assemblies entry, it will not use it even if it is deployed to the GAC. – theChrisKent Nov 23 '10 at 19:36
Hmm, I am using SharePoint but I added several other assemblies and it's not throwing this error for any of them (Microsoft.Contracts is called through one of them so I assume they are fine). – Abe Miessler Nov 23 '10 at 19:53
I tried this and now my admin errors out. Does it matter that this is being used by a Custom Timer Job? – Abe Miessler Nov 24 '10 at 20:52
Does your admin give an error - if so what is it? Have you verified that removing the SafeControl entry removes the error? Double check the namespace (I was guessing in the example above). The Custom Timer Job shouldn't make a difference. – theChrisKent Nov 24 '10 at 20:55
show 1 more comment
feedback

It doesn't just have to find the Microsoft.Contracts assembly but ALL of its dependencies. You need to see what dependencies that assembly has and make sure they all are also in the GAC.

link|improve this answer
When I opened it in reflector all it had was System and Mscorlib. Those are both in the GAC. That's all i need to check right? – Abe Miessler Nov 23 '10 at 19:27
feedback

You can find the library here C:\Program Files\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0\mscorlib.dll

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.