0

フォームベースの認証を使用して JBOSS で正常に動作する Web プロジェクトがあります。しかし、同じものを websphere 7 にデプロイすると、HTTP 500 エラーが発生します。

私のweb.xml

<display-name>Test</display-name>
<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>*.action</url-pattern>
</filter-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>
<listener>
    <listener-class>org.apache.tiles.web.startup.TilesListener</listener-class>
</listener>
<context-param>
    <param-name>org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG</param-name>
    <param-value>/WEB-INF/tiles.xml</param-value>
</context-param>
<security-constraint>
    <web-resource-collection>
        <web-resource-name>test_actions</web-resource-name>
        <description></description>
        <url-pattern>*.action</url-pattern>
        <http-method>GET</http-method>
        <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint>
        <description></description>
        <role-name>testuser</role-name>
    </auth-constraint>
    <user-data-constraint>
        <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
  </security-constraint>
  <security-role>
    <description></description>
    <role-name>testuser</role-name>
  </security-role>

<login-config>
    <auth-method>FORM</auth-method>
    <realm-name>Default</realm-name>
    <form-login-config>
        <form-login-page>/login_form.jsp</form-login-page>
        <form-error-page>/login_error.jsp</form-error-page>
    </form-login-config>
</login-config>

index.html

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>TEST</title>
</head>
<body onload="document.MainForm.submit();">
    <form action="welcomeAction.action" method="post" id="MainForm" name="MainForm">
</form>
</body>
</html>

RolesInterceptorを拡張するインターセプターAuthorizationInterceptorがあり、このインターセプターは実際に DB にユーザーが存在することを確認しますrequest.getUserPrincipal().getName()はユーザーIDを取得するために使用されます。ここに到達します。

Websphere では、グローバル セキュリティを有効にしました。Websphere LoginForm の例は正常に動作します。j_security_checkフィルターを自分で修正する必要がありますか? または websphere webcontainer がこれを処理します。(LoginForm では、LoginFilter コードを見てきました)。しかし、websphere webcontainer は jboss や tomcat などの j_security_check を処理する必要があると思います..

4

1 に答える 1

0

カスタム フォームを作成し、j_security_check に送信する必要があります。デフォルトでは、WebSphere はこれを処理しません。参照: http://www.redbooks.ibm.com/abstracts/tips0220.html?Open

于 2012-07-19T19:10:23.453 に答える