<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>John Plummer . com &#187; WCF</title>
	<atom:link href="http://www.johnplummer.com/category/wcf/feed" rel="self" type="application/rss+xml" />
	<link>http://www.johnplummer.com</link>
	<description>Stuff I want to remember</description>
	<lastBuildDate>Mon, 06 Sep 2010 10:48:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Simple WCF Service Host</title>
		<link>http://www.johnplummer.com/code/simple-wcf-service-host.html</link>
		<comments>http://www.johnplummer.com/code/simple-wcf-service-host.html#comments</comments>
		<pubDate>Fri, 22 Jan 2010 18:52:35 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.johnplummer.com/uncategorized/simple-wcf-service-host.html</guid>
		<description><![CDATA[app.config The configuration for a simple http WCF host is: &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34; ?&#62; &#60;configuration&#62; &#60;appSettings&#62; &#60;/appSettings&#62; &#60;system.serviceModel&#62; &#60;services&#62; &#60;service name=&#34;AssemblyNamespace.ServiceImplementation&#34; behaviorConfiguration=&#34;ServiceBehavior&#34;&#62; &#60;endpoint address=&#34;ServiceName&#34; binding=&#34;basicHttpBinding&#34; contract=&#34;AssemblyNamespace.ServiceContractInterface&#34; /&#62; &#60;endpoint address=&#34;mex&#34; binding=&#34;mexHttpBinding&#34; contract=&#34;IMetadataExchange&#34; /&#62; &#60;host&#62; &#60;baseAddresses&#62; &#60;add baseAddress=&#34;http://HostName:Port/&#34;/&#62; &#60;/baseAddresses&#62; &#60;/host&#62; &#60;/service&#62; &#60;/services&#62; &#60;behaviors&#62; &#60;serviceBehaviors&#62; &#60;behavior name=&#34;ServiceBehavior&#34;&#62; &#60;serviceMetadata httpGetEnabled=&#34;true&#34;/&#62; &#60;/behavior&#62; &#60;/serviceBehaviors&#62; &#60;/behaviors&#62; &#60;/system.serviceModel&#62; &#60;/configuration&#62; An example: &#60;?xml version=&#34;1.0&#34; [...]]]></description>
		<wfw:commentRss>http://www.johnplummer.com/code/simple-wcf-service-host.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
