<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>CompositeWPF Work Item Rss Feed</title><link>http://www.codeplex.com/CompositeWPF/WorkItem/List.aspx</link><description>CompositeWPF Work Item Rss Description</description><item><title>Commented Issue: Unity not compatible with UnityExtensions [10110]</title><link>http://compositewpf.codeplex.com/workitem/10110</link><description>Please see https&amp;#58;&amp;#47;&amp;#47;compositewpf.codeplex.com&amp;#47;discussions&amp;#47;443219&lt;br /&gt;Microsoft.Practices.Prism.UnityExtensions is not compatible with newly &amp;#40;officially&amp;#41; released Unity 3.0&amp;#40;1304.0&amp;#41;&lt;br /&gt;Seems like Unity is signed with version 3.0.0.0.&lt;br /&gt;&lt;br /&gt;Please note the statement of official release of Unity&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.microsoft.com&amp;#47;en-us&amp;#47;download&amp;#47;details.aspx&amp;#63;id&amp;#61;38788&lt;br /&gt;Comments: ** Comment from web user: DCherubini ** &lt;p&gt;Workarounds available for this issue in the original thread:&lt;br&gt;* [Prism 4.5 and Unity 3.0](https://compositewpf.codeplex.com/discussions/443219)&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Damian Cherubini&lt;br&gt;http://blogs.southworks.net/dcherubini&lt;/p&gt;</description><author>DCherubini</author><pubDate>Tue, 14 May 2013 21:02:18 GMT</pubDate><guid isPermaLink="false">Commented Issue: Unity not compatible with UnityExtensions [10110] 20130514090218P</guid></item><item><title>Created Issue: Unity not compatible with UnityExtensions [10110]</title><link>http://compositewpf.codeplex.com/workitem/10110</link><description>Please see https&amp;#58;&amp;#47;&amp;#47;compositewpf.codeplex.com&amp;#47;discussions&amp;#47;443219&lt;br /&gt;Microsoft.Practices.Prism.UnityExtensions is not compatible with newly &amp;#40;officially&amp;#41; released Unity 3.0&amp;#40;1304.0&amp;#41;&lt;br /&gt;Seems like Unity is signed with version 3.0.0.0.&lt;br /&gt;&lt;br /&gt;Please note the statement of official release of Unity&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.microsoft.com&amp;#47;en-us&amp;#47;download&amp;#47;details.aspx&amp;#63;id&amp;#61;38788&lt;br /&gt;</description><author>Eager2008</author><pubDate>Fri, 10 May 2013 17:49:02 GMT</pubDate><guid isPermaLink="false">Created Issue: Unity not compatible with UnityExtensions [10110] 20130510054902P</guid></item><item><title>Commented Issue: Loading Module from GAC [10053]</title><link>http://compositewpf.codeplex.com/workitem/10053</link><description>Hi,&lt;br /&gt;&lt;br /&gt;i am facing problem loading modules from GAC.&lt;br /&gt;&lt;br /&gt;I have a WPF desktop application &amp;#40;Framework 4.0&amp;#41; and have 5 dlls as my modules .i registered all my dlls into GAC, i have the module configuration in my app.config and i want to load module dlls from GAC instead of application path.&lt;br /&gt;&lt;br /&gt;please help me out on this...&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Ap&lt;br /&gt;Comments: ** Comment from web user: ap2012 ** &lt;p&gt;Thanks fmartinez ...&lt;br&gt;&lt;/p&gt;</description><author>ap2012</author><pubDate>Fri, 10 May 2013 13:59:15 GMT</pubDate><guid isPermaLink="false">Commented Issue: Loading Module from GAC [10053] 20130510015915P</guid></item><item><title>Commented Issue: Loading Module from GAC [10053]</title><link>http://compositewpf.codeplex.com/workitem/10053</link><description>Hi,&lt;br /&gt;&lt;br /&gt;i am facing problem loading modules from GAC.&lt;br /&gt;&lt;br /&gt;I have a WPF desktop application &amp;#40;Framework 4.0&amp;#41; and have 5 dlls as my modules .i registered all my dlls into GAC, i have the module configuration in my app.config and i want to load module dlls from GAC instead of application path.&lt;br /&gt;&lt;br /&gt;please help me out on this...&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Ap&lt;br /&gt;Comments: ** Comment from web user: fmartinez ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Based on my understanding, in order to be able to load modules from the GAC using the configuration file, you need to:&lt;br&gt;#&lt;br&gt;+ Register all your module dll's into GAC&lt;br&gt;+ Add references to these modules dll's into your working project&lt;br&gt;+ Configure the app.config file accordingly &lt;/p&gt;&lt;p&gt;According to your scenario, I believe you are facing problems with the app.config file. Therefore, here is a sample of how your app.config file should look like:&lt;/p&gt;&lt;p&gt;```XML&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br&gt;&amp;lt;configuration&amp;gt;&lt;br&gt;  &amp;lt;configSections&amp;gt;&lt;br&gt;    &amp;lt;section name=&amp;quot;modules&amp;quot; type=&amp;quot;Microsoft.Practices.Prism.Modularity.ModulesConfigurationSection, Microsoft.Practices.Prism&amp;quot;/&amp;gt;&lt;br&gt;  &amp;lt;/configSections&amp;gt;&lt;br&gt;  &amp;lt;modules&amp;gt;&lt;br&gt;    &amp;lt;!-- Here you will fill the information of your module dll's --&amp;gt;&lt;br&gt;    &amp;lt;!-- assemblyFile is the exact name of the module dll --&amp;gt;&lt;br&gt;    &amp;lt;!-- moduleType is &amp;quot;namespace.classname, assemblyname, version, culture, publickeytoken&amp;quot; --&amp;gt;&lt;br&gt;    &amp;lt;module assemblyFile=&amp;quot;HelloWorldModule.dll&amp;quot; moduleType=&amp;quot;HelloWorldModule.HelloWorldModule, HelloWorldModule, Version=1.0.0.0, Culture=neutral, PublicKeyToken=805d827e058e1047&amp;quot; moduleName=&amp;quot;HelloWorldModule&amp;quot; startupLoaded=&amp;quot;true&amp;quot; /&amp;gt;&lt;br&gt;  &amp;lt;/modules&amp;gt;&lt;br&gt;&amp;lt;/configuration&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;Take into account that is mandatory to specify the PublicKeyToken of your assembly to avoid further errors.&lt;/p&gt;&lt;p&gt;Hope this helps,&lt;/p&gt;&lt;p&gt;Federico Martinez &lt;br&gt;http://blogs.southworks.net/fmartinez&lt;br&gt;&lt;/p&gt;</description><author>fmartinez</author><pubDate>Tue, 07 May 2013 18:48:47 GMT</pubDate><guid isPermaLink="false">Commented Issue: Loading Module from GAC [10053] 20130507064847P</guid></item><item><title>Created Issue: Loading Module from GAC [10053]</title><link>http://compositewpf.codeplex.com/workitem/10053</link><description>Hi,&lt;br /&gt;&lt;br /&gt;i am facing problem loading modules from GAC.&lt;br /&gt;&lt;br /&gt;I have a WPF desktop application &amp;#40;Framework 4.0&amp;#41; and have 5 dlls as my modules .i registered all my dlls into GAC, i have the module configuration in my app.config and i want to load module dlls from GAC instead of application path.&lt;br /&gt;&lt;br /&gt;please help me out on this...&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Ap&lt;br /&gt;</description><author>ap2012</author><pubDate>Wed, 24 Apr 2013 14:10:56 GMT</pubDate><guid isPermaLink="false">Created Issue: Loading Module from GAC [10053] 20130424021056P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: sharathkumarek ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have installed SMF Player v2.6 &amp;amp; IIS Smooth Streaming Client 1.5 RTW - Update 2, but I couldn't get the player to work inside Prism region again (though it works as a stand alone player). Player loads in prism region but doesn't play. &lt;/p&gt;&lt;p&gt;Below is what I did - please let me know what I am missing here?&lt;br&gt;I have added a module to my existing  Silverlight 4 project by adding a SMF Smooth Streaming Application which has a view (player) &amp;amp; a class (inheriting IModule)  and injected that view to shell region. Also I have added correct versions of the below references to Shell project.&lt;/p&gt;&lt;p&gt;Microsoft.SilverlightMediaFramework.Core.dll&lt;br&gt;Microsoft.SilverlightMediaFramework.Plugins.dll&lt;br&gt;Microsoft.SilverlightMediaFramework.Plugins.SmoothStreaming.dll&lt;br&gt;Microsoft.SilverlightMediaFramework.Utilities.dll&lt;br&gt;Microsoft.Web.Media.SmoothStreaming.dll&lt;/p&gt;&lt;p&gt;Player loads but doesn't play. Please help...&lt;/p&gt;&lt;p&gt;Thanks,&lt;br&gt;Sharath&lt;/p&gt;</description><author>sharathkumarek</author><pubDate>Mon, 22 Apr 2013 13:31:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130422013130P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: fmartinez ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;The maximum size that the Player can achieve is determined by the Width and Height properties from your __Shell.xaml__. To get the fullscreen work, just set these properties to __Auto__.&lt;/p&gt;&lt;p&gt;Regards, &lt;/p&gt;&lt;p&gt;Federico Martinez &lt;br&gt;http://blogs.southworks.net/fmartinez&lt;/p&gt;</description><author>fmartinez</author><pubDate>Fri, 19 Apr 2013 18:48:42 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130419064842P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: sharathkumarek ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Thanks for quick reply. &lt;br&gt;One thing I noticed in the sample project is that full screen doesn't work with prism. Any idea why?&lt;/p&gt;&lt;p&gt;Thanks,&lt;br&gt;Sharath&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>sharathkumarek</author><pubDate>Fri, 19 Apr 2013 09:45:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130419094520A</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: fmartinez ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I just uploaded the sample with name __&amp;quot;HelloWorld with SMF 2.6.zip&amp;quot;__.&lt;/p&gt;&lt;p&gt;Hope this helps,&lt;/p&gt;&lt;p&gt;Federico Martinez &lt;br&gt;http://blogs.southworks.net/fmartinez&lt;/p&gt;</description><author>fmartinez</author><pubDate>Thu, 18 Apr 2013 17:06:11 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130418050611P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: sharathkumarek ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Thanks for trying with player v2.6. Could you please provide me the sample project that you have created for my reference?&lt;/p&gt;&lt;p&gt;Thanks,&lt;br&gt;Sharath&lt;/p&gt;</description><author>sharathkumarek</author><pubDate>Thu, 18 Apr 2013 14:57:50 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130418025750P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: fmartinez ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;We tried to use the __SMF Player v2.6__ with __Silverlight 4__ and it works without problems. Nevertheless, you will need to ge the __IIS Smooth Streaming Client 1.5 RTW - Update 2__ to reference the __Microsoft.Web.Media.SmoothStreaming__ assembly for __Silverlight 4__, since the __IIS Smoth Streaming Client 2.0__ is targeted to __Silverlight 5__ only and doesn't work properly with v2.6 of the player. You can get it here:&lt;/p&gt;&lt;p&gt;- [IIS Smooth Streaming Client 1.5 RTW - Update 2](http://www.microsoft.com/en-us/download/details.aspx?id=8227)&lt;/p&gt;&lt;p&gt;Regards, &lt;/p&gt;&lt;p&gt;Federico Martinez &lt;br&gt;http://blogs.southworks.net/fmartinez&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>fmartinez</author><pubDate>Mon, 08 Apr 2013 18:14:29 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130408061429P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: sharathkumarek ** &lt;p&gt;Hi Federico,&lt;/p&gt;&lt;p&gt;I will try with player v2.6 and Silverlight 4 and will let you know how it goes. what should be the SSME version for 2.6 player?&lt;/p&gt;&lt;p&gt;Also, does 2.7v player work if I just change the silverlight version to 5? I did that but no luck :(&lt;/p&gt;&lt;p&gt;Thanks,&lt;br&gt;Sharath&lt;/p&gt;</description><author>sharathkumarek</author><pubDate>Tue, 26 Mar 2013 10:57:57 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130326105757A</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: fmartinez ** &lt;p&gt;Hi Sharath,&lt;/p&gt;&lt;p&gt;Now that you mention you are using __Silverlight 4__, it's worth mentioning that according to the following thread, the __2.7__ version of the SMF Player targets __Silverlight 5__, so for __Silverlight 4__, you should use version __2.6__ of the Player.&lt;/p&gt;&lt;p&gt;+ [Does SMF 2.7 support Silverlight 4?](http://smf.codeplex.com/discussions/399649)&lt;/p&gt;&lt;p&gt;This might be related to your problem,&lt;br&gt;Regards,&lt;/p&gt;&lt;p&gt;Federico Martinez &lt;br&gt;http://blogs.southworks.net/fmartinez&lt;/p&gt;</description><author>fmartinez</author><pubDate>Fri, 22 Mar 2013 17:03:33 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130322050333P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: sharathkumarek ** &lt;p&gt;Hi Damian,&lt;/p&gt;&lt;p&gt;Your sample project works perfectly fine for me. I saw that your project's target version was silverlight 5.  Its worth mentioning that I am trying to add this player inside my existing silverlight 4 application but couldn't get it to work. Isn't that possible? Could you please walk me through brief steps how I can upgrade the player in an existing application?&lt;/p&gt;&lt;p&gt;Thanks,&lt;br&gt;Sharath&lt;/p&gt;</description><author>sharathkumarek</author><pubDate>Fri, 22 Mar 2013 14:16:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130322021640P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: DCherubini ** &lt;p&gt;Hi Sarath,&lt;/p&gt;&lt;p&gt;Attached to the work item you can find a sample using a __SMF Player__ in a view injected inside a region.&lt;br&gt;The sample was built over the __Hello World QuickStart__. It has a &amp;quot;MainRegion&amp;quot; in the __Shell__ and a decoupled __SMFModule__ (loaded through a __XAML ModuleCatalog__) that has the view containing the __SMF Player__. This view is injected in the aforementioned region at start up.&lt;/p&gt;&lt;p&gt;I hope this helps,&lt;/p&gt;&lt;p&gt;Damian Cherubini&lt;br&gt;http://blogs.southworks.net/dcherubini &lt;/p&gt;</description><author>DCherubini</author><pubDate>Thu, 21 Mar 2013 17:02:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130321050220P</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: sharathkumarek ** &lt;p&gt;Thanks for replying. &lt;/p&gt;&lt;p&gt;I have all these references added both in my module and shell project. If I use this as a stand alone player then it will play and when used inside prism region, player is loading but its not playing. Could you please provide me some sample prism project that you have tested with?&lt;/p&gt;&lt;p&gt;Thanks!&lt;br&gt;Sharath&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>sharathkumarek</author><pubDate>Thu, 21 Mar 2013 11:18:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130321111819A</guid></item><item><title>Commented Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;Comments: ** Comment from web user: fmartinez ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;We tried to use SMF Player in a module on a Silverlight Application and it works without problems. Nevertheless, we could reproduce your issue when a reference from the following list is missing:&lt;/p&gt;&lt;p&gt;* Microsoft.SilverlightMediaFramework.Core.dll&lt;br&gt;* Microsoft.SilverlightMediaFramework.Plugins.dll&lt;br&gt;* Microsoft.SilverlightMediaFramework.Plugins.SmoothStreaming.dll&lt;br&gt;* Microsoft.SilverlightMediaFramework.Utilities.dll&lt;br&gt;* Microsoft.Web.Media.SmoothStreaming.dll&lt;/p&gt;&lt;p&gt;As a possible solution, check if you have these references added in both your module and your shell project.&lt;/p&gt;&lt;p&gt;Hope this helps,&lt;/p&gt;&lt;p&gt;Federico Martinez &lt;br&gt;http://blogs.southworks.net/fmartinez&lt;/p&gt;</description><author>fmartinez</author><pubDate>Wed, 20 Mar 2013 17:32:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: SMFv2.7 Player not playing with Prism [9967] 20130320053209P</guid></item><item><title>Created Issue: SMFv2.7 Player not playing with Prism [9967]</title><link>http://compositewpf.codeplex.com/workitem/9967</link><description>Hi, I have created a module with SMF player v2.7 as view and used with prism to show in a region. When I build the solution, the player is loading but it is not playing anything in there. Code for the player is as follows where mediasource is static. &lt;br /&gt;&lt;br /&gt;&amp;#60;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;        &amp;#60;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;            &amp;#60;media&amp;#58;PlaylistItem DeliveryMethod&amp;#61;&amp;#34;AdaptiveStreaming&amp;#34; MediaSource&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;video3.smoothhd.com.edgesuite.net&amp;#47;ondemand&amp;#47;Big&amp;#37;20Buck&amp;#37;20Bunny&amp;#37;20Adaptive.ism&amp;#47;Manifest&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer.Playlist&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;smf&amp;#58;SMFPlayer&amp;#62;&lt;br /&gt;&lt;br /&gt;Please anyone help me fix this. Any help would be greatly appreciated.&lt;br /&gt;</description><author>sharathkumarek</author><pubDate>Sun, 17 Mar 2013 09:01:28 GMT</pubDate><guid isPermaLink="false">Created Issue: SMFv2.7 Player not playing with Prism [9967] 20130317090128A</guid></item><item><title>Commented Issue: Unrecognized attribute 'initializeMode'. Note that attribute names are case-sensitive. [9959]</title><link>http://compositewpf.codeplex.com/workitem/9959</link><description>Hi, &lt;br /&gt;&lt;br /&gt; &amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;utf-8&amp;#34; &amp;#63;&amp;#62;&lt;br /&gt; &amp;#60;configuration&amp;#62;&lt;br /&gt; &amp;#60;configSections&amp;#62;&lt;br /&gt;&amp;#60;section name&amp;#61;&amp;#34;modules&amp;#34; type&amp;#61;&amp;#34;Microsoft.Practices.Prism.Modularity.ModulesConfigurationSection, Microsoft.Practices.Prism&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;configSections&amp;#62;&lt;br /&gt; &amp;#60;modules&amp;#62;&lt;br /&gt;&amp;#60;module assemblyFile&amp;#61;&amp;#34;Modules.Din.dll&amp;#34; moduleName&amp;#61;&amp;#34;DinModule&amp;#34; InitializeMode&amp;#61;&amp;#34;OnDemand&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;modules&amp;#62;&lt;br /&gt; &amp;#60;&amp;#47;configuration&amp;#62; &lt;br /&gt;&lt;br /&gt; Prism 4.1 IDE VS2012 Up1 Win8 x64&lt;br /&gt;Comments: ** Comment from web user: AlexJustin ** &lt;p&gt;Hi DCherubini,&lt;/p&gt;&lt;p&gt;Thanks for help me, This bug will be fixed in the future?&lt;/p&gt;</description><author>AlexJustin</author><pubDate>Sat, 16 Mar 2013 06:58:23 GMT</pubDate><guid isPermaLink="false">Commented Issue: Unrecognized attribute 'initializeMode'. Note that attribute names are case-sensitive. [9959] 20130316065823A</guid></item><item><title>Commented Issue: Unrecognized attribute 'initializeMode'. Note that attribute names are case-sensitive. [9959]</title><link>http://compositewpf.codeplex.com/workitem/9959</link><description>Hi, &lt;br /&gt;&lt;br /&gt; &amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;utf-8&amp;#34; &amp;#63;&amp;#62;&lt;br /&gt; &amp;#60;configuration&amp;#62;&lt;br /&gt; &amp;#60;configSections&amp;#62;&lt;br /&gt;&amp;#60;section name&amp;#61;&amp;#34;modules&amp;#34; type&amp;#61;&amp;#34;Microsoft.Practices.Prism.Modularity.ModulesConfigurationSection, Microsoft.Practices.Prism&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;configSections&amp;#62;&lt;br /&gt; &amp;#60;modules&amp;#62;&lt;br /&gt;&amp;#60;module assemblyFile&amp;#61;&amp;#34;Modules.Din.dll&amp;#34; moduleName&amp;#61;&amp;#34;DinModule&amp;#34; InitializeMode&amp;#61;&amp;#34;OnDemand&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;modules&amp;#62;&lt;br /&gt; &amp;#60;&amp;#47;configuration&amp;#62; &lt;br /&gt;&lt;br /&gt; Prism 4.1 IDE VS2012 Up1 Win8 x64&lt;br /&gt;Comments: ** Comment from web user: DCherubini ** &lt;p&gt;Hi Alex,&lt;/p&gt;&lt;p&gt;It could be useful if we could continue tracking this issue in the following work item:&lt;br&gt;- [InitializeMode Is Unrecognized](http://compositewpf.codeplex.com/workitem/3966)&lt;/p&gt;&lt;p&gt;We have just posted a possible workaround for your problem in there.&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Damian Cherubini&lt;br&gt;http://blogs.southworks.net/dcherubini&lt;/p&gt;</description><author>DCherubini</author><pubDate>Fri, 15 Mar 2013 19:28:34 GMT</pubDate><guid isPermaLink="false">Commented Issue: Unrecognized attribute 'initializeMode'. Note that attribute names are case-sensitive. [9959] 20130315072834P</guid></item></channel></rss>