Thanks for the response Bill,
I had run across a similar article a week or so ago and made sure to add the MIME extension to my 2k3 server. Just to be sure, though, I went on my server and made sure that the MIME was registered correctly, which it seemed to be. I've had a Silverlight app running on this server before, but it was in a stand-alone HTML file. The only difference is that it's in a web part now instead of in an HTML page--and, of course, that it seems the control is being created through Javascript instead of the OBJECT tag the HTML page auto-generates for you in VS'08.
If I look at the source on the HTML that's generated, I can see javascript that I'm assuming is supposed to create the object:
<script type="text/javascript">
//<![CDATA[
Sys.UI.Silverlight.Control.createObject("ctl00_m_g_a6e61a1d_6d11_4c53_8f7f_d76707ed7146_SilverlightProductSpinner_parent", "\u003cobject type=\"application/x-silverlight-2-b1\" data=\"data:application/x-silverlight-2-b1,\" id=\"ctl00_m_g_a6e61a1d_6d11_4c53_8f7f_d76707ed7146_SilverlightProductSpinner\" style=\"height:500px;width:640px;\"\u003e\r\n\t\u003cparam name=\"InitParams\" value=\"ctlid=PROD_DATA\"\u003e\r\n\r\n\t\u003c/param\u003e\u003cparam name=\"Windowless\" value=\"True\"\u003e\r\n\r\n\t\u003c/param\u003e\u003ca href=\"http://go.microsoft.com/fwlink/?LinkID=108182\"\u003e\u003cimg src=\"http://go.microsoft.com/fwlink/?LinkID=108181\" alt=\"Get Microsoft Silverlight\" style=\"border-width:0;\" /\u003e\u003c/a\u003e\r\n\u003c/object\u003e");
//]]>
</script>
There's also a script block at the bottom of the page that looks like it's supposed to initialize the control:
<script type="text/javascript">
//<![CDATA[
Sys.Application.initialize();
Sys.Application.add_init(function() {
$create(Sys.UI.Silverlight.Control, {"source":"/common/silverlight/ProductSpinnerXAP.xap"}, null, null, $get("ctl00_m_g_a6e61a1d_6d11_4c53_8f7f_d76707ed7146_SilverlightProductSpinner_parent"));
});
//]]>
</script>
All I see is a white area where the control should be. If I right-click on the area where my Silverlight app should be, I get the standard HTML page context menu, not the "Silverlight Configuration" context menu, so it looks like whatever is supposed to be creating the control isn't doing its job on page load.
There's gotta be something I'm doing wrong. Any ideas?
Thanks again for your help Bill,
-Dan