websphere 和 tomcat 之间共享安全

发布于 2024-11-30 09:44:00 字数 411 浏览 0 评论 0原文

目前,WebSphere 具有一些 EJB 和基于 DB 定义的自定义用户注册表。

现在我正在 Tomcat 上规划新应用程序,该应用程序:

  • 与现有 WebSphere 具有相同的用户,
  • 共享对同一数据库的访问
  • 必须作为登录用户从 WebSphere 调用 EJB(调用结果取决于调用用户)

    1. 是否可以从 Tomcat 安全地调用 WebSphere EJB? 可能是的,但是如果:

数据库中的用户具有散列密码,用户登录期间的 Tomcat 应用程序可以散列输入的密码并确定是否有效,但现在如果我调用 WebSphere EJB,我假设我应该提供密码(到 InitialContext?),但没有人知道吗?

有人知道如何解决吗?

Currently have WebSphere with some EJBs and defined custom user registry based on DB.

Now I am planning new application on Tomcat, which :

  • has same users as existing WebSphere
  • share access to the same DB
  • has to call EJB from WebSphere as logged user (results of call depend of calling user )

    1. Is it possible to call WebSphere EJB from Tomcat with security ?
      Probably yes, but if :

Users in DB have hashed passwords, Tomcat app during user login can hash entered password and determine if valid, but now if I call WebSphere EJB, I assume I should provide password (to InitialContext?), but no one knows it?

Does Anyone have idea how to solve it?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那小子欠揍 2024-12-07 09:44:00

肮脏而快速:在 Tomcat 会话中存储未散列的密码并使用它。切记不要序列化!

替代方案:探索 kerberos 的用途。我对它不是很熟悉,但它的目标似乎与您正在寻找的完全相同(kerberos 集中身份验证并返回允许访问资源的票证)。抱歉我不能说得更具体。

Dirt and quick: Store unhashed password in Tomcat session and use it. Remember not to serialize it!

Alternative: Explore what kerberos does. I am not very familiar with it, but its objective seems exactly the same that you are looking for (kerberos centralices authentication and returns ticket that give access to the resources). Sorry I cannot be more specific.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文