<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Problems with parallel coroutine</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Problems with parallel coroutine</description>
  <pubDate>Wed, 15 Apr 2026 06:42:27 -700</pubDate>
  <lastBuildDate>Wed, 06 Jun 2012 22:11:09 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=3483</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Problems with parallel coroutine : Thanks for the reply. That&amp;#039;ll...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3483&amp;PID=13778#13778</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1385" rel="nofollow">paul.gilbert</a><br /><strong>Subject:</strong> 3483<br /><strong>Posted:</strong> 06-Jun-2012 at 10:11pm<br /><br />Thanks for the reply. That'll at least give me some things to look into.]]>
   </description>
   <pubDate>Wed, 06 Jun 2012 22:11:09 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3483&amp;PID=13778#13778</guid>
  </item> 
  <item>
   <title>Problems with parallel coroutine :   Hi Paul,The article at htt...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3483&amp;PID=13770#13770</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=892" rel="nofollow">sbelini</a><br /><strong>Subject:</strong> 3483<br /><strong>Posted:</strong> 06-Jun-2012 at 1:20pm<br /><br />Hi Paul,<div>&nbsp;</div><div>The article at <a href="http://blogs.imeta.co.uk/jyoung/archive/2010/04/08/849.aspx" target="_blank">http://blogs.imeta.co.uk/jyoung/archive/2010/04/08/849.aspx</a>&nbsp;points to some possible causes to the issue you have described:</div><div>- browser number of connections allowed</div><div>- Client Http Stack</div><div>- ASP.Net Session State</div><div>&nbsp;</div><div>The article above also details how to deal with each of the situations mentioned.</div><div>&nbsp;</div><div>In addition to that, you might want to disable the&nbsp;ASP.NET compatibility flag in the web.config if&nbsp;not using it.</div><div>&nbsp;</div><div>Regards,</div><div>&nbsp;&nbsp; Silvio.</div><div>&nbsp;</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Wed, 06 Jun 2012 13:20:34 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3483&amp;PID=13770#13770</guid>
  </item> 
  <item>
   <title>Problems with parallel coroutine : Hello,I have a problem with my...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3483&amp;PID=13755#13755</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1385" rel="nofollow">paul.gilbert</a><br /><strong>Subject:</strong> 3483<br /><strong>Posted:</strong> 06-Jun-2012 at 3:19am<br /><br />Hello,<br><br>I have a problem with my Silverlight 4 application that needs to load various lists at startup. Pretty much what <a href="http://drc.ideablade.com/xwiki/bin/view/&#068;ocumentati&#111;n/parallel-async-coroutines" target="_blank">http://drc.ideablade.com/xwiki/bin/view/Documentation/parallel-async-coroutines</a> describes. I created a coroutine method with a series of 'yield return' calls to ExecuteAsync, and none of them use data returned by any of the others. I then launch the method by calling Coroutine.StartParallel.<br><br>Despite following the example, my startup code still seems to take a long time. Doing analysis, I put some debugging information into the client on the entities Querying/Queried, as well as in a stub server query interceptor ExecuteQuery method&nbsp; (before and after a call to the .base.ExecuteQuery). The resulting debug information seems to indicate that, on my system, although the 'Query' event gets called for all of them at once, the query interceptor is getting called for each query one at a time, and the 'Queried' on the client is being fired between each, which would seem to mean that the server is processing them synchronously, despite the client having launched them using a parallel coroutine.<br><br>I was able to verify with Fiddler that the EntityServer.svc is getting called multiple times all at once (for all the queries), so I'm wondering if there's a setting for the server side DevForce code that controls the number of allowed concurrent connections from the client? Could that be what's preventing the queries from being run concurrently server side?<br><br><br>On a related note, I've been trying to reduce the complexity of the queries so they individually execute faster, and was I was wondering about a few cases where I have an inheritance hierarchy in the EDMX, which is represented as a table per class (which I have no choice about). So there is, for example, a class/table defining fields that are wanted on a particular business object, and a series of descendant class/tables for each of half a dozen supported field types.<br><br>Is there any way to do a query that could get just the items (or even a specific item) of a specific descendant type, rather than having the default SQL being generated which tries to join together all the child tables? If for example I only wanted a list of all the 'text' field objects, and didn't care about other types. I've tried using OfType&lt;TextField&gt;() in the queries, but this doesn't have any effect on the generated SQL.<br><br>Thanks.<br>]]>
   </description>
   <pubDate>Wed, 06 Jun 2012 03:19:30 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3483&amp;PID=13755#13755</guid>
  </item> 
 </channel>
</rss>