<?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 - Discussions by Jtb</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/Jtb/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by Jtb</title>
		<link>http://channel9.msdn.com/Niners/Jtb/Discussions</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/Niners/Jtb/Discussions</link>
	<language>en</language>
	<pubDate>Fri, 24 May 2013 07:49:24 GMT</pubDate>
	<lastBuildDate>Fri, 24 May 2013 07:49:24 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - Optimize dotnet-applications for Terminal Server?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">W3bbo wrote:</div>
<div class="quoteBody">&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Jtb wrote:</strong>
<hr size="1">
<i>what do you mean by &quot;GAC object&quot;?<br /><br />I'm searching for a managed shared memory where I can put a global dotnet-object (meaning class instances) cache...</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br /><br />Some kind of IPC?<br /><br />Try <a href="http://www.danga.com/memcached/">memcache</a>.<br /></div>
</blockquote>
<br /><br />thank you - I don't know of dotnet clients for memcache. But yet - it needs a server. Any native dotnet cache out there? <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /><br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/df45875a886d47f48cdf9dfa00910b5a#df45875a886d47f48cdf9dfa00910b5a</link>
		<pubDate>Sun, 02 Dec 2007 09:06:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/df45875a886d47f48cdf9dfa00910b5a#df45875a886d47f48cdf9dfa00910b5a</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Optimize dotnet-applications for Terminal Server?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">figuerres wrote:</div>
<div class="quoteBody">&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Jtb wrote:</strong>
<hr size="1">
<i>&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Minh wrote:</strong>
<hr size="1">
<i>&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Jtb wrote:</strong>
<hr size="1">
<i>&#65279;Hello,<br />Anyone know a solution for a global (spanning multiple TS sessions) dotnet-object cache?
<br /><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></i></td>
</tr>
</tbody>
</table>
</blockquote>
GAC objects are shared by all processes of the same machine, so that could be your approach.<br /></i></td>
</tr>
</tbody>
</table>
</blockquote>
<br /><br />what do you mean by &quot;GAC object&quot;?<br /><br />I'm searching for a managed shared memory where I can put a global dotnet-object (meaning class instances) cache...<br /></i></td>
</tr>
</tbody>
</table>
</blockquote>
<br /><br />first check this link:&nbsp; <a href="http://en.wikipedia.org/wiki/Global_Assembly_Cache">
http://en.wikipedia.org/wiki/Global_Assembly_Cache</a><br /><br /><br />if you can take a bunch of the app code and put it into dlls that will not need to change very often then you can put them in the servers .net GAC and then each copy of the app you may install does not need a local copy of the dll.<br /><br />for example if you wanted to use ClickOnce to give each user a local copy of the app in terminal services then by using the GAC each users copy of app code is reduced.<br /></div>
</blockquote>
<br /><br />mmh, that doesn't answer the question. Hard disk space is no concern. The question is how can I achieve dll sharing in memory.<br /><br /><blockquote>
<div class="quoteAuthor">figuerres wrote:</div>
<div class="quoteBody">&#65279;<br />for sharing data between sessions my first choice is to use a database, that's what they are for is storing and fetching data.<br /><br />most of the time when folks try to create a &quot;better storage&quot; they do not.&nbsp; the folks who write SQL server or Oracle have spent decades on performance....<br /><br />how big is the data to share ?<br />what kind of data ?<br />where does it come from ?<br />how many users need to see it?<br /><br />each of the above could guide the design of the data store.<br />in some cases you may want a shared memory cache but most of the time a good SQL DB will get you as good a perf with a lot less code work, and testing and so on...<br /></div>
</blockquote>
<br /><br />I've got a database backend but we also need a local cache in memory. Loading a few thousands rows and converting it to objects takes a while. Just think about SQL roundtrip time...<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/2e09937488454181abca9dfa00910b02#2e09937488454181abca9dfa00910b02</link>
		<pubDate>Sun, 02 Dec 2007 09:01:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/2e09937488454181abca9dfa00910b02#2e09937488454181abca9dfa00910b02</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Optimize dotnet-applications for Terminal Server?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Minh wrote:</div>
