用于查看请求和响应以及会话内容的 JSP 代码
我正在尝试调试 HTTP 会话被删除或浏览器未发回 cookie 的问题。由于我们必须处理的安全限制,我需要一个可以放在服务器上的 JSP,该 JSP 将显示请求的内容、响应和 HTTP 会话的内容。
有人有可以执行此操作的代码吗?它应该是一个独立的 JSP,我可以将其放入现有的 WAR 文件中(因此假设我只能访问默认的 Sun java 库)。
I am trying to debug an issue where either the HTTP Session is being dropped or the cookie is not being sent back by the browser. Due to the security contstraints that we have to deal with, I am left with needing a JSP That I can drop on the server that will display the contents of the Request, the Response, and the contents of the HTTP Session.
Does anyone have any code that will do this? It should be a self-contained JSP that I can drop into an existing WAR file (so assume I only have access to the default Sun java libraries).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下内容放入 jsp 文件中,您将获得所需的所有信息
Put the below in a jsp file and and you will get all the info you asked for