Of course, just set the location and status code
WebOperationContext.Current.OutgoingResponse.Location = "http://server/customers/324"; WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.MovedPermanently;
I do not know how the WCF client handles redirects, but it is relatively simple to do this using HttpWebRequest.
source share