source: prototipo_portal_2018/WebContent/WEB-INF/web.xml

Last change on this file was 9631190, checked in by antonioaraujob <antonioaraujob@…>, 9 years ago

Se agregan los archivos del portal de prueba al control de versiones.

  • Property mode set to 100644
File size: 990 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
3  <display-name>pruebaservicioweb</display-name>
4  <welcome-file-list>
5    <welcome-file>index.html</welcome-file>
6    <welcome-file>index.htm</welcome-file>
7    <welcome-file>index.jsp</welcome-file>
8    <welcome-file>default.html</welcome-file>
9    <welcome-file>default.htm</welcome-file>
10    <welcome-file>default.jsp</welcome-file>
11  </welcome-file-list>
12 
13        <security-constraint>
14    <web-resource-collection>
15        <web-resource-name>pruebaservicioweb</web-resource-name>
16        <url-pattern>/*</url-pattern>
17    </web-resource-collection>
18        <user-data-constraint>
19                <transport-guarantee>CONFIDENTIAL</transport-guarantee>
20        </user-data-constraint>
21        </security-constraint>
22 
23</web-app>
Note: See TracBrowser for help on using the repository browser.