<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.silverlight.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Installation and Setup</title><link>http://forums.silverlight.net/forums/13.aspx</link><description>All about installing and getting Silverlight running on your system</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>Desklighter for Silverlight 3</title><link>http://forums.silverlight.net/forums/thread/327694.aspx</link><pubDate>Sat, 28 Nov 2009 01:05:52 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:327694</guid><dc:creator>Evan12</dc:creator><slash:comments>1</slash:comments><comments>http://forums.silverlight.net/forums/thread/327694.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=327694</wfw:commentRss><description>&lt;p&gt;Hi there,&lt;/p&gt;&lt;p&gt;I have a question regarding the use of DeskLighter to create a local silverlight executable. Now i&amp;#39;m wondering if it&amp;#39;s possible to use DeskLighter if you have silverlight web application that gets resources from a database. Is it possible for it to run on your local machine with the database created on there and what not? Feedback would be much appreciated.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Evan, &lt;br /&gt;&lt;/p&gt;&lt;p&gt;Thanks&amp;nbsp; &amp;nbsp; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>problem running silverlight</title><link>http://forums.silverlight.net/forums/thread/326568.aspx</link><pubDate>Wed, 25 Nov 2009 18:36:35 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:326568</guid><dc:creator>h_olson75</dc:creator><slash:comments>5</slash:comments><comments>http://forums.silverlight.net/forums/thread/326568.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=326568</wfw:commentRss><description>&lt;p&gt;I installed silverlight through netflix so I could watch movies online.&amp;nbsp; The installation was successful, but the program won&amp;#39;t run.&amp;nbsp; It keeps looping to the &amp;quot;Install Silverlight Now&amp;quot; message.&amp;nbsp; Does anyone know how to fix this ridiculous problem?&lt;/p&gt;</description></item><item><title>Polling Duplex Silverlight Client trouble</title><link>http://forums.silverlight.net/forums/thread/325584.aspx</link><pubDate>Tue, 24 Nov 2009 11:10:59 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:325584</guid><dc:creator>Aashish Gupta</dc:creator><slash:comments>3</slash:comments><comments>http://forums.silverlight.net/forums/thread/325584.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=325584</wfw:commentRss><description>&lt;p&gt;I am loosing my connection to the polling duplex service from my silverlight client.&lt;/p&gt;&lt;p&gt;In my application i want that if the client browser is opened for a time period of 6 hrs he/she should recieve messages from polling duplex no matter if he is active or not.&lt;/p&gt;&lt;p&gt;But what&amp;#39;s happening is when my web i.e silverlight client remains inactive for some time the polling duplex is not sending messages to the client.&lt;/p&gt;&lt;p&gt;Is it due to the settings in the polling duplex or due to the settings in the silverlight client i am confused in that.&lt;/p&gt;&lt;p&gt;My service is hosted as a console application not within the IIS&lt;/p&gt;&lt;p&gt;&amp;nbsp;Given below is how i connect to the duplex service&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;pre class="coloredcode"&gt;&lt;b id="1"&gt;1    &lt;/b&gt; private void ConnectToDuplexService()
&lt;b id="2"&gt;2    &lt;/b&gt;        {
&lt;b id="3"&gt;3    &lt;/b&gt;            DuplexServiceClient client = new DuplexServiceClient(
&lt;b id="4"&gt;4    &lt;/b&gt;              new PollingDuplexHttpBinding(),              
&lt;b id="5"&gt;5    &lt;/b&gt;            new EndpointAddress(&amp;quot;http://localhost:8000/DuplexService/&amp;quot;));
&lt;b id="6"&gt;6    &lt;/b&gt;
&lt;b id="7"&gt;7    &lt;/b&gt;            client.ReceiveJudgeScoreReceived += client_ReceiveJudgeScoreReceived;
&lt;b id="8"&gt;8    &lt;/b&gt;            client.ReceiveLengthReceived += client_ReceiveLengthReceived;
&lt;b id="9"&gt;9    &lt;/b&gt;            client.ReceiveCurrentAthleteReceived += client_ReceiveCurrentAthleteReceived;
&lt;b id="10"&gt;10   &lt;/b&gt;            client.ReceiveRoundCompleteReceived += client_ReceiveRoundCompleteReceived;
&lt;b id="11"&gt;11   &lt;/b&gt;            client.ReceiveRoundSettingsReceived += client_ReceiveRoundSettingsReceived;
&lt;b id="12"&gt;12   &lt;/b&gt;            client.SubscribeAsync(CId);
&lt;b id="13"&gt;13   &lt;/b&gt;
&lt;b id="14"&gt;14   &lt;/b&gt;
&lt;b id="15"&gt;15   &lt;/b&gt;            if (client.State != CommunicationState.Opened)
&lt;b id="16"&gt;16   &lt;/b&gt;            {
&lt;b id="17"&gt;17   &lt;/b&gt;                client.Abort();
&lt;b id="18"&gt;18   &lt;/b&gt;                client = new DuplexServiceClient(
&lt;b id="19"&gt;19   &lt;/b&gt;                    new PollingDuplexHttpBinding(),                    
&lt;b id="20"&gt;20   &lt;/b&gt;                new EndpointAddress(&amp;quot;http://localhost:80/DuplexService/&amp;quot;));
&lt;b id="21"&gt;21   &lt;/b&gt;            }
&lt;b id="22"&gt;22   &lt;/b&gt;
&lt;b id="23"&gt;23   &lt;/b&gt;            /* ThreadPool.QueueUserWorkItem(state =&amp;gt;
&lt;b id="24"&gt;24   &lt;/b&gt;             {
&lt;b id="25"&gt;25   &lt;/b&gt;                 while (true)
&lt;b id="26"&gt;26   &lt;/b&gt;                 {
&lt;b id="27"&gt;27   &lt;/b&gt;                     Thread.Sleep(10000);
&lt;b id="28"&gt;28   &lt;/b&gt;                     if (client.State != CommunicationState.Opened)
&lt;b id="29"&gt;29   &lt;/b&gt;                     {
&lt;b id="30"&gt;30   &lt;/b&gt;                         client = new DuplexServiceClient(
&lt;b id="31"&gt;31   &lt;/b&gt;                             new PollingDuplexHttpBinding(),                            
&lt;b id="32"&gt;32   &lt;/b&gt;                       new EndpointAddress(&amp;quot;http://localhost:8000/DuplexService/&amp;quot;));
&lt;b id="33"&gt;33   &lt;/b&gt;                     }
&lt;b id="34"&gt;34   &lt;/b&gt;                 }
&lt;b id="35"&gt;35   &lt;/b&gt;             });*/
&lt;b id="36"&gt;36   &lt;/b&gt;        }
&lt;/pre&gt;&amp;nbsp;&amp;nbsp;&lt;p&gt;Here is the config for my duplex service&lt;/p&gt;&lt;pre class="coloredcode"&gt;&lt;b id="1"&gt;1    &lt;/b&gt;
&lt;b id="2"&gt;2    &lt;/b&gt;&amp;lt;&lt;span class="tag"&gt;configuration&lt;/span&gt;&amp;gt;
&lt;b id="3"&gt;3    &lt;/b&gt;  &amp;lt;&lt;span class="tag"&gt;system.serviceModel&lt;/span&gt;&amp;gt;
&lt;b id="4"&gt;4    &lt;/b&gt;    &amp;lt;&lt;span class="tag"&gt;extensions&lt;/span&gt;&amp;gt;
&lt;b id="5"&gt;5    &lt;/b&gt;      &amp;lt;&lt;span class="tag"&gt;bindingElementExtensions&lt;/span&gt;&amp;gt;
&lt;b id="6"&gt;6    &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;add&lt;/span&gt;&lt;span class="attr"&gt; name=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;pollingDuplex&amp;quot;&lt;/span&gt;&lt;span class="attr"&gt; type=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;System.ServiceModel.Configuration.PollingDuplexElement, System.ServiceModel.PollingDuplex&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="7"&gt;7    &lt;/b&gt;      &amp;lt;/&lt;span class="tag"&gt;bindingElementExtensions&lt;/span&gt;&amp;gt;
&lt;b id="8"&gt;8    &lt;/b&gt;    &amp;lt;/&lt;span class="tag"&gt;extensions&lt;/span&gt;&amp;gt;
&lt;b id="9"&gt;9    &lt;/b&gt;    &amp;lt;&lt;span class="tag"&gt;behaviors&lt;/span&gt;&amp;gt;
&lt;b id="10"&gt;10   &lt;/b&gt;      &amp;lt;&lt;span class="tag"&gt;serviceBehaviors&lt;/span&gt;&amp;gt;
&lt;b id="11"&gt;11   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;behavior&lt;/span&gt;&lt;span class="attr"&gt; name=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;DuplexServiceBehavior&amp;quot;&lt;/span&gt;&amp;gt;
&lt;b id="12"&gt;12   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;serviceMetadata&lt;/span&gt;&lt;span class="attr"&gt; httpGetEnabled=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;true&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="13"&gt;13   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;serviceDebug&lt;/span&gt;&lt;span class="attr"&gt; includeExceptionDetailInFaults=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;true&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="14"&gt;14   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;serviceThrottling&lt;/span&gt;&lt;span class="attr"&gt; maxConcurrentSessions=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;2147483647&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="15"&gt;15   &lt;/b&gt;        &amp;lt;/&lt;span class="tag"&gt;behavior&lt;/span&gt;&amp;gt;
&lt;b id="16"&gt;16   &lt;/b&gt;      &amp;lt;/&lt;span class="tag"&gt;serviceBehaviors&lt;/span&gt;&amp;gt;
&lt;b id="17"&gt;17   &lt;/b&gt;    &amp;lt;/&lt;span class="tag"&gt;behaviors&lt;/span&gt;&amp;gt;
&lt;b id="18"&gt;18   &lt;/b&gt;    &amp;lt;&lt;span class="tag"&gt;bindings&lt;/span&gt;&amp;gt;
&lt;b id="19"&gt;19   &lt;/b&gt;      &amp;lt;&lt;span class="tag"&gt;customBinding&lt;/span&gt;&amp;gt;
&lt;b id="20"&gt;20   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;binding&lt;/span&gt;&lt;span class="attr"&gt; name=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;PubSub&amp;quot;&lt;/span&gt;&amp;gt;
&lt;b id="21"&gt;21   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;binaryMessageEncoding/&lt;/span&gt;&amp;gt;
&lt;b id="22"&gt;22   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;pollingDuplex&lt;/span&gt;&lt;span class="attr"&gt; maxPendingSessions=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;2147483647&amp;quot;&lt;/span&gt;
&lt;b id="23"&gt;23   &lt;/b&gt;&lt;span class="attr"&gt;                         maxPendingMessagesPerSession=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;2147483647&amp;quot;&lt;/span&gt;
&lt;b id="24"&gt;24   &lt;/b&gt;&lt;span class="attr"&gt;                         inactivityTimeout=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;02:00:00&amp;quot;&lt;/span&gt;
&lt;b id="25"&gt;25   &lt;/b&gt;&lt;span class="attr"&gt;                         serverPollTimeout=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;00:05:00&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="26"&gt;26   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;httpTransport/&lt;/span&gt;&amp;gt;
&lt;b id="27"&gt;27   &lt;/b&gt;        &amp;lt;/&lt;span class="tag"&gt;binding&lt;/span&gt;&amp;gt;
&lt;b id="28"&gt;28   &lt;/b&gt;      &amp;lt;/&lt;span class="tag"&gt;customBinding&lt;/span&gt;&amp;gt;
&lt;b id="29"&gt;29   &lt;/b&gt;      &amp;lt;&lt;span class="tag"&gt;netTcpBinding&lt;/span&gt;&amp;gt;
&lt;b id="30"&gt;30   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;binding&lt;/span&gt;&lt;span class="attr"&gt; name=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;netTcpBindingConfig&amp;quot;&lt;/span&gt;&lt;span class="attr"&gt; maxReceivedMessageSize=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;2147483647&amp;quot;&lt;/span&gt;&amp;gt;
&lt;b id="31"&gt;31   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;security&lt;/span&gt;&lt;span class="attr"&gt; mode=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;None&amp;quot;&lt;/span&gt; /&amp;gt;
&lt;b id="32"&gt;32   &lt;/b&gt;        &amp;lt;/&lt;span class="tag"&gt;binding&lt;/span&gt;&amp;gt;
&lt;b id="33"&gt;33   &lt;/b&gt;      &amp;lt;/&lt;span class="tag"&gt;netTcpBinding&lt;/span&gt;&amp;gt;
&lt;b id="34"&gt;34   &lt;/b&gt;    &amp;lt;/&lt;span class="tag"&gt;bindings&lt;/span&gt;&amp;gt;
&lt;b id="35"&gt;35   &lt;/b&gt;    &amp;lt;&lt;span class="tag"&gt;services&lt;/span&gt;&amp;gt;
&lt;b id="36"&gt;36   &lt;/b&gt;      &amp;lt;&lt;span class="tag"&gt;service&lt;/span&gt;&lt;span class="attr"&gt; behaviorConfiguration=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;DuplexServiceBehavior&amp;quot;&lt;/span&gt;&lt;span class="attr"&gt; name=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;ccSkiJumpDuplexService.DuplexService&amp;quot;&lt;/span&gt;&amp;gt;
&lt;b id="37"&gt;37   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;endpoint&lt;/span&gt; address=&amp;quot;&amp;quot;
&lt;b id="38"&gt;38   &lt;/b&gt;&lt;span class="attr"&gt;                  binding=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;customBinding&amp;quot;&lt;/span&gt;
&lt;b id="39"&gt;39   &lt;/b&gt;&lt;span class="attr"&gt;                  bindingConfiguration=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;PubSub&amp;quot;&lt;/span&gt;
&lt;b id="40"&gt;40   &lt;/b&gt;&lt;span class="attr"&gt;                  contract=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;ccSkiJump.BusinessObjects.Inventory.ServiceInterfaces.IDuplexService&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="41"&gt;41   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;endpoint&lt;/span&gt; address=&amp;quot;&amp;quot;
&lt;b id="42"&gt;42   &lt;/b&gt;&lt;span class="attr"&gt;                  binding=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;netTcpBinding&amp;quot;&lt;/span&gt;
&lt;b id="43"&gt;43   &lt;/b&gt;&lt;span class="attr"&gt;                  bindingConfiguration=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;netTcpBindingConfig&amp;quot;&lt;/span&gt;
&lt;b id="44"&gt;44   &lt;/b&gt;&lt;span class="attr"&gt;                  contract=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;ccSkiJump.BusinessObjects.Inventory.ServiceInterfaces.IDuplexService&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="45"&gt;45   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;endpoint&lt;/span&gt;&lt;span class="attr"&gt; address=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;mex&amp;quot;&lt;/span&gt;
&lt;b id="46"&gt;46   &lt;/b&gt;&lt;span class="attr"&gt;                  binding=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;mexHttpBinding&amp;quot;&lt;/span&gt;
&lt;b id="47"&gt;47   &lt;/b&gt;&lt;span class="attr"&gt;                  contract=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;IMetadataExchange&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="48"&gt;48   &lt;/b&gt;        &amp;lt;&lt;span class="tag"&gt;host&lt;/span&gt;&amp;gt;
&lt;b id="49"&gt;49   &lt;/b&gt;          &amp;lt;&lt;span class="tag"&gt;baseAddresses&lt;/span&gt;&amp;gt;
&lt;b id="50"&gt;50   &lt;/b&gt;            &amp;lt;&lt;span class="tag"&gt;add&lt;/span&gt;&lt;span class="attr"&gt; baseAddress=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;net.tcp://localhost:8012/DuplexService&amp;quot;&lt;/span&gt;/&amp;gt;            
&lt;b id="51"&gt;51   &lt;/b&gt;			  &amp;lt;&lt;span class="tag"&gt;add&lt;/span&gt;&lt;span class="attr"&gt; baseAddress=&lt;/span&gt;&lt;span class="attrv"&gt;&amp;quot;http://localhost:8000/DuplexService/&amp;quot;&lt;/span&gt;/&amp;gt;
&lt;b id="52"&gt;52   &lt;/b&gt;          &amp;lt;/&lt;span class="tag"&gt;baseAddresses&lt;/span&gt;&amp;gt;
&lt;b id="53"&gt;53   &lt;/b&gt;        &amp;lt;/&lt;span class="tag"&gt;host&lt;/span&gt;&amp;gt;
&lt;b id="54"&gt;54   &lt;/b&gt;      &amp;lt;/&lt;span class="tag"&gt;service&lt;/span&gt;&amp;gt;
&lt;b id="55"&gt;55   &lt;/b&gt;    &amp;lt;/&lt;span class="tag"&gt;services&lt;/span&gt;&amp;gt;
&lt;b id="56"&gt;56   &lt;/b&gt;  &amp;lt;/&lt;span class="tag"&gt;system.serviceModel&lt;/span&gt;&amp;gt;
&lt;b id="57"&gt;57   &lt;/b&gt;&amp;lt;/&lt;span class="tag"&gt;configuration&lt;/span&gt;&amp;gt;
&lt;/pre&gt;&amp;nbsp;&amp;nbsp;</description></item><item><title>Problem in creating Silverlight 3 Application:Object reference not set to an instance of object.</title><link>http://forums.silverlight.net/forums/thread/326901.aspx</link><pubDate>Thu, 26 Nov 2009 09:40:30 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:326901</guid><dc:creator>ashish_123</dc:creator><slash:comments>1</slash:comments><comments>http://forums.silverlight.net/forums/thread/326901.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=326901</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;After installing Visual Studio 2008 Service Pack 1 and Silvelight 3 when I try to create Silverlight Application I get this error message:Object reference not set to an instance of object.&lt;/p&gt;&lt;p&gt;Please provide a solution for this problem &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Default Splash Screen animates but doesn't show the download progress</title><link>http://forums.silverlight.net/forums/thread/326891.aspx</link><pubDate>Thu, 26 Nov 2009 09:22:11 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:326891</guid><dc:creator>SilverLaw</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/326891.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=326891</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I uploaded a SL2 App which is a few MB big. While downloading the app, the default splash screen animation is shown up&amp;nbsp;as expected, but the percentage of the download progress is frozen at 0%.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Any idea what exactly is going wrong?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Best regards,&lt;/p&gt;
&lt;p&gt;M.&lt;/p&gt;</description></item><item><title>Which Silverlight version with Visual Studio 2008 Professional Edition</title><link>http://forums.silverlight.net/forums/thread/326297.aspx</link><pubDate>Wed, 25 Nov 2009 12:34:42 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:326297</guid><dc:creator>ashish_123</dc:creator><slash:comments>6</slash:comments><comments>http://forums.silverlight.net/forums/thread/326297.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=326297</wfw:commentRss><description>&lt;p&gt;Which version of Silverlight can easily be installed with Visual Studio 2008 Professioanl edition&amp;nbsp; and how to add it &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Debugging issue oob apps in silverlight 4</title><link>http://forums.silverlight.net/forums/thread/325246.aspx</link><pubDate>Mon, 23 Nov 2009 21:43:41 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:325246</guid><dc:creator>Wardy</dc:creator><slash:comments>4</slash:comments><comments>http://forums.silverlight.net/forums/thread/325246.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=325246</wfw:commentRss><description>&lt;p&gt;Hey guys,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;yet again another promising release or silverlight, but yet again I install it and vs2010 to find more issues than solutions. &lt;br /&gt;Well ... I can&amp;#39;t really complain too much, it is a beta, but my issue seems to be somthing that should have been simple back in version 1.&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s my problem :&lt;/p&gt;
&lt;p&gt;I run my silverlight app and it looks good in my browser but I want it to run oob, so I install it and run it, no problems there too, even had very little issue doing the relevant configuration (big bonus that, well done guys).&lt;/p&gt;
&lt;p&gt;Then I tried to execute the newly installed oob app directly with visual studio and attach the debugger only to be told that I need to install my app.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s odd .. I have a shortcut on my desktop that strongly disagrees with that error ... so I figured ok it&amp;#39;s just a one off. &lt;/p&gt;
&lt;p&gt;I remove the app and reinstall it, try again, and no luck.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does anyone know how to install and attach VS to&amp;nbsp;an oob app that otherwise works perfectly fine?&lt;/p&gt;</description></item><item><title>How to run SL3 application in Windows 2003 64 bit server</title><link>http://forums.silverlight.net/forums/thread/325902.aspx</link><pubDate>Tue, 24 Nov 2009 21:10:16 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:325902</guid><dc:creator>kobruleht</dc:creator><slash:comments>4</slash:comments><comments>http://forums.silverlight.net/forums/thread/325902.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=325902</wfw:commentRss><description>&lt;p&gt;My SL application uses asmx web service.&lt;/p&gt;
&lt;p&gt;I perfomed clean install of Windows 2003 64-bit server in virtual maschine, installed all updates, ran&lt;/p&gt;
&lt;p&gt;aspnet_regiis.exe –i&lt;/p&gt;
&lt;p&gt;successfully and set IIS home directory to my application root.&lt;/p&gt;
&lt;p&gt;Typing &lt;a href="http://localhost/"&gt;http://localhost&lt;/a&gt;&amp;nbsp;in IE8 returns error&lt;/p&gt;
&lt;p&gt;---------------------------&lt;br /&gt;Message from webpage&lt;br /&gt;---------------------------&lt;br /&gt;Unhandled Error in Silverlight Application &lt;br /&gt;Code: 2104&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Category: InitializeError&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Message: 2104 An error has occurred.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;---------------------------&lt;br /&gt;OK&amp;nbsp;&amp;nbsp; &lt;br /&gt;---------------------------&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Trying to run asmx file web service fom borwser returns 404 error.&lt;/p&gt;
&lt;p&gt;IIS log below shows that access to ClientBin\MyApp.xap and StockService.asmx&amp;nbsp; files returns 404 error.&lt;/p&gt;
&lt;p&gt;I verified that those files are present. Same application runs OK in 32bit Vista and XP.&lt;/p&gt;
&lt;p&gt;How to it in W2003 64 bit server ?&lt;/p&gt;
&lt;p&gt;Andrus.&lt;/p&gt;
&lt;p&gt;2009-11-24 17:18:38 W3SVC1 127.0.0.1 GET /index.htm - 80 - 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.2;+WOW64;+Trident/4.0;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 200 0 0&lt;br /&gt;2009-11-24 17:18:38 W3SVC1 127.0.0.1 GET /Silverlight.js - 80 - 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.2;+WOW64;+Trident/4.0;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 200 0 0&lt;br /&gt;2009-11-24 17:18:38 W3SVC1 127.0.0.1 GET /ClientBin/MyAppSL.xap - 80 - 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.2;+WOW64;+Trident/4.0;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 404 3 50&lt;br /&gt;2009-11-24 17:18:45 W3SVC1 127.0.0.1 GET /StockService.asmx - 80 - 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.2;+WOW64;+Trident/4.0;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 404 2 1260&lt;/p&gt;</description></item><item><title>Adding Silverlight to Visual Studio 2008 Professional Edition</title><link>http://forums.silverlight.net/forums/thread/326256.aspx</link><pubDate>Wed, 25 Nov 2009 10:57:30 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:326256</guid><dc:creator>ashish_123</dc:creator><slash:comments>5</slash:comments><comments>http://forums.silverlight.net/forums/thread/326256.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=326256</wfw:commentRss><description>&lt;p&gt;I need to know whether how can I add Silverlight 3 with Visual Studio 2008 Professional Edition.&lt;/p&gt;&lt;p&gt;Please help me its urgent as I have to use Silverlight in my project&amp;nbsp; &amp;nbsp; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Keep getting prompted to install Silverlight</title><link>http://forums.silverlight.net/forums/thread/274126.aspx</link><pubDate>Sat, 22 Aug 2009 11:56:33 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:274126</guid><dc:creator>NiteZephyr</dc:creator><slash:comments>16</slash:comments><comments>http://forums.silverlight.net/forums/thread/274126.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=274126</wfw:commentRss><description>&lt;p&gt;I had Silverlight 2 installed and everything was fine. Since I upgraded the browser from IE7 to IE8, I got prompted to install Silverlight. I uninstalled Silverlight 2, it&amp;#39;s&amp;nbsp;directory and cleared the IE cache. I installed Silverlight 3 successfully. I thought great I got the latest version. Surprise! When I go to silverlight.net it prompts me to install again. I install again and get an error it already exist try uninstall and reinstall. I do that to find out I get the same&amp;nbsp;thing over and over. I check the add-ons and Silverlight is enabled. I only have five other add-ons, 2 of which are microsoft. This is a clean install of XP Pro sp3 using IE8, which is supported. After wiping all Silverlight existance... directory, cache, registry, and starting over; problem does not go away. Ideas?&lt;/p&gt;</description></item><item><title>Silverlight (november22, 2009)Error Message:  The feature you are trying to use is on a network resource that is unavailable.</title><link>http://forums.silverlight.net/forums/thread/324626.aspx</link><pubDate>Mon, 23 Nov 2009 02:52:49 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:324626</guid><dc:creator>manysocks</dc:creator><slash:comments>2</slash:comments><comments>http://forums.silverlight.net/forums/thread/324626.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=324626</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Something is wrong with the silverlight I have installed on my computer.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I get this message repeatedly:&lt;/p&gt;&lt;p&gt;
 
  Normal
  0
  
   
   
   
   
  
  MicrosoftInternetExplorer4
 




 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:&amp;quot;Table Normal&amp;quot;;
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:&amp;quot;&amp;quot;;
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:&amp;quot;Times New Roman&amp;quot;;}



&lt;/p&gt;&lt;p class="MsoNormal"&gt;The feature you are trying to use is on a network resource
that is unavailable.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;Click OK to try again or enter an alternate path to a folder
containing the installation package silverlight.msi in the box below.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/p&gt;

&lt;b&gt;&lt;span style="font-size:12pt;font-family:&amp;#39;Times New Roman&amp;#39;;"&gt;[c:\91e8d5921eblah blah blah\&lt;/span&gt;&lt;/b&gt;]&lt;br /&gt;&lt;p&gt;&amp;nbsp;When do I get the above message?&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1.&amp;nbsp;&lt;b&gt; Important Microsoft updates cannot be installed - I get the above message&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;2.&amp;nbsp;&lt;b&gt; I cannot &amp;quot;uninstall&amp;quot; Silverlight - I&lt;/b&gt; get the above message.&lt;/p&gt;&lt;p&gt;3.&amp;nbsp;&lt;b&gt; I cannot INSTALL Silverlight&lt;/b&gt; - I get the above message.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So, am i doomed to never be able to update Microsoft security updates?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have tried everything in my limited tech head.&amp;nbsp; I am stumped.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank You,&lt;/p&gt;&lt;p&gt;kathy &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Silverlight requirements</title><link>http://forums.silverlight.net/forums/thread/324968.aspx</link><pubDate>Mon, 23 Nov 2009 14:52:28 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:324968</guid><dc:creator>dieseldave</dc:creator><slash:comments>8</slash:comments><comments>http://forums.silverlight.net/forums/thread/324968.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=324968</wfw:commentRss><description>&lt;p&gt;Is Silverlight a part of the MSDN subscription or are there other costs?&lt;/p&gt;
&lt;p&gt;What sort of ide does it have - VS2008 or 2010?&lt;/p&gt;
&lt;p&gt;I Sivelight the best solution for a internal business data centric app? I was under the impression that its MS version of Flash?&amp;nbsp;&lt;/p&gt;</description></item><item><title>Unable to create .xap file using MSBuild</title><link>http://forums.silverlight.net/forums/thread/325589.aspx</link><pubDate>Tue, 24 Nov 2009 11:18:31 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:325589</guid><dc:creator>peddk</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/325589.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=325589</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am unable to create .xap file by executing MSBuild script on Windows Server 2008. When the same script is executed on Windows Server 2003 it worked well, just by removing readonly property of .xap file. But when the same script is executed on Server 2008 it is not able to create .xap file even the readonly property of the file is set to false through script, its just copying the existing file to drop location without creating new file.&lt;/p&gt;
&lt;p&gt;Is it related to operating system?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Thanks&lt;/p&gt;</description></item><item><title>Silverlight 4 - Missing assemblies in the "Add reference" dialog</title><link>http://forums.silverlight.net/forums/thread/325102.aspx</link><pubDate>Mon, 23 Nov 2009 17:50:14 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:325102</guid><dc:creator>Arnaud Auroux</dc:creator><slash:comments>3</slash:comments><comments>http://forums.silverlight.net/forums/thread/325102.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=325102</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi, i&amp;#39;ve just installed SL 4 but when&amp;nbsp; i use &amp;quot;Add reference&amp;quot; i have just a few assemblies (11), i have not System.Xml.Linq, etc...&lt;/p&gt;&lt;p&gt;&amp;nbsp;Any idea ? &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Scrollbar issues with silverlight 3.0</title><link>http://forums.silverlight.net/forums/thread/321338.aspx</link><pubDate>Tue, 17 Nov 2009 11:33:25 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:321338</guid><dc:creator>guhanraman</dc:creator><slash:comments>6</slash:comments><comments>http://forums.silverlight.net/forums/thread/321338.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=321338</wfw:commentRss><description>&lt;p&gt;Am just a user of silverlight to watch online streaming videos. Am not a developer that uses silverlight. Here is my issue. My provider just switched to silverlight and am having trouble since then to use the scrolling functionality for recorded videos(it used to work fine with flash earlier). Basically with silverlight am not able to scroll (basically go forward or backward in the player to play from random location), the control just doesn&amp;#39;t work. Happens with both IE and firefox.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Could you please help?&lt;/p&gt;</description></item><item><title>Unable to install silverlight 4.0 developer runtime</title><link>http://forums.silverlight.net/forums/thread/325053.aspx</link><pubDate>Mon, 23 Nov 2009 16:40:20 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:325053</guid><dc:creator>slinton</dc:creator><slash:comments>4</slash:comments><comments>http://forums.silverlight.net/forums/thread/325053.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=325053</wfw:commentRss><description>&lt;span class="votinglabel type"&gt;&lt;/span&gt;
&lt;div class="container"&gt;
&lt;div class="body"&gt;Hello,&lt;br /&gt;&lt;br /&gt;I am eager to start working with WCF Ria services using Silverlight 4.0 and Visual Studio 2010 beta 2.&lt;br /&gt;&lt;br /&gt;I get an error when I try to run applications in Visual Studio 2010: &amp;quot;Unable to start debugging: The silverlight managed debugging package is not installed.&amp;quot;&lt;br /&gt;&lt;br /&gt;But when I try to install silverlight 4.0, I get the error &amp;quot;Unable to install silverlight: your browser / operating system configuration is not supported.&amp;quot;&lt;br /&gt;&lt;br /&gt;I am running Vista on a 64 bit system, and have Internet Explorer 8.&lt;br /&gt;&lt;br /&gt;Any ideas?&lt;br /&gt;&lt;br /&gt;Thanks&lt;/div&gt;&lt;/div&gt;</description></item><item><title>System.Web.Silverlight .dll Missing</title><link>http://forums.silverlight.net/forums/thread/324676.aspx</link><pubDate>Mon, 23 Nov 2009 05:44:03 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:324676</guid><dc:creator>cmant</dc:creator><slash:comments>2</slash:comments><comments>http://forums.silverlight.net/forums/thread/324676.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=324676</wfw:commentRss><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;Installed VS2008 SP-1 and SilverLight 3.0 SDK,SilverLight 3.0 ToolKit, Details are:-&lt;/p&gt;
&lt;p&gt;Microsoft Visual Studio 2008 Version 9.0.30729.1 SP&lt;br /&gt;Microsoft .NET Framework Version 3.5 SP1&lt;/p&gt;
&lt;p&gt;Microsoft Silverlight Projects 2008&amp;nbsp;&amp;nbsp; 91605-270-7992215-60154&lt;br /&gt;Microsoft Silverlight Projects 2008&amp;nbsp;&amp;nbsp; Version 9.0.30730.126&lt;/p&gt;
&lt;p&gt;Problam is I am not geting Silverlight control for .aspx pages means &lt;/p&gt;
&lt;p&gt;Assembly=&amp;quot;System.Web.Silverlight&amp;quot; Namespace=&amp;quot;System.Web.UI.SilverlightControls&amp;quot; are not found&lt;/p&gt;
&lt;p&gt;Please help&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Unable to install Silverlight</title><link>http://forums.silverlight.net/forums/thread/271502.aspx</link><pubDate>Tue, 18 Aug 2009 18:46:41 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:271502</guid><dc:creator>krit anand</dc:creator><slash:comments>8</slash:comments><comments>http://forums.silverlight.net/forums/thread/271502.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=271502</wfw:commentRss><description>&lt;p&gt;After downloading the installation fails. I am using Windows XP and IE7&lt;/p&gt;</description></item><item><title>Error in Silverlight Application</title><link>http://forums.silverlight.net/forums/thread/324164.aspx</link><pubDate>Sat, 21 Nov 2009 09:47:09 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:324164</guid><dc:creator>cmant</dc:creator><slash:comments>3</slash:comments><comments>http://forums.silverlight.net/forums/thread/324164.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=324164</wfw:commentRss><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I am&amp;nbsp;geting error. When i am creating a silverlight application. Error is&lt;/p&gt;
&lt;p&gt;Error: this template attempted to load an untrusted component &amp;#39;Microsoft.VisualStudio.Silverlight, version=9.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a&amp;#39;&lt;/p&gt;
&lt;p&gt;I am using&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Microsoft Visual Studio 2008&lt;br /&gt;Version 9.0.21022.8 RTM&lt;br /&gt;Microsoft .NET Framework&lt;br /&gt;Version 3.5 SP1&lt;/p&gt;
&lt;p&gt;and Silverlight 3.0 SDK.&lt;/p&gt;</description></item><item><title>Installation error AND can't remove what's installed so far</title><link>http://forums.silverlight.net/forums/thread/323958.aspx</link><pubDate>Fri, 20 Nov 2009 21:24:03 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:323958</guid><dc:creator>MrTennis</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/323958.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=323958</wfw:commentRss><description>&lt;p&gt;Trying to install Silverlight on IE7 or on Firefox - same result. The error reads:&lt;/p&gt;&lt;p&gt;&lt;b&gt;The feature you&amp;#39;re trying to use is a Network resource that is unavailable.&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Click OK to try again or enter an alternate path to a folder containing the installation package &amp;#39;silverlight.msi&amp;#39; in the box below.&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Use source:&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;c:\c769cfea1fa0ab6605409672b253eaec\ &lt;/b&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;An item named Silverlight is located in the Control Panel under Add/Remove Programs. Trying to remove it I&amp;#39;m getting the exact same error message.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Silverlight and Windows Media Player Core</title><link>http://forums.silverlight.net/forums/thread/323928.aspx</link><pubDate>Fri, 20 Nov 2009 20:22:34 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:323928</guid><dc:creator>thenews</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/323928.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=323928</wfw:commentRss><description>&lt;p&gt;Hi, on this website &lt;a href="http://www.radio-canada.ca/audio-video/"&gt;http://www.radio-canada.ca/audio-video/&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Installation with IE6&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;u&gt;Before&amp;nbsp;I install Silverlight 3:&lt;br /&gt;&lt;/u&gt;Flash run the Web Interfaces and Windows Media Player Core&amp;nbsp;play the video&lt;/p&gt;
&lt;p&gt;&lt;u&gt;After the installation of SL 3:&lt;/u&gt;&lt;br /&gt;Flash run the Web Interface and Silverlight 3 play the video, ActiveX of Windows Media Player Core still enable but no problem&lt;/p&gt;
&lt;p&gt;Installation with IE7&lt;/p&gt;
&lt;p&gt;&lt;u&gt;Before&amp;nbsp;I install Silverlight 3:&lt;br /&gt;&lt;/u&gt;Flash run the Web Interfaces and Windows Media Player Core&amp;nbsp;play the video&lt;/p&gt;
&lt;p&gt;&lt;u&gt;After the installation of SL 3:&lt;/u&gt;&lt;br /&gt;Flash run the Web Interface and Silverlight 3 &lt;strong&gt;&lt;u&gt;CANT&lt;/u&gt;&lt;/strong&gt; play the video, ActiveX of Windows Media Player Core still enable and when i turn off the add-on of silverlight it work again.&lt;/p&gt;
&lt;p&gt;When i uninstall Adobe still the same. I think it have something to do with SL3 or Media Player ActiveX and IE7 am i wrong ?&lt;/p&gt;</description></item><item><title>Silverlight 4 Developer Runtime error 1509</title><link>http://forums.silverlight.net/forums/thread/322977.aspx</link><pubDate>Thu, 19 Nov 2009 14:40:25 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:322977</guid><dc:creator>j1mb0</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/322977.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=322977</wfw:commentRss><description>&lt;p&gt;Using IE8 with SL3 (no prior problems)&amp;nbsp;on Vista. Just installed VS2010, SL4, etc, etc. On running shiny new (local) SL4 app web&amp;nbsp;I was&amp;nbsp;told to go download new SL4 runtime. So,&amp;nbsp;to be safe I first uninstalled the SL3 runtime, then&amp;nbsp;downloaded and ran the SL4 Silverlight-Developer.exe, but&amp;nbsp;got message id 1509 &amp;quot;Microsoft Silverlight is not supported on your operating environment.&amp;quot;&lt;br /&gt;Er, where did I do wrong?&lt;/p&gt;</description></item><item><title>I did not use the chainer... everyrthing went OK from the Getting Started page - can't open project files ?</title><link>http://forums.silverlight.net/forums/thread/146855.aspx</link><pubDate>Fri, 12 Dec 2008 22:21:42 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:146855</guid><dc:creator>tibby99</dc:creator><slash:comments>12</slash:comments><comments>http://forums.silverlight.net/forums/thread/146855.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=146855</wfw:commentRss><description>&lt;p&gt;a.) I installed VS2008 - SP1 successfully.&lt;/p&gt;
&lt;p&gt;b.) I already had Blend version 2 with the SP installed.&amp;nbsp; This was prior to installing Silverlight which should be OK.&lt;/p&gt;
&lt;p&gt;c.) Then I installed the Silverlight Tools For Visual Studio&amp;nbsp;SP-1 which states that it will install &lt;/p&gt;
&lt;p&gt;This download will install the following: &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Silverlight 2 developer runtime 
&lt;li&gt;Silverlight 2 software development kit 
&lt;li&gt;&lt;strong&gt;KB956453&lt;/strong&gt; for Visual Studio 2008 SP1 &lt;br /&gt;and/or&lt;br /&gt;KB956485 for Visual Web Developer 2008 Express with SP1 
&lt;li&gt;Silverlight Tools for Visual Studio 2008 SP1 &lt;br /&gt;and/or&lt;br /&gt;Silverlight Tools for Visual Web Developer 2008 Express with SP1 &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Note: I checked my VS-2008 after the install and I have KB956453 installed whch would indicate the Silverlight install went OK :&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Update for Microsoft Visual Studio Team System 2008 Team Suite - ENU (KB956453)&amp;nbsp;&amp;nbsp; &lt;strong&gt;KB956453&lt;/strong&gt;&lt;br /&gt;This update is for Microsoft Visual Studio Team System 2008 Team Suite - ENU.&lt;br /&gt;If you later install a more recent service pack, this update will be uninstalled automatically.&lt;br /&gt;For more information, visit &lt;a href="http://support.microsoft.com/kb/956453"&gt;http://support.microsoft.com/kb/956453&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;The I installed the Silverlight Toolkit.&amp;nbsp; The only exception to the sequence on &lt;a href="http://silverlight.net/GetStarted/"&gt;http://silverlight.net/GetStarted/&lt;/a&gt;&amp;nbsp; was that I had Blend 2 already installed.&lt;/p&gt;
&lt;p&gt;The problem I have is that when I go to open up any of the Silverlight sample VS projects I get this error:&lt;/p&gt;
&lt;p&gt;Microsoft Silverlight Tools is unable to open the project due to a missing patch ( WHICH ONE ???? ) for Visual Studio.&amp;nbsp; Please download the latest update from &lt;a href="http://go.microsoft.com/fwlink/?LInkId=120032"&gt;http://go.microsoft.com/fwlink/?LInkId=120032&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I&amp;#39;m stuck in a circular loop where I go to that link install and then I still can&amp;#39;t open any of the sample Silverlight projects.&amp;nbsp; I am running Windows Server 2K8 and in general this is a working clean developer box.&lt;/p&gt;
&lt;p&gt;Any help would be appreciated.&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;p&gt;mark&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>how to block installation popup?</title><link>http://forums.silverlight.net/forums/thread/320412.aspx</link><pubDate>Sun, 15 Nov 2009 13:45:56 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:320412</guid><dc:creator>guenavan</dc:creator><slash:comments>4</slash:comments><comments>http://forums.silverlight.net/forums/thread/320412.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=320412</wfw:commentRss><description>&lt;p&gt;I am using Opera for navigating and &lt;br /&gt;Microsoft sites are all torturing me with blocking blue popup&lt;br /&gt;offering to install Silverlight:&lt;br /&gt;&amp;quot;Install Microsoft Silverlight for a better experience on this site.&lt;br /&gt;Click to install&amp;quot;&lt;br /&gt;&lt;br /&gt;Though, it is impossible to install since Opera is not supported Silverlight browser.&lt;br /&gt;&lt;br /&gt;Is there any way to escape this&amp;nbsp;never-ending &amp;quot;better&amp;quot; experience?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Problem with Silverlight3 Beta SDK,</title><link>http://forums.silverlight.net/forums/thread/318774.aspx</link><pubDate>Thu, 12 Nov 2009 05:26:16 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:318774</guid><dc:creator>phaniwithu</dc:creator><slash:comments>5</slash:comments><comments>http://forums.silverlight.net/forums/thread/318774.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=13&amp;PostID=318774</wfw:commentRss><description>Hi, i installed the following order
Silverlight3_Tools.exe
Silverlight3 Toolkit July2009
silverlight_sdk.exe,

since i want to reference system.componentmodel i installed silverlight_sdk.exe, otherwise 
the system.componentmodel is not visible in the reference list,
now the problem is when I build the solution the Xap file is not coming under ClientBin, it is going to 
Debug folder,
</description></item></channel></rss>