Silverlight WebPart in SharePoint - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:42:13Zhttp://stackoverflow.com/feeds/question/581908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/581908/silverlight-webpart-in-sharepoint1Silverlight WebPart in SharePointniklassaers-vc2009-02-24T14:20:51Z2009-08-13T08:52:31Z
<p>Hi,
I'm making a WebPart for SharePoint that will instantiate a Silverlight UserControl and feed it some data. My problem is that when I have created my sample-WebPart and just instantiate a Silverlight control, the webpart, when added to a page or displayed in the webpart gallery, instead of rendering blank, renders an error page saying "File Not Found". No clue in the logfiles to what file was not found or why this error is thrown. Here is my code:</p>
<pre><code>using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.SilverlightControls;
namespace TestSLWP {
public class CustomWebPart1 : WebPart {
protected override void CreateChildControls() {
Label lblHello = new Label();
lblHello.Text = "Hello";
Controls.Add(lblHello);
Silverlight sl = new Silverlight();
}
}
}
</code></pre>
<p>I've added references to System.Web.Extensions and System.Web.Silverlight to the project. They are in the GAC, and the webpart is written and compiled on the same computer that SharePoint resides. If I change the CreateChildControls() to be:</p>
<pre><code>protected override void CreateChildControls() {
Silverlight sl = new Silverlight();
sl.ID = "CustomWebPart1SL";
sl.Source = "/Silverlight/CustomWebPart.xap";
this.Controls.Add(sl);
}
</code></pre>
<p>I get the same error. Also if I remove the first slash in sl.Source I get the same error, even though the file is present in a virtual directory in the same application pool as SharePoint. I therefore, and because the error comes with just instantiating the Silverlight object, believe that the file that cannot be found is not my XAP. </p>
<p>What file can't SharePoint find and what can I do about it?</p>
<p>Here's the error message:</p>
<p><img src="http://www.freeimagehosting.net/uploads/2dca8dbdfb.png" width="630"></p>
http://stackoverflow.com/questions/581908/silverlight-webpart-in-sharepoint/582351#5823511Answer by webwires for Silverlight WebPart in SharePointwebwires2009-02-24T16:04:24Z2009-02-24T16:04:24Z<p>Enabling SilverLight requires a lagre amount of web config modifications. Did you add those?</p>
http://stackoverflow.com/questions/581908/silverlight-webpart-in-sharepoint/586513#5865131Answer by Flo for Silverlight WebPart in SharePointFlo2009-02-25T15:38:32Z2009-02-25T15:38:32Z<p>Hi I found a complete walk through on how to get Silverlight web parts get running on your application: <a href="http://www.vbforums.com/archive/index.php/t-557072.html" rel="nofollow">http://www.vbforums.com/archive/index.php/t-557072.html</a></p>
<p>As you can see there are added some more things to the web.config beside your assembly registration.</p>
http://stackoverflow.com/questions/581908/silverlight-webpart-in-sharepoint/1270857#12708570Answer by Igor for Silverlight WebPart in SharePointIgor2009-08-13T08:52:31Z2009-08-13T08:52:31Z<p>There could be the problem with your storage folder with silverlight control. You must register path to this storage as safe in web.config (for example find in web.config line with "~/controltemplates").</p>