I have a web application that communicates between two different web applications (one receiver and one sender, the sender communicates with my application, and my applicati
possiblly something like:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("www.testing.test");
request.Headers = (WebHeaderCollection)Request.Headers;
Then call the get response
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
This will have the same HTTP headers as the original request.