<?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>Bee Eee Blog &#187; WCF</title>
	<atom:link href="http://blog.bee-eee.com/tag/wcf/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bee-eee.com</link>
	<description>-- C# hints and tips</description>
	<lastBuildDate>Wed, 23 Dec 2009 19:00:47 +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>WCF Resolving error &#8216;The caller was not authenticated by the service.&#8217;</title>
		<link>http://blog.bee-eee.com/2009/09/17/wcf-resolving-error-the-caller-was-not-authenticated-by-the-service/</link>
		<comments>http://blog.bee-eee.com/2009/09/17/wcf-resolving-error-the-caller-was-not-authenticated-by-the-service/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 17:49:10 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://blog.bee-eee.com/?p=79</guid>
		<description><![CDATA[I ran across an easy way to get wsHttpBinding to work on a remote machine.  This involves just a little bit of code on the client side to complete the authentication. VPortalDataServiceClient client = new VPortalDataServiceClient(); client.ClientCredentials.Windows.ClientCredential.UserName = "btomas"; client.ClientCredentials.Windows.ClientCredential.Password = "password123"; The UserName is the windows account user name that is hosting the service. [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across an easy way to get wsHttpBinding to work on a remote machine.  This involves just a little bit of code on the client side to complete the authentication.</p>
<pre class="code">                VPortalDataServiceClient client = new VPortalDataServiceClient();
                client.ClientCredentials.Windows.ClientCredential.UserName = "btomas";
                client.ClientCredentials.Windows.ClientCredential.Password = "password123";</pre>
<p>The UserName is the windows account user name that is hosting the service.  This user may just need to be one on the domain that the machine can see &#8212; not exactly sure though.  And the Password is the password of that user.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bee-eee.com/2009/09/17/wcf-resolving-error-the-caller-was-not-authenticated-by-the-service/feed/</wfw:commentRss>
		<slash:comments>137</slash:comments>
		</item>
	</channel>
</rss>

