在JSP中,想要使用pageContext.forward并处理结果

发布于 2024-10-31 20:50:23 字数 324 浏览 0 评论 0原文

我正在尝试将 JSP 页面注入到未命名的企业 Web 应用程序中,以获取 servlet 提供的 SSO 令牌的值。目标是重定向回引荐来源网址。用户不必输入任何登录信息,因为这是通过 Kerberos 和 http 请求的协商标头完成的。

我现在采取的方法是使用

    pageContext.forward("logon");   

将请求转发到登录 servlet 并获取令牌,但我不知道此后该做什么。

令牌以元素内的 CDATA 形式存在。在返回推荐人之前,我需要对转发结果进行一些处理,但不知道如何处理。任何帮助将不胜感激。

I'm trying to inject a JSP page into an unnamed enterprise web-application to get the value of a SSO token provided by a servlet. The goal is to redirect back to the referrer. The user does not have to enter any logon information, as this is done with Kerberos and the negotiate header of the http request.

The approach i'm taking now is using

    pageContext.forward("logon");   

to have the request forwarded to the logon servlet and get the token, but am at a loss as to what to do after this.

The token is in the form of CDATA inside a element. I need to do some processing on the result of my forward before returning to the referrer, but am at a loss as to how. Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文