When I try to load my Lync Controls in a Silverlight application I get the error: Client is not trusted. This error doesn't appear when I debug the Silverlight application without the corresponding web project.

This is the code that generates the error:

LyncClient l = LyncClient.GetClient();

This is the error:

AutomationServerException was unhandled by user code
Client is not trusted

What must I do?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This error usually happens because the web site that your Silverlight application is running under isn't in the "Trusted Sites" browser zone. Adding to Trusted Sites should fix it.

Edit: The walkthrough here states:

Security settings for Microsoft Lync 2010 SDK applications require that the host URL for Lync Control Silverlight applications be added to the Trusted sites list in Microsoft Internet Explorer. For information about adding to the Trusted sites list, see Working with Internet Explorer 6 Security Settings.

link|improve this answer
It worked! Thank you =) – D. Veloper Jan 19 '11 at 15:01
feedback

The probabble cause may be because of the security.Right click the dll and goto properties and set unblock.

link|improve this answer
Which dll? All the Lync dll's in Visual Studio? – D. Veloper Jan 19 '11 at 12:04
feedback

Your Answer

 
or
required, but never shown

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