<?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 - Problems with Chr(0)</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 - Problems with Chr(0)</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>Tue, 18 Jun 2013 03:41:30 GMT</pubDate>
	<lastBuildDate>Tue, 18 Jun 2013 03:41:30 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>13</c9:totalResults>
	<c9:pageCount>-13</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p>Hello.<br /><br />I am having a bit of a problem regarding chr(0)<br /><br />Basically, I need to send Chr(0) as part of a string to a POS Printer (it resets the font to the standard size, family etc)<br /><br />However Chr(0) seems to be a black hole.<br /><br />As soon as it is added to a stringbuilder, anything appended after it disappears.<br /><br />It I concatenate strings (ugly and inefficient, I know) it also makes and extra string additions disappear!<br /><br />Can anybody suggest anything?<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/414064#414064</link>
		<pubDate>Mon, 07 Jul 2008 08:40:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/414064#414064</guid>
		<dc:creator>John</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jh71283/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p>You should use a byte buffer instead... Strings are by definition finished after chr(0). Therefore it's just right that .NET ends each string after the first chr(0) is found and ignores all the memory afterwards.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/174a79d02b494be9bf759dfa0093b352#174a79d02b494be9bf759dfa0093b352</link>
		<pubDate>Mon, 07 Jul 2008 09:10:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/174a79d02b494be9bf759dfa0093b352#174a79d02b494be9bf759dfa0093b352</guid>
		<dc:creator>Christian Liensberger</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/littleguru/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">littleguru said:</div><div class="quoteText">You should use a byte buffer instead... Strings are by definition finished after chr(0). Therefore it's just right that .NET ends each string after the first chr(0) is found and ignores all the memory afterwards.</div></blockquote>D'OH!<br /><br />So what you are basically saying, is that instead of building a string, I should build an array of bytes, and then send the byte array to the posprinter...<br /><br />However I *think* that I need to pass a string to the posprinter, so surely if I convert the byte array back into string, it will terminate after the first chr(0).<br /><br />hmm.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/5c08f6589c114677859a9dfa0093b3a5#5c08f6589c114677859a9dfa0093b3a5</link>
		<pubDate>Mon, 07 Jul 2008 10:13:20 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/5c08f6589c114677859a9dfa0093b3a5#5c08f6589c114677859a9dfa0093b3a5</guid>
		<dc:creator>John</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jh71283/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">littleguru said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
D'OH!<br /><br />So what you are basically saying, is that instead of building a string, I should build an array of bytes, and then send the byte array to the posprinter...<br /><br />However I *think* that I need to pass a string to the posprinter, so surely if I convert the byte array back into string, it will terminate after the first chr(0).<br /><br />hmm.<br /></div></blockquote>Confirmed. It needs to be a string that I pass to the posprinter.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/3a8d02a4eec04adf807e9dfa0093b3fb#3a8d02a4eec04adf807e9dfa0093b3fb</link>
		<pubDate>Mon, 07 Jul 2008 10:18:39 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/3a8d02a4eec04adf807e9dfa0093b3fb#3a8d02a4eec04adf807e9dfa0093b3fb</guid>
		<dc:creator>John</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jh71283/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">jh71283 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
Confirmed. It needs to be a string that I pass to the posprinter.<br /></div></blockquote>What API are you working against? A totally managed API, a COM interface, a P/Invoke signature?<br />C-style strings are, by definition, Chr(0)-terminated, so the API presumably doesn't work with those and expect it to work. Maybe it's just a matter of changing the interop signature.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/3639432c618244579eff9dfa0093b44f#3639432c618244579eff9dfa0093b44f</link>
		<pubDate>Mon, 07 Jul 2008 13:44:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/3639432c618244579eff9dfa0093b44f#3639432c618244579eff9dfa0093b44f</guid>
		<dc:creator>Yggdrasil</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Yggdrasil/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p>.Net strings (and StringBuilders), as well as COM string (BSTR), can contain zero characters without problems, as they keep their length separately.<br /><br />However, if you were to attempt to display this string anywhere using any of the usual methods (nearly all of which use zero-terminated C-style strings internally), the string would appear to be cut off because it doesn't display anything beyond that character.
 Unfortunately, that also goes for the Visual Studio debugger. The string is there (check String(Builder).Length and you'll see it's the length of the whole thing not just up to the zero character). So while you can't see it, it's still there. I would just
 try to send that to the device and see if it works.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/361e6288c2f7408aa0049dfa0093b4a4#361e6288c2f7408aa0049dfa0093b4a4</link>
		<pubDate>Mon, 07 Jul 2008 14:05:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/361e6288c2f7408aa0049dfa0093b4a4#361e6288c2f7408aa0049dfa0093b4a4</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Yggdrasil said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">jh71283 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
