我有一个使用 JSP 和 Servlet 并部署在 IBM-WASCE 2.1 上的应用程序。我希望应用程序使用 SSL 进行登录。根据文档,我在web.xml中添加了以下几行
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<!-- Usual servlet mapping code -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Login</web-resource-name>
<url-pattern>/login.jsp</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
但是我收到一个错误消息,
web 应用程序 default/foo/1.0/car 的 web.xml 包含安全元素,但未提供 Geronimo 部署计划或不包含相应配置安全性所需的元素。
如何从这里开始?要向文件geronimo-web.xml添加哪些元素?