<?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: REST Based WCF Service in ASP.NET 3.5</title>
	<atom:link href="http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/</link>
	<description></description>
	<lastBuildDate>Sun, 25 Jul 2010 01:06:12 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: aki</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-1153</link>
		<dc:creator>aki</dc:creator>
		<pubDate>Wed, 28 Apr 2010 07:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-1153</guid>
		<description>I am getting this error.

A name was started with an invalid character. Error processing resource &#039;http://localhost/AdventureWeb/EmpService.svc&#039;. Li...

&lt;%@ServiceHost Language=&quot;C#&quot; Service=&quot;EmpService&quot;
-^

:(</description>
		<content:encoded><![CDATA[<p>I am getting this error.</p>
<p>A name was started with an invalid character. Error processing resource &#8216;http://localhost/AdventureWeb/EmpService.svc&#8217;. Li&#8230;</p>
<p>&lt;%@ServiceHost Language=&quot;C#&quot; Service=&quot;EmpService&quot;<br />
-^</p>
<p> <img src='http://www.techbubbles.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rico</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-1139</link>
		<dc:creator>Rico</dc:creator>
		<pubDate>Thu, 01 Apr 2010 16:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-1139</guid>
		<description>Nice thanks for the sample code lots of great information</description>
		<content:encoded><![CDATA[<p>Nice thanks for the sample code lots of great information</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reader</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-980</link>
		<dc:creator>Reader</dc:creator>
		<pubDate>Wed, 01 Jul 2009 20:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-980</guid>
		<description>To the guy who does not like line numbers:
You can remove them by holding ALT while selecting text in Visual Studio.
This will give you a rubber band type of selection style.</description>
		<content:encoded><![CDATA[<p>To the guy who does not like line numbers:<br />
You can remove them by holding ALT while selecting text in Visual Studio.<br />
This will give you a rubber band type of selection style.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalyan Bandarupalli</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-971</link>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
		<pubDate>Fri, 19 Jun 2009 18:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-971</guid>
		<description>Hi Jignesh,

Thanks for the code correction.</description>
		<content:encoded><![CDATA[<p>Hi Jignesh,</p>
<p>Thanks for the code correction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jignesh</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-970</link>
		<dc:creator>Jignesh</dc:creator>
		<pubDate>Fri, 19 Jun 2009 06:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-970</guid>
		<description>Instead of below code:
select new EmployeeResults
{
EmployeeName = dc.emp_name // emp_name not in dc
Link = string.Format(”{0}{1}”, strUrl, dc.emp_name);
}

It should be as per below code:
var Result = from anEmp in dc.Employees 
    select new EmployeeResult
    {
      EmployeeName = anEmp.Name,
      Link = string.Format(&quot;{0}{1}&quot;,strUrl,anEmp. Name)
    };</description>
		<content:encoded><![CDATA[<p>Instead of below code:<br />
select new EmployeeResults<br />
{<br />
EmployeeName = dc.emp_name // emp_name not in dc<br />
Link = string.Format(”{0}{1}”, strUrl, dc.emp_name);<br />
}</p>
<p>It should be as per below code:<br />
var Result = from anEmp in dc.Employees<br />
    select new EmployeeResult<br />
    {<br />
      EmployeeName = anEmp.Name,<br />
      Link = string.Format(&#8221;{0}{1}&#8221;,strUrl,anEmp. Name)<br />
    };</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meqdadi</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-955</link>
		<dc:creator>Meqdadi</dc:creator>
		<pubDate>Wed, 27 May 2009 12:55:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-955</guid>
		<description>thnx good example but I have downloaded REST starter kit preview 2 can u tell me what this starter kit with new Class HttpClient???</description>
		<content:encoded><![CDATA[<p>thnx good example but I have downloaded REST starter kit preview 2 can u tell me what this starter kit with new Class HttpClient???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nadeem Zakaria</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-954</link>
		<dc:creator>Nadeem Zakaria</dc:creator>
		<pubDate>Tue, 26 May 2009 19:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-954</guid>
		<description>You are cute. </description>
		<content:encoded><![CDATA[<p>You are cute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul J Lay</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-948</link>
		<dc:creator>Paul J Lay</dc:creator>
		<pubDate>Sat, 16 May 2009 15:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-948</guid>
		<description>Could not get this sample to compile as follows:

select new EmployeeResults
{
   EmployeeName = dc.emp_name // emp_name not in dc
   Link = string.Format(&quot;{0}{1}&quot;, strUrl, dc.emp_name);
}
 Both statements have the same error emp_name not defined in dc  Everything else seemed to work up to this point.  Any suggestions about this problem?  Thanks.</description>
		<content:encoded><![CDATA[<p>Could not get this sample to compile as follows:</p>
<p>select new EmployeeResults<br />
{<br />
   EmployeeName = dc.emp_name // emp_name not in dc<br />
   Link = string.Format(&#8221;{0}{1}&#8221;, strUrl, dc.emp_name);<br />
}<br />
 Both statements have the same error emp_name not defined in dc  Everything else seemed to work up to this point.  Any suggestions about this problem?  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJAX Enabled WCF Service &#124; TechBubbles</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-934</link>
		<dc:creator>AJAX Enabled WCF Service &#124; TechBubbles</dc:creator>
		<pubDate>Mon, 23 Feb 2009 21:07:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-934</guid>
		<description>[...] Framework 3.5 WCF supports returning JSON serialized data from REST-based Web Service. You can read REST Based WCF Service in ASP.NET 3.5 article to know about developing a REST Web Service. This post explains about creating a REST based [...]</description>
		<content:encoded><![CDATA[<p>[...] Framework 3.5 WCF supports returning JSON serialized data from REST-based Web Service. You can read REST Based WCF Service in ASP.NET 3.5 article to know about developing a REST Web Service. This post explains about creating a REST based [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalyan Bandarupalli</title>
		<link>http://www.techbubbles.com/aspnet/rest-based-wcf-service-in-aspnet-35/comment-page-1/#comment-933</link>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
		<pubDate>Mon, 23 Feb 2009 18:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/#comment-933</guid>
		<description>Thanks for the feedback. In future articles you can find the code without line numbers.</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback. In future articles you can find the code without line numbers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