What API are you working against? A totally managed API, a COM interface, a P/Invoke signature?<br />C-style strings are, by definition, Chr(0)-terminated, so the API presumably doesn't work with those and expect it to work. Maybe it's just a matter of changing the interop signature.</div></blockquote><blockquote><div class="quoteText">What API are you working against?</div></blockquote><br />Microsoft POS for .NET<br /><br /><blockquote><div class="quoteText">I would just try to send that to the device and see if it works.</div></blockquote><br /><br />It just spits out a few blank lines and that's it.<br /><br /><br />I can't understand why they would choose chr(0) as the code to reset? <br /><br />This was specified by Espon in the design of esc/pos, not MS, I might add.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/1aa9e0a7ee744507b8689dfa0093b4fb#1aa9e0a7ee744507b8689dfa0093b4fb</link>
		<pubDate>Mon, 07 Jul 2008 15:01:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/1aa9e0a7ee744507b8689dfa0093b4fb#1aa9e0a7ee744507b8689dfa0093b4fb</guid>
		<dc:creator>John</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jh71283/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Yggdrasil said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<br /><br />It just spits out a few blank lines and that's it.<br /><br /><br />I can't understand why they would choose chr(0) as the code to reset? <br /><br />This was specified by Espon in the design of esc/pos, not MS, I might add.</div></blockquote><br />Or am I interpreting this incorrectly?<br /><br />Please see attached Page - I want to set all options to OFF, and character Font A.<br /><br /><i>Seeing as this site is so bloody INFURIATING to use, the image is located at <br /><br />http://img66.imageshack.us/my.php?image=escfs0.jpg</i><br /><br /><br /><a href="http://img66.imageshack.us/my.php?image=escfs0.jpg" rel="lightbox"><img src="http://img66.imageshack.us/my.php?image=escfs0.jpg"></a><br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/c5aea916182d4351b6189dfa0093b553#c5aea916182d4351b6189dfa0093b553</link>
		<pubDate>Mon, 07 Jul 2008 15:08:38 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/c5aea916182d4351b6189dfa0093b553#c5aea916182d4351b6189dfa0093b553</guid>
		<dc:creator>John</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jh71283/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">jh71283 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<br />Or am I interpreting this incorrectly?<br /><br />Please see attached Page - I want to set all options to OFF, and character Font A.<br /><br /><i>Seeing as this site is so bloody INFURIATING to use, the image is located at <br /><br />http://img66.imageshack.us/my.php?image=escfs0.jpg</i><br /><br /><br /><a href="http://img66.imageshack.us/my.php?image=escfs0.jpg" rel="lightbox"><img src="http://img66.imageshack.us/my.php?image=escfs0.jpg"></a><br /></div></blockquote>You are sending the full sequence, right? I.e. 0x1B, 0x21, 0x00</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/052ef24701004c6d9d3a9dfa0093b5a7#052ef24701004c6d9d3a9dfa0093b5a7</link>
		<pubDate>Mon, 07 Jul 2008 15:41:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/052ef24701004c6d9d3a9dfa0093b5a7#052ef24701004c6d9d3a9dfa0093b5a7</guid>
		<dc:creator>AndyC</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/AndyC/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">jh71283 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<br />Or am I interpreting this incorrectly?<br /><br />Please see attached Page - I want to set all options to OFF, and character Font A.<br /><br /><i>Seeing as this site is so bloody INFURIATING to use, the image is located at <br /><br />http://img66.imageshack.us/my.php?image=escfs0.jpg</i><br /><br /><br /><a href="http://img66.imageshack.us/my.php?image=escfs0.jpg" rel="lightbox"><img src="http://img66.imageshack.us/my.php?image=escfs0.jpg"></a><br /></div></blockquote>Have you tried following Microsoft's documentation instead of the printer's ?<br /><br />eg [<a href="http://msdn.microsoft.com/en-us/library/microsoft.pointofservice.posprinter.aspx">PosPrinterClass</a>]<br /><br /><blockquote>
<p><b>Print Mode</b> - Characteristics that are remembered until explicitly changed.</p>
<table width="100%">
<tbody>
<tr>
<td>
<p><b>Name</b> </p>
</td>
<td>
<p><b>Data</b> </p>
</td>
<td>
<p><b>Remarks</b> </p>
</td>
</tr>
<tr>
<td>
<p>Font font selection</p>
</td>
<td>
<p>ESC|#fT</p>
</td>
<td>
<p>Selects a new font for the following data. Values for the character ‘#’ are as follows:</p>
<p>0 = Default font.1 = Select first font from the <b>FontTypefaceList</b> property.2 = Select second font from the
<b>FontTypefaceList</b> property.And so on.</p>
</td>
</tr>
</tbody>
</table>
</blockquote>
<br /><br />I think you'll find that the # (above) will be the the string form of number. ie &quot;0&quot; -&gt; chr(30). Though I expect that below the covers, the class will follow the ESC/POS documentation, as you posted.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/52c346c80ec0476bb46d9dfa0093b601#52c346c80ec0476bb46d9dfa0093b601</link>
		<pubDate>Mon, 07 Jul 2008 20:55:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/52c346c80ec0476bb46d9dfa0093b601#52c346c80ec0476bb46d9dfa0093b601</guid>
		<dc:creator>RichardRudek</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/RichardRudek/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">jh71283 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<br />Or am I interpreting this incorrectly?<br /><br />Please see attached Page - I want to set all options to OFF, and character Font A.<br /><br /><i>Seeing as this site is so bloody INFURIATING to use, the image is located at <br /><br />http://img66.imageshack.us/my.php?image=escfs0.jpg</i><br /><br /><br /><a href="http://img66.imageshack.us/my.php?image=escfs0.jpg" rel="lightbox"><img src="http://img66.imageshack.us/my.php?image=escfs0.jpg"></a><br /></div></blockquote>I will try to look at some of this later....<br /><br />is this for the TM-T88III / IV&nbsp; printers ? or another model?<br /><br />I work with the 88III / 88IV all the time.<br /><br />when I set codes I am using the seperate codes and that works -- the one you are using is a short-hand to toggle several things at one time.<br /><br />I am still using the ole /COM bits but have been planning to switch.<br /><br />was it you and I that posted some about this before ??&nbsp; can't recall it was at least 1-2 months back.<br /><br />if you want to keep using the zero there may be a way to make it work but it may be that you have to skip string builder or you may have to get it to use ASCII encoding or some other tricks.<br /><br />I bet by default the internal buffers used by SB use a char 0 terminator&nbsp; to find the end of the valid text.<br />normaly text strings do not contain values below 32 / space and by default .Net works in UNICODE which is not bytes
