1

我似乎无法让 Weblogic 的会话复制工作。我在 web.xml 中进行了设置,以便所有请求都需要管理员凭据:

<security-constraint>
    <web-resource-collection>
        <web-resource-name>redirect</web-resource-name>
        <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
        <role-name>Admin</role-name>
    </auth-constraint>
    <user-data-constraint>
        <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
</security-constraint>
<login-config>
    <auth-method>FORM</auth-method>
    <realm-name>myrealm</realm-name>
    <form-login-config>
        <form-login-page>
            /login.jsp
        </form-login-page>
        <form-error-page>
            /login.jsp
        </form-error-page>
    </form-login-config>
</login-config>

在我的 weblogic.xml 中,我设置了:

<session-descriptor>
    <persistent-store-type>replicated_if_clustered</persistent-store-type>
</session-descriptor>

我的测试用例是两台托管服务器。

  1. 导航到我的网页。
  2. 关闭一台托管服务器。(我当前连接的那个)
  3. 发生故障转移,我被要求提供我的凭据。

我希望故障转移能够顺利进行,而无需我重新登录。

4

1 回答 1

0

尝试在 Weblogic 管理控制台中启用会话复制选项...

登录到管理员

console -> goto cluster -> goto advanced -> tick Session replication.

注意:触摸 .xml 文件来更改任何属性不是一个好习惯......

于 2014-01-02T03:45:44.680 回答