<div class="quoteBody">&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Jtb wrote:</strong>
<hr size="1">
<i>&#65279;Hello,<br />Anyone know a solution for a global (spanning multiple TS sessions) dotnet-object cache?
<br /><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></i></td>
</tr>
</tbody>
</table>
</blockquote>
GAC objects are shared by all processes of the same machine, so that could be your approach.<br /></div>
</blockquote>
<br /><br />what do you mean by &quot;GAC object&quot;?<br /><br />I'm searching for a managed shared memory where I can put a global dotnet-object (meaning class instances) cache...<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/673e50a3e7ea4504abb89dfa009109ea#673e50a3e7ea4504abb89dfa009109ea</link>
		<pubDate>Sat, 01 Dec 2007 17:34:52 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/673e50a3e7ea4504abb89dfa009109ea#673e50a3e7ea4504abb89dfa009109ea</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Optimize dotnet-applications for Terminal Server?</title>
		<description><![CDATA[<p>Hello,<br /><br />I'm currently developing a large application which is run on a Terminal Server by multiple users currently.<br /><br />How can I achieve low memory pressure? E.g. how can I achieve that the dll's will be shared?<br />Do the assemblies have to be signed? Do they have to be in the GAC?<br />I already know that the base adress must be set correct or otherwise they will be rebased (which leads to non-shareable dlls)..<br /><br /><br />Anyone know a solution for a global (spanning multiple TS sessions) dotnet-object cache?
<br /><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/259371#259371</link>
		<pubDate>Sat, 01 Dec 2007 13:47:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259371-Optimize-dotnet-applications-for-Terminal-Server/259371#259371</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Light relief: favorite bug reports</title>
		<description><![CDATA[<p>nice one!<br>
<br>
<strong>MORE</strong> <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/2092-Light-relief-favorite-bug-reports/b87c2260e42d49d3b6089dea0113c142#b87c2260e42d49d3b6089dea0113c142</link>
		<pubDate>Tue, 13 Apr 2004 07:48:10 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/2092-Light-relief-favorite-bug-reports/b87c2260e42d49d3b6089dea0113c142#b87c2260e42d49d3b6089dea0113c142</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Forums Wish - &amp;quot;Watched Topics&amp;quot;</title>
		<description><![CDATA[<p>That would be really great!<br>
Furthermore: email notification..</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/1075-Forums-Wish-quotWatched-Topicsquot/3297a7a8251745bdad1a9dea01118a0e#3297a7a8251745bdad1a9dea01118a0e</link>
		<pubDate>Thu, 08 Apr 2004 21:58:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/1075-Forums-Wish-quotWatched-Topicsquot/3297a7a8251745bdad1a9dea01118a0e#3297a7a8251745bdad1a9dea01118a0e</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - When will we see features that Internet Explorer lacks in Internet Explorer?</title>
		<description><![CDATA[<p>it would be nice if I can program IE-Addons with dotnet.. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/203-When-will-we-see-features-that-Internet-Explorer-lacks-in-Internet-Explorer/acf9e74b97e34d39b8cd9dea010f8422#acf9e74b97e34d39b8cd9dea010f8422</link>
		<pubDate>Thu, 08 Apr 2004 14:05:59 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/203-When-will-we-see-features-that-Internet-Explorer-lacks-in-Internet-Explorer/acf9e74b97e34d39b8cd9dea010f8422#acf9e74b97e34d39b8cd9dea010f8422</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>94</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - MSDN and Microsoft sites in general</title>
		<description><![CDATA[<p>Hi,<br>
<br>
hidden info isn't the only problem..<br>
A few weeks ago I called MS-Action-Pack-Support (in Germany) because I want to get details about buying it as Microsoft Certified Partner and they told me that the known that the German-Partner-Sites are old and contain wrong information..<br>
<br>
Till now nothing has changed and I have to get the information from the&nbsp;international-partnerpages..</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/486-MSDN-and-Microsoft-sites-in-general/efcb18689f0449b6b61a9dea01106329#efcb18689f0449b6b61a9dea01106329</link>
		<pubDate>Thu, 08 Apr 2004 12:37:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/486-MSDN-and-Microsoft-sites-in-general/efcb18689f0449b6b61a9dea01106329#efcb18689f0449b6b61a9dea01106329</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Hall of Technical Documentation Weirdness</title>
		<description><![CDATA[<p>Hi,<br>
<blockquote>
<div>jeffsand wrote:</div>
<div>The <a href="http://www.darrenbarefoot.com/hall/" target="_blank">Hall of Technical Documentation Weirdness</a>&nbsp;is pretty cool. They list wacky, bizarre, surreal and otherwise strange examples of technical documentation, particularly illustration.</div>
</blockquote>
<br>
<br>
I could post lot of translation-errors for the german VS.Net and MSDN - but that's not fun anymore -&gt; causing many bugs <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-9.gif' alt='Crying' /><br>
<br>
That would be my wish if I haven't changed to the english VS.Net: let developers (or someone how to changes a little bit about developing)&nbsp;do the translation!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/13-Hall-of-Technical-Documentation-Weirdness/e1bdce90ede2423d935f9dea010ecba9#e1bdce90ede2423d935f9dea010ecba9</link>
		<pubDate>Thu, 08 Apr 2004 12:28:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/13-Hall-of-Technical-Documentation-Weirdness/e1bdce90ede2423d935f9dea010ecba9#e1bdce90ede2423d935f9dea010ecba9</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - C# Programming Problem/Question.</title>
		<description><![CDATA[<p>Hi,<br>
<blockquote>
<div>unix? wrote:</div>
<div><br>
My question: How can I have a property with a public get accessor and an internal set accessor with the result of a property in Visual Studio intellisense ?<br>
<br>
Is it possible or not ?<br>
</div>
</blockquote>
<br>
<br>
see <a href="http://microsoft.sitestream.com/PDC2003/Default.htm">http://microsoft.sitestream.com/PDC2003/Default.htm</a>&nbsp;- Tools &amp; Language:<br>
<br>
&quot;TLS320 - Visual C# &quot;Whidbey&quot;: Language Enhancements&quot; Slide 24</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/964-C-Programming-ProblemQuestion/2b44b09f33e44b6d85159dea011151f0#2b44b09f33e44b6d85159dea011151f0</link>
		<pubDate>Thu, 08 Apr 2004 11:25:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/964-C-Programming-ProblemQuestion/2b44b09f33e44b6d85159dea011151f0#2b44b09f33e44b6d85159dea011151f0</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Known Issues with Channel 9</title>
		<description><![CDATA[<p>Hi,<br>
<br>
just got that exception while browsing through the wiki:<br>
<br>
&nbsp; Server Error in '/' Application. <i>The process cannot access the file &quot;\\nas2.orcsweb.com\microsoftpdc.com$\wiki\WikiBases\Channel9\WhidbeyWiki.wiki&quot; because it is being used by another process.</i>
<b>Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
<br>
<br>
<b>Exception Details: </b>System.IO.IOException: The process cannot access the file &quot;\\nas2.orcsweb.com\microsoftpdc.com$\wiki\WikiBases\Channel9\WhidbeyWiki.wiki&quot; because it is being used by another process.<br>
<br>
<b>Source Error:</b> <br>
<br>
<table bgcolor="#ffffcc">
<tbody>
<tr>
<td><code>
<pre>Line 67: 					&lt;div class=&quot;brownhighlight&quot;&gt;
Line 68: 					&lt;div class=&quot;shadowborder&quot;&gt;
Line 69: 					&lt;% DoSideBar(); %&gt;
Line 70: 					&lt;/div&gt;
Line 71: 					&lt;/div&gt;</pre>
</code></td>
</tr>
</tbody>
</table>
<br>
<b>Source File: </b>\\nas2.orcsweb.com\microsoftpdc.com$\wiki\default.aspx<b> &nbsp;&nbsp; Line:
</b>69 <br>
<br>
<b>Stack Trace:</b> <br>
<br>
<table bgcolor="#ffffcc">
<tbody>
<tr>
<td><code>
<pre>[IOException: The process cannot access the file &quot;\\nas2.orcsweb.com\microsoftpdc.com$\wiki\WikiBases\Channel9\WhidbeyWiki.wiki&quot; because it is being used by another process.]
   System.IO.__Error.WinIOError(Int32 errorCode, String str) &#43;614
   System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy) &#43;888
   System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share) &#43;45
   FlexWiki.ContentBase.IsExistingTopicWritable(AbsoluteTopicName TheTopic) &#43;91
   FlexWiki.Web.BasePage.get_IsWritable() &#43;274
   FlexWiki.Web.Default.DoSideBar() &#43;260
   ASP.default_aspx.__Render__control2(HtmlTextWriter __output, Control parameterContainer) in \\nas2.orcsweb.com\microsoftpdc.com$\wiki\default.aspx:69
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) &#43;27
   System.Web.UI.Control.Render(HtmlTextWriter writer) &#43;7
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) &#43;241
   ASP.Skin_PageTemplate_ascx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) in \\nas2.orcsweb.com\microsoftpdc.com$\Themes\default\Skins\Skin-PageTemplate.ascx:13
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) &#43;27
   System.Web.UI.Control.Render(HtmlTextWriter writer) &#43;7
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) &#43;241
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) &#43;72
   System.Web.UI.WebControls.WebControl.RenderContents(HtmlTextWriter writer) &#43;7
   System.Web.UI.WebControls.WebControl.Render(HtmlTextWriter writer) &#43;29
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) &#43;241
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) &#43;72
   System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) &#43;44
   System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output) &#43;262
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) &#43;241
   ASP.default_aspx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) in \\nas2.orcsweb.com\microsoftpdc.com$\wiki\default.aspx:63
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) &#43;27
   System.Web.UI.Control.Render(HtmlTextWriter writer) &#43;7
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) &#43;241
   System.Web.UI.Page.ProcessRequestMain() &#43;1918
