【发布时间】:2011-11-16 20:46:14
【问题描述】:
我们的应用程序正在 WebLogic 上运行。
WebLogic 有时会重定向到 Apache 以允许用户访问 PDF 文件。
这发生在:
final String encodedURL = resp.encodeRedirectURL(redirectURL);
resp.sendRedirect(encodedURL); //ok here because redirection to other server and not to itself
问题是 WebLogic 将 JSESSIONID 附加到 URL 并且 apache 无法提供 PDF 文档。
如何防止 WebLogic 将 JSESSIONID 添加到 URL?
【问题讨论】:
标签: apache servlets weblogic httpsession jsessionid