我在JBOSS中使用基于表单的身份验证工作正常。但是当我在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>
我有一个拦截器 AuthorizationInterceptor ,它扩展了 RolesInterceptor ,这个拦截器实际上检查了我们的数据库中的用户exsists request.getUserPrincipal()。getName()用于获取userid。因此,当调用 welcomeAction.action 时,它应该来到AuthorizationInterceptor,但请求永远不会到达此处。
在websphere中,我启用了全局安全性。 Websphere LoginForm示例工作正常。我是否必须自己选择 j_security_check 过滤器?或者websphere webcontainer处理这个。 (在LoginForm中我见过LoginFilter代码)。但我相信websphere webcontainer应该处理像jboss或tomcat这样的j_security_check。
答案 0 :(得分:0)
您必须创建自定义表单并提交到j_security_check。默认情况下,WebSphere不处理此问题。 请参阅:http://www.redbooks.ibm.com/abstracts/tips0220.html?Open