Does the WCF REST WebChannelFactory client support REST services that use redirects? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T15:02:14Zhttp://stackoverflow.com/feeds/question/1033142http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1033142/does-the-wcf-rest-webchannelfactory-client-support-rest-services-that-use-redirec1Does the WCF REST WebChannelFactory client support REST services that use redirects?Jacob2009-06-23T15:05:13Z2009-06-23T15:05:13Z
<p>If you have a RESTful web service that uses HTTP 301 redirects to send requests like:</p>
<blockquote>
<p><a href="http://server/customers/?name=John" rel="nofollow">http://server/customers/?name=John</a></p>
</blockquote>
<p>to the url</p>
<blockquote>
<p><a href="http://server/customers/324" rel="nofollow">http://server/customers/324</a></p>
</blockquote>
<p>(as created by a service similar to the one in <a href="http://stackoverflow.com/questions/1032937/do-wcf-rest-services-support-http-301-redirects">this question.</a>)</p>
<p>Can these types of services be consumed with the WebChannelFactory and a ServiceContract? If so, how?</p>