0
我有一個應用程序使用JSP和Servlet並部署在IBM-WASCE 2.1上。 我希望應用程序使用SSL進行登錄。基於文檔時,我添加了以下行web.xml中在部署在IBM-WASCE上的應用程序中使用SSL
<?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.xml中的web應用程序 缺省的/ foo/1.0/car包含安全性 元素,但Geronimo部署計劃 未提供或不包含 元素 必需conf相應地配置安全 。
如何從此處開始?添加到文件中的元素geronimo-web.xml?