</pre>
</code></td>
</tr>
</tbody>
</table>
<br>
<b>Version Information:</b>&nbsp;Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.910</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/4-Known-Issues-with-Channel-9/06abfcd741e348dc9ff59dea010e9e02#06abfcd741e348dc9ff59dea010e9e02</link>
		<pubDate>Thu, 08 Apr 2004 08:33:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/4-Known-Issues-with-Channel-9/06abfcd741e348dc9ff59dea010e9e02#06abfcd741e348dc9ff59dea010e9e02</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>120</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Yup ... we gots bugs ... we gots things to do better</title>
		<description><![CDATA[<p>Hi,<br>
<blockquote>
<div>lenn wrote:</div>
<div><br>
1.) We are listening and taking in your bug reports.&nbsp; Things need to get better in many areas from UI, to HTML quality, to random bugs.&nbsp; We will post our next actions on the site on Wednesday. Help us prioritize.<br>
</div>
</blockquote>
<br>
<br>
and where should we post our bug reports?<br>
<br>
I don't know any public MS-Bugtracker and just mailing them to MS seems to me no good idea -&gt; I don't know what was already posted and most likly only send duplicates..<br>
<br>
If we should post them here, a bug-forum would be great!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/457-Yup--we-gots-bugs--we-gots-things-to-do-better/308f6cdeceb24627a3a69dea01105d9b#308f6cdeceb24627a3a69dea01105d9b</link>
		<pubDate>Thu, 08 Apr 2004 06:48:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/457-Yup--we-gots-bugs--we-gots-things-to-do-better/308f6cdeceb24627a3a69dea01105d9b#308f6cdeceb24627a3a69dea01105d9b</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Integration of VSS with VS.NET</title>
		<description><![CDATA[<p>Hi,<br>
<br>
a &quot;new&quot; SourceSafe would be really great!<br>
<br>
-&gt; Very slow at fetching projecthistory<br>
-&gt; Databasehandling isn't very good: maximum size (3-5GB), always check for enough free diskspace, need to be analyzed very often (see
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvss/html/vssbest.asp">
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvss/html/vssbest.asp</a>)<br>
-&gt; Switching between online/offline is very slow (VS.Net)<br>
-&gt; VSS over VPN is very slow <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif' alt='Sad' /><br>
-&gt; no Webclient<br>
-&gt; Not fully integrated into VS.Net (renaming files..)</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/405-Integration-of-VSS-with-VSNET/b3a0fa6faf5a45398a099dea01102b3e#b3a0fa6faf5a45398a099dea01102b3e</link>
		<pubDate>Wed, 07 Apr 2004 18:50:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/405-Integration-of-VSS-with-VSNET/b3a0fa6faf5a45398a099dea01102b3e#b3a0fa6faf5a45398a099dea01102b3e</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Search-Function?</title>
		<description><![CDATA[<p><font>I'm wondering whether I'm blind or to stupid to find the search-function (for Forum&amp;Wiki)..</font></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/676-Search-Function/676#676</link>
		<pubDate>Wed, 07 Apr 2004 17:37:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/676-Search-Function/676#676</guid>
		<dc:creator>Jtb</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Jtb/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>