<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>John's Workshop - Latest Comments</title><link>http://johnsworkshop.disqus.com/</link><description></description><atom:link href="https://johnsworkshop.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Thu, 02 Feb 2017 10:46:23 -0000</lastBuildDate><item><title>Re: Automatically upgrading user settings after an application version change</title><link>http://blog.johnsworkshop.net/automatically-upgrading-user-settings-after-an-application-version-change/#comment-3134032857</link><description>&lt;p&gt;Awesome post. Thank you!!!!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric</dc:creator><pubDate>Thu, 02 Feb 2017 10:46:23 -0000</pubDate></item><item><title>Re: Programmatically detect your Team Foundation Server version</title><link>http://blog.johnsworkshop.net/programmatically-detect-your-team-foundation-server-version/#comment-2860700565</link><description>&lt;p&gt;That's much better way:&lt;br&gt;&lt;a href="https://social.msdn.microsoft.com/Forums/en-US/ea6ad717-bf71-41ef-9a0b-043ec1cf8d14/tfs-api-retrieving-server-version?forum=tfsgeneral" rel="nofollow noopener" target="_blank" title="https://social.msdn.microsoft.com/Forums/en-US/ea6ad717-bf71-41ef-9a0b-043ec1cf8d14/tfs-api-retrieving-server-version?forum=tfsgeneral"&gt;https://social.msdn.microso...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan Abramek</dc:creator><pubDate>Fri, 26 Aug 2016 09:47:06 -0000</pubDate></item><item><title>Re: Automatically upgrading user settings after an application version change</title><link>http://blog.johnsworkshop.net/automatically-upgrading-user-settings-after-an-application-version-change/#comment-2820968607</link><description>&lt;p&gt;I converted your solution to an extension method. It works great.&lt;/p&gt;&lt;p&gt;    internal static class ExtensionMethods&lt;br&gt;    {&lt;br&gt;        internal static void Upgrade(this Settings settings, string upgradeFlag)&lt;br&gt;        {&lt;br&gt;            try&lt;br&gt;            {&lt;br&gt;                if ((bool)settings[upgradeFlag] == true)&lt;br&gt;                {&lt;br&gt;                    settings.Upgrade();&lt;br&gt;                    settings[upgradeFlag] = false;&lt;br&gt;                    settings.Save();&lt;br&gt;                }&lt;br&gt;            }&lt;br&gt;            catch (SettingsPropertyNotFoundException ex)&lt;br&gt;            {&lt;br&gt;                throw ex;&lt;br&gt;            }&lt;br&gt;        }&lt;br&gt;    }&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dave</dc:creator><pubDate>Thu, 04 Aug 2016 15:20:10 -0000</pubDate></item><item><title>Re: Consuming Twitter data using SharePoint Designer, Part 1</title><link>http://blog.johnsworkshop.net/consuming-twitter-data-using-sharepoint-designer-part-1/#comment-2716156098</link><description>&lt;p&gt;I tried the same thing , but getting an error ....server returned non specific error while trying to get data from data source&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nik</dc:creator><pubDate>Tue, 07 Jun 2016 03:10:16 -0000</pubDate></item><item><title>Re: TFS11 API: Reading the Team Configuration &amp;#8211; Iterations and Areas</title><link>http://blog.johnsworkshop.net/tfs11-api-reading-the-team-configuration-iterations-and-areas/#comment-2346422533</link><description>&lt;p&gt;As of VS 2012, there's a GetTeamConfigurations() method on this service, and it does not appear to be restricted to teams who claim the authenticated user calling the method as a member.&lt;/p&gt;&lt;p&gt;&lt;a href="https://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.processconfiguration.client.teamsettingsconfigurationservice.getteamconfigurations(v=vs.110).aspx" rel="nofollow noopener" target="_blank" title="https://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.processconfiguration.client.teamsettingsconfigurationservice.getteamconfigurations(v=vs.110).aspx"&gt;https://msdn.microsoft.com/...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;That did the trick for me. I got each team's Guid from team.Identity.TeamFoundationId, put them in a List&amp;lt;guid&amp;gt; and passed that in to GetTeamConfigurations(). Hope this helps someone.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jay Carlton</dc:creator><pubDate>Fri, 06 Nov 2015 15:33:07 -0000</pubDate></item><item><title>Re: Understanding how the Team WebAccess burndown chart works, Part 1</title><link>http://blog.johnsworkshop.net/understanding-how-the-team-webaccess-burndown-chart-works-part-1/#comment-2106220987</link><description>&lt;p&gt;Hi , I am not able to retrieve values from getCommonConfiguration method . I am getting null for all the fields . please help !&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asuthosh Elangovan</dc:creator><pubDate>Mon, 29 Jun 2015 06:06:35 -0000</pubDate></item><item><title>Re: TFS11 API: Query Teams and Team Members</title><link>http://blog.johnsworkshop.net/tfs11-api-query-teams-and-team-members/#comment-2024847855</link><description>&lt;p&gt;On how to get/set team properties. Here is some sample code.&lt;/p&gt;&lt;p&gt;            //Set custom property&lt;/p&gt;&lt;p&gt;string customPropertyName&lt;br&gt;= @"customtool\jewel";&lt;/p&gt;&lt;p&gt;string&lt;br&gt;customPropetyFilter = "customtool*";&lt;/p&gt;&lt;p&gt;string&lt;br&gt;serverName = @"http://localhost:8080/tfs/DefaultCollection";&lt;/p&gt;&lt;p&gt;TfsTeamProjectCollection tfs = new TfsTeamProjectCollection(new Uri(serverName));&lt;/p&gt;&lt;p&gt;var css4 =&lt;br&gt;tfs.GetService&amp;lt;icommonstructureservice4&amp;gt;();&lt;/p&gt;&lt;p&gt;var projectInfo =&lt;br&gt;css4.GetProjectFromName("ngtest");&lt;/p&gt;&lt;p&gt;var teamService =&lt;br&gt;tfs.GetService&amp;lt;tfsteamservice&amp;gt;();&lt;/p&gt;&lt;p&gt;var teams =&lt;br&gt;teamService.QueryTeams(projectInfo.Uri);&lt;/p&gt;&lt;p&gt;var team =&lt;br&gt;teams.FirstOrDefault(t =&amp;gt; string.Equals(t.Name, "ngtest&lt;br&gt;Team", StringComparison.InvariantCultureIgnoreCase));&lt;/p&gt;&lt;p&gt;team.SetProperty(customPropertyName, "pi");&lt;/p&gt;&lt;p&gt;teamService.UpdateTeam(team);&lt;/p&gt;&lt;p&gt;            //Read the property back&lt;/p&gt;&lt;p&gt;TfsTeamProjectCollection tfs1 = new TfsTeamProjectCollection(new Uri(serverName));&lt;/p&gt;&lt;p&gt;var css41 =&lt;br&gt;tfs1.GetService&amp;lt;icommonstructureservice4&amp;gt;();&lt;/p&gt;&lt;p&gt;var projectInfo1 =&lt;br&gt;css41.GetProjectFromName("ngtest");&lt;/p&gt;&lt;p&gt;var teamService1 =&lt;br&gt;tfs1.GetService&amp;lt;tfsteamservice&amp;gt;();&lt;/p&gt;&lt;p&gt;object value;&lt;/p&gt;&lt;p&gt;List&amp;lt;string&amp;gt; f = new List&amp;lt;string&amp;gt;();&lt;/p&gt;&lt;p&gt;f.Add(customPropetyFilter);&lt;/p&gt;&lt;p&gt;var firstTeam =&lt;br&gt;teamService1.ReadTeam(projectInfo1.Uri,"ngtest&lt;br&gt;Team", f);&lt;/p&gt;&lt;p&gt;firstTeam.TryGetProperty(customPropertyName, out value);&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Navneet Gupta (MSFT)</dc:creator><pubDate>Thu, 14 May 2015 13:20:43 -0000</pubDate></item><item><title>Re: TFS11 API: Managing the Team Iteration Schedule</title><link>http://blog.johnsworkshop.net/tfs11-api-managing-the-team-iteration-schedule/#comment-1993841260</link><description>&lt;p&gt;I know this is a late reply but you make sure you use 4.5 version of .net framework to find this assembly while adding a reference. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shoban</dc:creator><pubDate>Wed, 29 Apr 2015 10:06:56 -0000</pubDate></item><item><title>Re: Understanding how the Team WebAccess burndown chart works, Part 1</title><link>http://blog.johnsworkshop.net/understanding-how-the-team-webaccess-burndown-chart-works-part-1/#comment-1915865119</link><description>&lt;p&gt;Hi, I want to ask how much contributes to the burndown chart the tasks which have stata "In Progress" AND remaining work set to 0? E.g. if I have on the first day 100 tasks with all of them "In progress" and remaining work on all of them is equal to 0, will the start point for the actual trend be on 0 as well?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">azimut</dc:creator><pubDate>Thu, 19 Mar 2015 08:31:54 -0000</pubDate></item><item><title>Re: TFS11 API: Query Teams and Team Members</title><link>http://blog.johnsworkshop.net/tfs11-api-query-teams-and-team-members/#comment-1837214426</link><description>&lt;p&gt;Thanks for the post. I'm using the API to create a Scrum dashboard of active iterations and stats.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chif Dagrif</dc:creator><pubDate>Thu, 05 Feb 2015 16:03:51 -0000</pubDate></item><item><title>Re: Understanding how the Team WebAccess burndown chart works, Part 3</title><link>http://blog.johnsworkshop.net/understanding-how-the-team-webaccess-burndown-chart-works-part-3/#comment-1784419554</link><description>&lt;p&gt;Found very informative. Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hemant</dc:creator><pubDate>Sat, 10 Jan 2015 09:46:38 -0000</pubDate></item><item><title>Re: Moving lists with lookup columns inside your site collection</title><link>http://blog.johnsworkshop.net/moving-lists-with-lookup-columns-inside-your-site-collection/#comment-1768663753</link><description>&lt;p&gt;Great Post.  I was having a problem with them repopulating with the data.  I checked these ID's and they are correct.  The weird problem I have now is some of the Lookups came through but not all of them.  Any Ideas?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom</dc:creator><pubDate>Fri, 02 Jan 2015 12:04:02 -0000</pubDate></item><item><title>Re: TFS11 API: Managing the Team Iteration Schedule</title><link>http://blog.johnsworkshop.net/tfs11-api-managing-the-team-iteration-schedule/#comment-1748596943</link><description>&lt;p&gt;Hallo John,&lt;br&gt;Nice post! It helped me a lot.&lt;/p&gt;&lt;p&gt;I have one question: Where did you find your TFS DLLs? &lt;br&gt;I copied mine from your project "ProcessConfiguration". I also found a Nuget package called TFS.Api but this does not include "Microsoft.TeamFoundation.ProjectManagment", which is necessary for the example above and all DLLs are version 11.*something instead of 12.&lt;/p&gt;&lt;p&gt;I hope to hear from you soon!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ellen</dc:creator><pubDate>Thu, 18 Dec 2014 10:11:26 -0000</pubDate></item><item><title>Re: TFS11 API: Reading the Team Configuration &amp;#8211; Iterations and Areas</title><link>http://blog.johnsworkshop.net/tfs11-api-reading-the-team-configuration-iterations-and-areas/#comment-1590920059</link><description>&lt;p&gt;I know I'm resurrecting an old post here, but I've wasted quite a bit of time trying to figure out how to assign permissions to the root Area node of a team project.&lt;/p&gt;&lt;p&gt;I have successfully permissioned Version Control, Build, Project, Work Item Query Folder, and Shared Queries.  The last bit will be Areas.  Getting the tokens proved to be a bit complicated early on, but I was able to work through that.  My current problem is that I don't see any AccessControlList or AccessControlEntry methods associated with Area Nodes.  I'm guessing I'm missing something?&lt;/p&gt;&lt;p&gt;If you have any ideas or can help in any way, I'd appreciate it!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">AriZoNaiCe</dc:creator><pubDate>Mon, 15 Sep 2014 23:22:39 -0000</pubDate></item><item><title>Re: Understanding how the Team WebAccess burndown chart works, Part 1</title><link>http://blog.johnsworkshop.net/understanding-how-the-team-webaccess-burndown-chart-works-part-1/#comment-1573800480</link><description>&lt;p&gt;Hi i can't see where you use the query retrieved above here, i looked to the next page but i can't find it there also. Could you please let me know where do you use the query created here above. thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">reza</dc:creator><pubDate>Thu, 04 Sep 2014 10:49:29 -0000</pubDate></item><item><title>Re: TFS11 API: Query Teams and Team Members</title><link>http://blog.johnsworkshop.net/tfs11-api-query-teams-and-team-members/#comment-1518671236</link><description>&lt;p&gt;Nice post there ! I wonder if there is a way to add members to teams using the API in TFS 2013 ?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Toufik HADJAZI</dc:creator><pubDate>Fri, 01 Aug 2014 05:46:09 -0000</pubDate></item><item><title>Re: TFS11 API: Managing the Team Iteration Schedule</title><link>http://blog.johnsworkshop.net/tfs11-api-managing-the-team-iteration-schedule/#comment-1506515426</link><description>&lt;p&gt;The ScheduleInfo i just a custom data transfer object:&lt;/p&gt;&lt;p&gt;public class ScheduleInfo&lt;br&gt;{&lt;br&gt;    public string Path { get; set; }&lt;br&gt;    public DateTime StartDate { get; set; }&lt;br&gt;    public DateTime EndDate { get; set; }&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ivan Popek</dc:creator><pubDate>Sun, 27 Jul 2014 09:23:47 -0000</pubDate></item><item><title>Re: TFS11 API: Managing the Team Iteration Schedule</title><link>http://blog.johnsworkshop.net/tfs11-api-managing-the-team-iteration-schedule/#comment-1502982929</link><description>&lt;p&gt;i would like to know what are the properties of the &amp;lt;scheduleinfo&amp;gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rza</dc:creator><pubDate>Fri, 25 Jul 2014 06:13:49 -0000</pubDate></item><item><title>Re: Creating a SharePoint Theme using a PowerPoint Template</title><link>http://blog.johnsworkshop.net/creating-a-sharepoint-theme-using-a-powerpoint-template/#comment-1393251108</link><description>&lt;p&gt;Hi Regina! Unfortunately, the theme engine in SharePoint 2013 is different than in 2010 and it no longer supports Microsoft Office (*.thmx) themes.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ivan Popek</dc:creator><pubDate>Mon, 19 May 2014 10:14:50 -0000</pubDate></item><item><title>Re: Creating a SharePoint Theme using a PowerPoint Template</title><link>http://blog.johnsworkshop.net/creating-a-sharepoint-theme-using-a-powerpoint-template/#comment-1386171948</link><description>&lt;p&gt;Can you guide on how to change theme for SharePoint 2013? Thanks for this tutorial. I have just signed up for a free SharePoint site with &lt;a href="http://www.cloudappsportal.com" rel="nofollow noopener" target="_blank" title="http://www.cloudappsportal.com"&gt;http://www.cloudappsportal.com&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Regina Ritter</dc:creator><pubDate>Wed, 14 May 2014 20:52:38 -0000</pubDate></item><item><title>Re: Automatically upgrading user settings after an application version change</title><link>http://blog.johnsworkshop.net/automatically-upgrading-user-settings-after-an-application-version-change/#comment-1344631755</link><description>&lt;p&gt;Thanks for the clear explanation and solution - resolved the settings "reset issue" I was having. Found references to this on StackOverflow but there was no background - which is useful to understand why it happens. Neat solution and quick to implement.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">James Tweedie</dc:creator><pubDate>Fri, 18 Apr 2014 08:54:33 -0000</pubDate></item><item><title>Re: Moving lists with lookup columns inside your site collection</title><link>http://blog.johnsworkshop.net/moving-lists-with-lookup-columns-inside-your-site-collection/#comment-1301170562</link><description>&lt;p&gt;It was great Post.informative also.&lt;a href="http://staygreenacademy.com" rel="nofollow noopener" target="_blank" title="http://staygreenacademy.com"&gt; &lt;br&gt;&lt;br&gt;Rozeena&lt;br&gt;&lt;br&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://staygreenacademy.com/msbi-training-in-hyderabad/" rel="nofollow noopener" target="_blank" title="http://staygreenacademy.com/msbi-training-in-hyderabad/"&gt;&lt;br&gt;&lt;br&gt;rozeena&lt;br&gt;&lt;br&gt;&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">STAYGREEN ACADEMY</dc:creator><pubDate>Tue, 25 Mar 2014 02:27:02 -0000</pubDate></item><item><title>Re: Understanding how the Team WebAccess burndown chart works, Part 3</title><link>http://blog.johnsworkshop.net/understanding-how-the-team-webaccess-burndown-chart-works-part-3/#comment-1261899510</link><description>&lt;p&gt;Hi,&lt;br&gt;Is there way to get Burn-up report similar to Burn-down reports.&lt;br&gt;Regards,&lt;br&gt;Raj&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Raj</dc:creator><pubDate>Wed, 26 Feb 2014 15:34:11 -0000</pubDate></item><item><title>Re: TFS11 API: Customizing the Process Configuration</title><link>http://blog.johnsworkshop.net/tfs11-api-customizing-the-process-configuration/#comment-1219627037</link><description>&lt;p&gt;The "AgileProjectConfiguration" in the AgileConfiguration.xml (same folder as CommonConfiguration.xml in the ProcessTemplate) governs the fields that appear on UI for ProductBacklog, AddPanel, and IterationBacklog.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ziby</dc:creator><pubDate>Mon, 27 Jan 2014 21:30:30 -0000</pubDate></item><item><title>Re: Understanding how the Team WebAccess burndown chart works, Part 2</title><link>http://blog.johnsworkshop.net/understanding-how-the-team-webaccess-burndown-chart-works-part-2/#comment-1171315767</link><description>&lt;p&gt;I am getting exception while parsing query at line:-&lt;br&gt;  IEnumerable&amp;lt;workitem&amp;gt; items = wiStore.Query(fullQuery).OfType&amp;lt;workitem&amp;gt;().Where(wi =&amp;gt; wi.Fields.Contains(remainingWorkField));&lt;/p&gt;&lt;p&gt;Exception detail:-&lt;br&gt;Expecting left bracket. The error is caused by «'FabrikamFiber'»&lt;/p&gt;&lt;p&gt;StackTrace:-&lt;br&gt;at Microsoft.TeamFoundation.WorkItemTracking.Client.Query.Initialize(WorkItemStore store, String wiql, IDictionary context, Int32[] ids, Int32[] revs, Boolean dayPrecision)&lt;br&gt;   at Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore.Query(String wiql, IDictionary context)&lt;br&gt;   at Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore.Query(String wiql)&lt;br&gt;   at MyTfsStoryBoard.Form1.button1_Click(Object sender, EventArgs e) in c:\downloads\MyTfsStoryBoard\MyTfsStoryBoard\MyTfsStoryBoard\Form1.cs:line 205&lt;br&gt;   at System.Windows.Forms.Control.OnClick(EventArgs e)&lt;br&gt;   at System.Windows.Forms.Button.OnClick(EventArgs e)&lt;br&gt;   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)&lt;br&gt;   at System.Windows.Forms.Control.WmMouseUp(Message&amp;amp; m, MouseButtons button, Int32 clicks)&lt;br&gt;   at System.Windows.Forms.Control.WndProc(Message&amp;amp; m)&lt;br&gt;   at System.Windows.Forms.ButtonBase.WndProc(Message&amp;amp; m)&lt;br&gt;   at System.Windows.Forms.Button.WndProc(Message&amp;amp; m)&lt;br&gt;   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp;amp; m)&lt;br&gt;   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp;amp; m)&lt;br&gt;   at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)&lt;br&gt;   at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&amp;amp; msg)&lt;br&gt;   at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)&lt;br&gt;   at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)&lt;br&gt;   at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)&lt;br&gt;   at System.Windows.Forms.Application.Run(Form mainForm)&lt;br&gt;   at MyTfsStoryBoard.Program.Main() in c:\downloads\MyTfsStoryBoard\MyTfsStoryBoard\MyTfsStoryBoard\Program.cs:line 18&lt;br&gt;   at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)&lt;br&gt;   at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)&lt;br&gt;   at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()&lt;br&gt;   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)&lt;br&gt;   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&lt;br&gt;   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&lt;br&gt;   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)&lt;br&gt;   at System.Threading.ThreadHelper.ThreadStart()&lt;/p&gt;&lt;p&gt;Can anyone help?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rohini Singh</dc:creator><pubDate>Fri, 20 Dec 2013 05:18:59 -0000</pubDate></item></channel></rss>