读取 aspx 页面代码后面传入的标头
有一个进程会将 http post 请求发送到特定的 url,从那里我需要读取请求标头中存储的信息(特别是 X-RIM-Push-ID 和 X-RIM-Push-Status)
是否可能使用 IIS 6 读取标头?
我打算使用:
var id = Response.Headers["X-RIM-Push-ID"];
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"];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您正在 ASP.NET 中查找请求标头:
嗯,通常是您的应用程序应该读取标头,不确定您在这里的意思。
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.
我相信你需要 IIS7 以管道模式运行。请参阅这篇 msdn 文章。 查看这篇 msdn 文章
尽情享受吧!
I believe you need IIS7 running in pipeline mode. See this msdn article. See this msdn article
Enjoy!
我们可以使用反射并可以读取响应头
We can use reflection and can be read the response headers