<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Wed, 19 Jun 2013 21:33:11 GMT</pubDate>
	<lastBuildDate>Wed, 19 Jun 2013 21:33:11 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>6</c9:totalResults>
	<c9:pageCount>-6</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<description><![CDATA[<p>&nbsp;&nbsp;&nbsp;The MSDN docs says that ConcurrencyMode.Reentrant&nbsp;enabls the situation that&nbsp;when the current service operation calls out, it will silently release the lock on this service object, so other thread can require the lock, and do any interesting things on
 this service object. But the code sample just shows us that the callout is actually a call to another service. so does any normal callout will release the lock such as calling into another normal .net methods rather than calling into another service operation?<br>
<br>
Sheva</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/254330#254330</link>
		<pubDate>Fri, 27 Apr 2007 02:29:56 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/254330#254330</guid>
		<dc:creator>Zhou Yong</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/footballism/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<description><![CDATA[<p>The call has to be through the WCF infrastructure to unlock the service object. Calling into a method on a type does not unlock the service object. If you need this kind of behavior, then you can set the ConcurrencyMode to ConcurrencyMode.Multiple and
 lock state yourself.<br>
<br>
<br>
--Justin Smith<br>
<a href="http://blogs.msdn.com/justinjsmith">http://blogs.msdn.com/justinjsmith</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/97ae15af2e01429b85ea9dea01576626#97ae15af2e01429b85ea9dea01576626</link>
		<pubDate>Wed, 30 May 2007 18:38:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/97ae15af2e01429b85ea9dea01576626#97ae15af2e01429b85ea9dea01576626</guid>
		<dc:creator>justinjsmith</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/justinjsmith/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">justinjsmith wrote:</div>
<div class="quoteBody">&#65279;The call has to be through the WCF infrastructure to unlock the service object. Calling into a method on a type does not unlock the service object. If you need this kind of behavior, then you can set the ConcurrencyMode to ConcurrencyMode.Multiple
 and lock state yourself.<br>
<br>
<br>
--Justin Smith<br>
<a href="http://blogs.msdn.com/justinjsmith">http://blogs.msdn.com/justinjsmith</a></div>
</blockquote>
<br>
<br>
&nbsp;&nbsp;&nbsp;Thanks for your clarification Justin, you know the documentation should be more speficic to it.<br>
<br>
Sheva</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/cfe53c3c44124a97a6109dea0157664e#cfe53c3c44124a97a6109dea0157664e</link>
		<pubDate>Thu, 31 May 2007 00:22:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/cfe53c3c44124a97a6109dea0157664e#cfe53c3c44124a97a6109dea0157664e</guid>
		<dc:creator>Zhou Yong</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/footballism/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<description><![CDATA[<p>No worries. Happy to help.<br>
<br>
IRT MSDN documentation, I agree that we should add another sentence or two that clarify the point. I'll certainly pass that feedback on.<br>
<br>
--Justin Smith<br>
<a href="http://blogs.msdn.com/justinjsmith"><font color="#a55506">http://blogs.msdn.com/justinjsmith</font></a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/f09b40e31863424285179dea01576674#f09b40e31863424285179dea01576674</link>
		<pubDate>Thu, 31 May 2007 19:18:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/f09b40e31863424285179dea01576674#f09b40e31863424285179dea01576674</guid>
		<dc:creator>justinjsmith</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/justinjsmith/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<description><![CDATA[<p>I've submitted a new paragraph to the MSDN folks. As a result of your feedback, new verbiage that is more precise will/should appear in the .NET Framework 3.5 documentation.<br>
<br>
These changes go through an approval process, but I don't see any roadblocks.<br>
<br>
<br>
--Justin Smith<br>
<a href="http://blogs.msdn.com/justinjsmith">http://blogs.msdn.com/justinjsmith</a><br>
<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/4c62c0890cde4bc28f0f9dea0157669c#4c62c0890cde4bc28f0f9dea0157669c</link>
		<pubDate>Thu, 31 May 2007 20:09:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/4c62c0890cde4bc28f0f9dea0157669c#4c62c0890cde4bc28f0f9dea0157669c</guid>
		<dc:creator>justinjsmith</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/justinjsmith/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - WCF ConcurrencyMode.Reentrant Confusion</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">justinjsmith said:</div><div class="quoteText">I've submitted a new paragraph to the MSDN folks. As a result of your feedback, new verbiage that is more precise will/should appear in the .NET Framework 3.5 documentation.<br>
<br>
These changes go through an approval process, but I don't see any roadblocks.<br>
<br>
<br>
--Justin Smith<br>
<a href="http://blogs.msdn.com/justinjsmith">http://blogs.msdn.com/justinjsmith</a><br>
<br>
<br>
</div></blockquote>Hey Justin,<br>
<br>
I thought, you may be able to help me with this.<br>
We have setup a SCF service which runs with a ConcurrencyMode.Single<br>
Till a few days back we were only a few connecting to that service. Now there are more clients connecting to this service and service has stopped accepting the clients.
<br>
I tried changing the concurrency modes to different values and nothing helped.<br>
We are hosting this service into a Windows NT Service.<br>
<br>
Let me know if there is something that I need to set on the service to handle more concurrent calls or its altogether a different problem?<br>
<br>
Thanks<br>
Suhas<br>
<br>
suhas dot chatekar at gmail dot com<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/54460eae78e24b3986f49dea015766dd#54460eae78e24b3986f49dea015766dd</link>
		<pubDate>Tue, 01 Jul 2008 13:56:16 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254330-WCF-ConcurrencyModeReentrant-Confusion/54460eae78e24b3986f49dea015766dd#54460eae78e24b3986f49dea015766dd</guid>
		<dc:creator>Suahs Chatekar</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Suhas.Chatekar/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>