<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Building a Basic Web Server Using WCF</title>
	<atom:link href="http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/</link>
	<description>Become a WCF Ninja - WCF Tips and Tricks</description>
	<lastBuildDate>Thu, 13 May 2010 08:37:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Building an embedded MVC server &#171; Simon says&#8230; architecture!</title>
		<link>http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/comment-page-1/#comment-59</link>
		<dc:creator>Building an embedded MVC server &#171; Simon says&#8230; architecture!</dc:creator>
		<pubDate>Thu, 04 Feb 2010 06:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iserviceoriented.com/?p=41#comment-59</guid>
		<description>[...] yesterday&#8217;s blog reading session I came across two interesting posts. First one was about building a web server using WCF. The other one was about testing ASP.NET MVC as a whole, [...]</description>
		<content:encoded><![CDATA[<p>[...] yesterday&#8217;s blog reading session I came across two interesting posts. First one was about building a web server using WCF. The other one was about testing ASP.NET MVC as a whole, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jezell</title>
		<link>http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/comment-page-1/#comment-20</link>
		<dc:creator>jezell</dc:creator>
		<pubDate>Mon, 25 Jan 2010 05:21:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iserviceoriented.com/?p=41#comment-20</guid>
		<description>Don&#039;t disagree. If all you want is basic raw HTTP support with no frills, you are probably better off just using HttpListener. WCF itself uses HttpListener under the covers. However, WCF isn&#039;t just about doing the same thing in a different way. WCF is about a uniform communication model. The nice thing about this approach is that the same interface and concepts also work with TCP, MSMQ, and any other WCF binding with very minimal effort. WCF also adds a standard extensibility model for things like tracing, performance counters, instancing, security, etc. With HttpListener, you just get the basics. </description>
		<content:encoded><![CDATA[<p>Don&#39;t disagree. If all you want is basic raw HTTP support with no frills, you are probably better off just using HttpListener. WCF itself uses HttpListener under the covers. However, WCF isn&#39;t just about doing the same thing in a different way. WCF is about a uniform communication model. The nice thing about this approach is that the same interface and concepts also work with TCP, MSMQ, and any other WCF binding with very minimal effort. WCF also adds a standard extensibility model for things like tracing, performance counters, instancing, security, etc. With HttpListener, you just get the basics.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jezell</title>
		<link>http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/comment-page-1/#comment-23</link>
		<dc:creator>jezell</dc:creator>
		<pubDate>Mon, 25 Jan 2010 01:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iserviceoriented.com/?p=41#comment-23</guid>
		<description>.NET 4.0 includes a new message encoder for raw byte streams that doesn&#039;t require as many tricks because it isn&#039;t coupled to the REST support that the WebMessageEncoder was designed for.  </description>
		<content:encoded><![CDATA[<p>.NET 4.0 includes a new message encoder for raw byte streams that doesn&#039;t require as many tricks because it isn&#039;t coupled to the REST support that the WebMessageEncoder was designed for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darrel Miller</title>
		<link>http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/comment-page-1/#comment-19</link>
		<dc:creator>Darrel Miller</dc:creator>
		<pubDate>Sun, 24 Jan 2010 21:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iserviceoriented.com/?p=41#comment-19</guid>
		<description>I think I know where and why you are going with this approach because I took a similar route previously.  However, using the HttpListener class you can do this much easier and throw WCF away completely.  WCF uses the HttpListener class under the covers itself to provide HTTP endpoints and then it wraps it all up with generic WCF goop.  HttpListener is really quite easy to use and gives you direct access to the HTTP request and response information. </description>
		<content:encoded><![CDATA[<p>I think I know where and why you are going with this approach because I took a similar route previously.  However, using the HttpListener class you can do this much easier and throw WCF away completely.  WCF uses the HttpListener class under the covers itself to provide HTTP endpoints and then it wraps it all up with generic WCF goop.  HttpListener is really quite easy to use and gives you direct access to the HTTP request and response information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry Wall </title>
		<link>http://blog.iserviceoriented.com/index.php/2010/01/23/building-a-basic-web-server-using-wcf/comment-page-1/#comment-16</link>
		<dc:creator>Larry Wall </dc:creator>
		<pubDate>Sun, 24 Jan 2010 03:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iserviceoriented.com/?p=41#comment-16</guid>
		<description>amazing. lots of progress in your world son. what are you 14? &lt;a href=&quot;http://www.floodgap.com/httpi/.&quot; target=&quot;_blank&quot;&gt;http://www.floodgap.com/httpi/.&lt;/a&gt; i hope some day you kids actually produce something new instead of the same old ideas wrapped in MSFT fan boi crap. </description>
		<content:encoded><![CDATA[<p>amazing. lots of progress in your world son. what are you 14? <a href="http://www.floodgap.com/httpi/." target="_blank"></a><a href="http://www.floodgap.com/httpi/" rel="nofollow">http://www.floodgap.com/httpi/</a>. i hope some day you kids actually produce something new instead of the same old ideas wrapped in MSFT fan boi crap.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
