Does the WCF REST WebChannelFactory client support REST services that use redirects? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:02:14Z http://stackoverflow.com/feeds/question/1033142 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1033142/does-the-wcf-rest-webchannelfactory-client-support-rest-services-that-use-redirec 1 Does the WCF REST WebChannelFactory client support REST services that use redirects? Jacob 2009-06-23T15:05:13Z 2009-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>