<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>WCF REST Starter Kit</title><link>http://forums.asp.net/1180.aspx</link><description>Discuss the WCF REST Starter Kit and other WCF REST topics.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: REST Client in 3.5 - Simple example required</title><link>http://forums.asp.net/thread/3461566.aspx</link><pubDate>Fri, 16 Oct 2009 09:24:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3461566</guid><dc:creator>kashifmunir</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3461566.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1180&amp;PostID=3461566</wfw:commentRss><description>&lt;p&gt;Hi Allen,&lt;/p&gt;&lt;p&gt;Thanks for your response but I did it the easier way. I have used HttpWebRequest and HttpWebResponse to generate requests post it and receive response. This is a far easier way of doing it as it does not require any knowledge of REST starter kit. Although you have to generate the XML request and read the response but it is not that difficult.&lt;/p&gt;</description></item><item><title>Re: REST Client in 3.5 - Simple example required</title><link>http://forums.asp.net/thread/3255255.aspx</link><pubDate>Wed, 24 Jun 2009 12:22:27 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3255255</guid><dc:creator>cosophy@gmail.com</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3255255.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1180&amp;PostID=3255255</wfw:commentRss><description>&lt;p&gt;Here is a way. First install REST Starter Kit Preview 2 and reference your project to Microsoft.Http.dll and Microsoft.Http.Extensions.dll&lt;/p&gt;&lt;p&gt;&lt;pre name="code" class="c-sharp"&gt;using Microsoft.Http;

string baseAddress = &amp;quot;http://exmaple.com/Service.svc/&amp;quot;;  // Service Base Address
string path=&amp;quot;exposedUriTemplate&amp;quot;;  //the Exposed UriTemplate for your interface

HttpClient client = new HttpClient(baseAddress);
HttpResponseMessage message = null;

//use HttpContentExtensions to create Http Content, can also use HttpContent class
HttpContent content=HttpContentExtensions.CreateDataContract&amp;lt;T&amp;gt;(T item);

//do Http Request and get the response
message = client.Post(path, content);
//other requests : client.Get(path); client.Put(path, content); client.Delete(path)&lt;/pre&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre name="code" class="c-sharp"&gt;Hope it can help.&lt;/pre&gt;&lt;p&gt;Allen Wang&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>REST Client in 3.5 - Simple example required</title><link>http://forums.asp.net/thread/3250916.aspx</link><pubDate>Mon, 22 Jun 2009 15:02:47 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3250916</guid><dc:creator>kashifmunir</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3250916.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1180&amp;PostID=3250916</wfw:commentRss><description>&lt;p&gt;Hi All.&lt;/p&gt;
&lt;p&gt;I am new to ASP.NET 3.5. Havent really had the time to study WCF and its REST capabilities. In one of my projects, I have to communicate to a 3rd party REST based services. I do have the XML structure that I should pass to the REST service and some sample responses that I may receive from the REST based service but I do not know how to do it using .NET 3.5. Can anyone provide a simple example to atleast get me started. Will be really grateful if some code can also be provided in this regard.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>