<br />but the Epson Codes are Bytes not chars if you get what I mean ?<br /><br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/ab2632574a174eb68e9b9dfa0093b662#ab2632574a174eb68e9b9dfa0093b662</link>
		<pubDate>Mon, 07 Jul 2008 21:13:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/ab2632574a174eb68e9b9dfa0093b662#ab2632574a174eb68e9b9dfa0093b662</guid>
		<dc:creator>figuerres</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/figuerres/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Yggdrasil said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<br /><br />It just spits out a few blank lines and that's it.<br /><br /><br />I can't understand why they would choose chr(0) as the code to reset? <br /><br />This was specified by Espon in the design of esc/pos, not MS, I might add.</div></blockquote>
<p>this looks like it works:<br /><br />StringBuilder Stb = new StringBuilder();<br />Stb.Append(&quot;foo \x1b!\x00 Barf Gog.&quot;);<br />String goog = Stb.ToString();<br /><br />try appending &quot;\x00&quot;&nbsp; and see how that works.<br />the above makes a string that does have all of the values.&nbsp; <br /><br />I am at home so I can't try sending it to the printer right now.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/c78872a6f3614d7fb9369dfa0093b6b7#c78872a6f3614d7fb9369dfa0093b6b7</link>
		<pubDate>Tue, 08 Jul 2008 00:02:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/c78872a6f3614d7fb9369dfa0093b6b7#c78872a6f3614d7fb9369dfa0093b6b7</guid>
		<dc:creator>figuerres</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/figuerres/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Problems with Chr(0)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">jh71283 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>this looks like it works:<br /><br />StringBuilder Stb = new StringBuilder();<br />Stb.Append(&quot;foo \x1b!\x00 Barf Gog.&quot;);<br />String goog = Stb.ToString();<br /><br />try appending &quot;\x00&quot;&nbsp; and see how that works.<br />the above makes a string that does have all of the values.&nbsp; <br /><br />I am at home so I can't try sending it to the printer right now.</p>
</div></blockquote>Hi figuerres.... yeah we discusses PosPrinters a little while back.<br /><br />Athough it is not actually an Epson printer,&nbsp; all pos printers support ESC/Pos, although some have better support than others.<br /><br />The reason I hoped to use the ESC ! method is that some printers do not like it if I send them a sequence of escapes, Such as
<br /><br />[FontA][Color Red][DoubleWidth]Hello blah blah<br />[DoubleWidth][Color Red] Hello Again<br /><br /><br />If you know what I mean....<br />Some printers will accept the first Double for example, and print the first&nbsp; line in Double, but the second [Double] seems to switch it back off!<br /><br />However, some other printers, will ONLY print the second line in double if it is specified on that line, otherwise they revert to single.<br /><br /><br />From testing so far, the ESC &quot;!&quot; seems to work, but I Cannot select Font A (and Font B on some printers is MUCH smaller.)<br /><br /><br />As I said before I wish I could just tell people to buy Epson printers exclusively, at least they stick to the standard!<br /><br />@RichardRudek<br /><br />Thanks for the suggestion, but that is the situation I am trying to get out of for the reasons above.<br /><br />For example If I want Double Width, Font A the Esc ! code is<br /><br />ESC ! (32)<br /><br />Whereas otherwise I have to Build it such as<br /><br /><p>ESC|0fT &amp; ESC|2C</p>
<p>Which as I said, some printers are happy with, but not all <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif' alt='Sad' /><br /></p>
&nbsp;<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/52eb042b0f484109842d9dfa0093b70c#52eb042b0f484109842d9dfa0093b70c</link>
		<pubDate>Tue, 08 Jul 2008 07:15:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/414064-Problems-with-Chr0/52eb042b0f484109842d9dfa0093b70c#52eb042b0f484109842d9dfa0093b70c</guid>
		<dc:creator>John</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jh71283/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>