There is a process that will send an http post request to a specific url, and from there I need to read information stored in the request headers (specifically X-RIM-Push-ID and X-RIM-Push-Status)
Is it possible to read the headers using IIS 6?
I’m planning on using:
var id = Response.Headers[“X-RIM-Push-ID”];
If you are looking for request headers in ASP.NET:
Hmm, usually it’s your application that should read headers, not sure what you mean here.