<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Simple MVVM Toolkit for Silverlight, WPF and Windows Phone</title><link>http://simplemvvmtoolkit.codeplex.com/project/feeds/rss</link><description>Simple MVVM Toolkit makes it easier to develop Silverlight, WPF and Windows Phone applications using the Model-View-ViewModel design pattern.</description><item><title>Closed Issue: Redundant type parameter in DelegateCommand&lt;T&gt;.ConvertParameter? [278]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/278</link><description>Dear Tony,&lt;br /&gt;&amp;#160;&lt;br /&gt;first of all, thanks for providing this excellent and simple MVVM library.&lt;br /&gt;&amp;#160;&lt;br /&gt;I needed to re-build the software from the sources, since I require a strong name on the assembly. When building the Silverlight solution, the assembly is built, but I get the following warning message&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        Type parameter &amp;#39;T&amp;#39; has the same name as the type parameter from outer type &amp;#39;SimpleMvvmToolkit.DelegateCommand&amp;#60;T&amp;#62;&amp;#39;&lt;br /&gt;&amp;#160;&lt;br /&gt;If I look at the ConvertParameter method to which the warning message is attributed, it has the following signature&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        private T ConvertParameter&amp;#60;T&amp;#62;&amp;#40;object parameter&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;Correct me if I am wrong, but isn&amp;#39;t the &amp;#60;T&amp;#62; redundant&amp;#63; The code would be clearer if the signature would read&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        private T ConvertParameter&amp;#40;object parameter&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;A very minor issue, but maybe worth fixing anyway&amp;#63;&lt;br /&gt;&amp;#160;&lt;br /&gt;Best regards,&lt;br /&gt;Anders&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:30 GMT</pubDate><guid isPermaLink="false">Closed Issue: Redundant type parameter in DelegateCommand&lt;T&gt;.ConvertParameter? [278] 20130516112530A</guid></item><item><title>Closed Issue: Type conversion bug in DelegateCommand&lt;T&gt;.ConvertParameter&lt;TOutput&gt; [324]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/324</link><description>Hi Tony,&lt;br /&gt;&amp;#160;&lt;br /&gt;this line in method DelegateCommand&amp;#60;T&amp;#62;.ConvertParameter&amp;#60;TOutput&amp;#62;&amp;#40;&amp;#41;...&lt;br /&gt;&amp;#160;&lt;br /&gt;  if &amp;#40;parameter.GetType&amp;#40;&amp;#41; &amp;#61;&amp;#61; typeof&amp;#40;TOutput&amp;#41;&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;...should be...&lt;br /&gt;&amp;#160;&lt;br /&gt;  if &amp;#40;parameter is TOutput&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;Otherwise an InvalidCastException is erroneously thrown when the actual CommandParameter is of a type &amp;#42;derived&amp;#42; from TOutput.&lt;br /&gt;&amp;#160;&lt;br /&gt;Regards,&lt;br /&gt;Chris&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:29 GMT</pubDate><guid isPermaLink="false">Closed Issue: Type conversion bug in DelegateCommand&lt;T&gt;.ConvertParameter&lt;TOutput&gt; [324] 20130516112529A</guid></item><item><title>Closed Issue: WP7.1 EventToCommand cannot be added to a collection or dictionary of type 'TriggerActionCollection' [342]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/342</link><description>On WP7.1 Beta2 and Wp7.1 Beta2 Refresh&amp;#40;with final API&amp;#41; i get the following error&amp;#58;&lt;br /&gt;A value of type &amp;#39;EventToCommand&amp;#39; cannot be added to a collection or dictionary of type &amp;#39;TriggerActionCollection&amp;#39;.&lt;br /&gt;&amp;#160;&lt;br /&gt;Rebuilding the wp7 source &amp;#40;with or without upgrading the project to wp7.1 &amp;#41; is not helping.&lt;br /&gt;&amp;#160;&lt;br /&gt;On the following code the mvvm&amp;#58;EventToCommand throws the error , the ei&amp;#58;CallMethodAction part is working. In other parts of my project i nedd to pass the event args to the command, thats why i need this to work. Please help.&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#60;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;        &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;Loaded&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;mvvm&amp;#58;EventToCommand&lt;br /&gt;                        Command&amp;#61;&amp;#34;&amp;#123;Binding PageLoadedCommand&amp;#125;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#33;--&amp;#60;ei&amp;#58;CallMethodAction&lt;br /&gt;                            TargetObject&amp;#61;&amp;#34;&amp;#123;Binding&amp;#125;&amp;#34;&lt;br /&gt;                            MethodName&amp;#61;&amp;#34;PageLoaded&amp;#34;&amp;#47;&amp;#62;--&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;        &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;Unloaded&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;ei&amp;#58;CallMethodAction &lt;br /&gt;                            TargetObject&amp;#61;&amp;#34;&amp;#123;Binding&amp;#125;&amp;#34;&lt;br /&gt;                            MethodName&amp;#61;&amp;#34;PageUnloaded&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:29 GMT</pubDate><guid isPermaLink="false">Closed Issue: WP7.1 EventToCommand cannot be added to a collection or dictionary of type 'TriggerActionCollection' [342] 20130516112529A</guid></item><item><title>Closed Issue: WCF RIA Services Project Download URL Not Found [466]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/466</link><description>Hi Tony,&lt;br /&gt;&amp;#160;&lt;br /&gt;I&amp;#39;d tried to download the WCF RIA Services project but the page cannot be found&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;tonysneed.com&amp;#47;simplemvvm&amp;#47;SimpleMvvmRiaServices.zip&lt;br /&gt;&amp;#160;&lt;br /&gt;Frankie&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:28 GMT</pubDate><guid isPermaLink="false">Closed Issue: WCF RIA Services Project Download URL Not Found [466] 20130516112528A</guid></item><item><title>Closed Issue: Unable to create SimpleMVVMRiaServices project for Visual Studio 2010 SP1 [475]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/475</link><description>I have Visual Studio 2010 SP1 installed, thereby many of the original prerequisites for the SimpleMVVM Toolkit irrelevant.&lt;br /&gt;&amp;#160;&lt;br /&gt;I was able to install all other required prerequisites, however, and thereby able to view the Visual Studio project templates.&lt;br /&gt;&amp;#160;&lt;br /&gt;But, when I attempt to create my SimpleMVVMRiaServices project in Visual Studio by selecting the installed Project Template, I get the following error message&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#34;A problem was encountered creating the sub project&amp;#58; SimpleMvvmRiaServices.Test.  The imported project Microsoft.Silverlight.Toolkit.Build.targets was not found.  Confirm that the path in the &amp;#60;Import&amp;#62; declaration is correct, and that the file exists on disk.&amp;#34;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:28 GMT</pubDate><guid isPermaLink="false">Closed Issue: Unable to create SimpleMVVMRiaServices project for Visual Studio 2010 SP1 [475] 20130516112528A</guid></item><item><title>Closed Issue: ViewModelDetailBase.IsDirty not reliable [476]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/476</link><description>Synopsis&amp;#58; ViewModelDetailBase.IsDirty might return false even if the Model has been altered due to hash collision in ModelExtensions.AreSame&amp;#40;&amp;#41; resp. ModelExtensions.GetObjectHashCode&amp;#40;&amp;#41;. ModelExtensions.AreSame violates it&amp;#39;s contract &amp;#34;True if object properties are the same&amp;#34;.&lt;br /&gt;see &amp;#91;discussion&amp;#58;287271&amp;#93;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: ViewModelDetailBase.IsDirty not reliable [476] 20130516112527A</guid></item><item><title>Closed Issue: A first chance exception of type 'System.NullReferenceException' occurred in SimpleMvvmToolkit-WP7.dll [511]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/511</link><description>I&amp;#39;m creating an application with the Windows Phone 7.1 SDK. I&amp;#39;m using version 3.0 of SimpleMVVM toolkit.&lt;br /&gt;&amp;#160;&lt;br /&gt;I&amp;#39;m calling NotifyPropertyChanged in the setter of an observable collection in one of my viewmodels. It is a collection of one of my model classes. The first time the page is displayed everything goes well. But when I navigate back to this page from another page I get a NullReferenceException when the collection changes.&lt;br /&gt;&amp;#160;&lt;br /&gt;I debugged some more and I found out that the exception occurs on line 57 of GenericDelegateCommand &amp;#58; &lt;br /&gt;string exceptionMessage &amp;#61; string.Format&amp;#40;&amp;#34;Cannot convert &amp;#123;0&amp;#125; to &amp;#123;1&amp;#125;&amp;#34;, parameter.GetType&amp;#40;&amp;#41;, typeof&amp;#40;T&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;Apparently parameter is null at this point and that is why the exception occurs. There is a check for null on line 81 so in some cases parameter can be null&amp;#63; What could be the reason why it is null&amp;#63; I don&amp;#39;t see how I can do something wrong in my code by just calling NotifyPropertyChanged in the setter.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: A first chance exception of type 'System.NullReferenceException' occurred in SimpleMvvmToolkit-WP7.dll [511] 20130516112527A</guid></item><item><title>Closed Issue: MVVM template does not show in installed templates [604]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/604</link><description>I believe I have the prerequisites for installing the toolkit.  I am only doing WPF projects, however.  I do not see the mvvm template when I try to create a new project.  Am I missing something&amp;#63;&lt;br /&gt;Thanks&lt;br /&gt;Mark&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: MVVM template does not show in installed templates [604] 20130516112527A</guid></item><item><title>Closed Issue: UIDispatcher only executes actions asynchronously. [629]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/629</link><description>I have need of executing an action on the UI thread synchronously.  I would like to use the UIDispatcher for simplicity, but currently the only option is the Execute&amp;#40;&amp;#41; method that operates asynchronously.  Please add another method to UIDispatcher to execute an action synchronously.  An example is&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        public static void ExecuteSynchronously&amp;#40;Action action&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            if &amp;#40;dispatcher.CheckAccess&amp;#40;&amp;#41;&amp;#41; action&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            else dispatcher.Invoke&amp;#40;action&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;Thank you&amp;#33;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: UIDispatcher only executes actions asynchronously. [629] 20130516112526A</guid></item><item><title>Closed Issue: IsInDesignMode doesn't work into WinForms [651]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/651</link><description>The IsInDesignMode-Property doesn&amp;#39;t work if you create a Control in WPF and use it in a WinForms-Application.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: IsInDesignMode doesn't work into WinForms [651] 20130516112526A</guid></item><item><title>Closed Issue: Issue with the event bus notification message [712]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/712</link><description>I have a viewmodel through which I am sending a message to the event bus. I am using something like&lt;br /&gt;SendMessage&amp;#40;MessageTokens.ExtractionRunning, new NotificationEventArgs&amp;#60;bool&amp;#62;&amp;#40;null, this.isBusy&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;There are two separate viewmodel who have registered to receive the message. When the message is sent the first time both the viewmodels receive the message correctly. However, when the message is sent the second time, only one of the two viewmodels receive the message and that too twice.&lt;br /&gt;&amp;#160;&lt;br /&gt;The code used to register to receive the messages is &lt;br /&gt;RegisterToReceiveMessages&amp;#60;bool&amp;#62;&amp;#40;MessageTokens.ExtractionRunning, OnFileExtractionRunning&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;The above appears to be a bug to me&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: Issue with the event bus notification message [712] 20130516112526A</guid></item><item><title>Closed Issue: Sign assemblies with a strong name ... [725]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/725</link><description>... otherwise it is not possible to use the toolkit from a signed exe.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: Sign assemblies with a strong name ... [725] 20130516112525A</guid></item><item><title>Closed Issue: Issue with GenericDelegateCommand.ConvertParameter [753]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/753</link><description>I have the following XAML associated with a command &amp;#40;associated with a ListBox&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;                                    &amp;#60;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;                                        &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;SelectionChanged&amp;#34;&amp;#62;&lt;br /&gt;                                            &amp;#60;i&amp;#58;InvokeCommandAction Command&amp;#61;&amp;#34;&amp;#123;Binding AddItem&amp;#125;&amp;#34;&lt;br /&gt;                                                                   CommandParameter&amp;#61;&amp;#34;&amp;#123;Binding SelectedItem, ElementName&amp;#61;items&amp;#125;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;                                        &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;                                    &amp;#60;&amp;#47;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;This when clearing the ListBox selected item the command is fired with a parameter of null. This is turn causes an exception in GenericDelegateCommand.ConvertParameter at the following line&lt;br /&gt;&amp;#160;&lt;br /&gt;                string exceptionMessage &amp;#61; string.Format&amp;#40;&amp;#34;Cannot convert &amp;#123;0&amp;#125; to &amp;#123;1&amp;#125;&amp;#34;,&lt;br /&gt;                    parameter.GetType&amp;#40;&amp;#41;, typeof&amp;#40;T&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;I think the correct code should have the following at the start of the method&lt;br /&gt;&amp;#160;&lt;br /&gt;if &amp;#40; parameter &amp;#61;&amp;#61; null &amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;   return default&amp;#40;T&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;What do you think&amp;#63;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: Issue with GenericDelegateCommand.ConvertParameter [753] 20130516112525A</guid></item><item><title>Closed Issue: DataContract on ModelBase Needs IsReference = True [1143]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1143</link><description>The DataContract attribute on ModelBase should have the IsReference property set to True.  This will prevent cycles in derived classes when they are serialized.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: DataContract on ModelBase Needs IsReference = True [1143] 20130516112525A</guid></item><item><title>Closed Issue: Toolkit v4.0.0.0 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1213]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1213</link><description>Hi Tony,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m having problem in installing the latest toolkit version. I logged in to the PC as administrator. Please see the attach error message. I tried manually delete the specified dll file from the folder &amp;#40;which should prove that I have the access to the folder&amp;#63;&amp;#63;&amp;#41; and rerun the installer, but the same error message showed up again.&lt;br /&gt;&lt;br /&gt;I also tried run the installer using the &amp;#34;Run as administrator&amp;#34; option but it didn&amp;#39;t help.&lt;br /&gt;</description><author>franczc</author><pubDate>Thu, 16 May 2013 11:25:24 GMT</pubDate><guid isPermaLink="false">Closed Issue: Toolkit v4.0.0.0 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1213] 20130516112524A</guid></item><item><title>Closed Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1422</link><description>Failed both on Win 2003 R2 SP1 and Windows 7&lt;br /&gt;</description><author>liangyanhe</author><pubDate>Thu, 16 May 2013 11:25:23 GMT</pubDate><guid isPermaLink="false">Closed Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422] 20130516112523A</guid></item><item><title>New Post: Resharper 7 Support?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/442114</link><description>&lt;div style="line-height: normal;"&gt;I'm a huge ReSharper fan, and this sounds like a great idea. I'll add this to the feature list for the next rev.&lt;br /&gt;
&lt;/div&gt;</description><author>tonysneed</author><pubDate>Thu, 02 May 2013 14:14:53 GMT</pubDate><guid isPermaLink="false">New Post: Resharper 7 Support? 20130502021453P</guid></item><item><title>New Post: Resharper 7 Support?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/442114</link><description>&lt;div style="line-height: normal;"&gt;Hey there!&lt;br /&gt;
&lt;br /&gt;
ReSharper7 offers a great way to implement properties with the INotifyChanged interface, as seen here: &lt;a href="http://blogs.jetbrains.com/dotnet/2012/07/inotifypropertychanged-support-in-resharper-7/#comments" rel="nofollow"&gt;http://blogs.jetbrains.com/dotnet/2012/07/inotifypropertychanged-support-in-resharper-7/#comments&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I know that this toolkit offers a code snipper for that, but If I have a class (or multiple classes with many properties it soon becomes tedious work to type mvvmprop, hit tab and then change the property to my liking.&lt;br /&gt;
&lt;br /&gt;
With Resharper7 and Caliburn.Micro I could write all my fields, select them, hit Alt+Ins and let ReSharper do the rest, much more comfortable. &lt;br /&gt;
&lt;br /&gt;
Sadly Resharper does not offer this functionality for this toolkit. However I am understanding that the NotifyPropertyChanged method only has to be decorated with the [NotifyPropertyChangedInvocator] attribute (as described in the article) and the support would be there.&lt;br /&gt;
&lt;br /&gt;
This is a feature I'd gladly see in this toolkit. Is this possible?&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Tue, 30 Apr 2013 17:01:39 GMT</pubDate><guid isPermaLink="false">New Post: Resharper 7 Support? 20130430050139P</guid></item><item><title>New Post: passing multiple selected items from grid view to viewmodel</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440919</link><description>&lt;div style="line-height: normal;"&gt;Tony,&lt;br /&gt;
&lt;br /&gt;
Could you (or anyone else for that matter) provide some insight on the best way to pass multiple selected items from a WPF grid view into a view model. I have tired using Interaction.Behaviors but with no luck. I can't seem to get any selected event to trigger within the VM.&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;/div&gt;</description><author>rlcrews</author><pubDate>Fri, 19 Apr 2013 14:30:54 GMT</pubDate><guid isPermaLink="false">New Post: passing multiple selected items from grid view to viewmodel 20130419023054P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
Sorry my bad. We just need to make sure that the String token match. When Registering to receive, just make sure that the token is &amp;quot;Character&amp;quot; instead of &amp;quot;Char&amp;quot;. It should work.&lt;br /&gt;
&lt;br /&gt;
Anyway. glad to know that you worked it out.&lt;br /&gt;
&lt;/div&gt;</description><author>shakyad</author><pubDate>Tue, 16 Apr 2013 02:35:26 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130416023526A</guid></item></channel></rss>