forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.4 KiB
108 lines
2.4 KiB
<?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"
|
|
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"
|
|
metadata-complete="false"
|
|
>
|
|
<display-name>SIPRP Fichas Clinicas</display-name>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <welcome-file-list> -->
|
|
<!-- <welcome-file>/static/html/index.html</welcome-file> -->
|
|
<!-- </welcome-file-list> -->
|
|
|
|
|
|
<!-- <servlet> -->
|
|
<!-- <servlet-name>sipr_fichas_clinicas</servlet-name> -->
|
|
<!-- <jsp-file>/login.jsp</jsp-file> -->
|
|
<!-- </servlet> -->
|
|
|
|
<!-- <servlet-mapping> -->
|
|
<!-- <servlet-name>sipr_fichas_clinicas</servlet-name> -->
|
|
<!-- <url-pattern>/login.jsp</url-pattern> -->
|
|
<!-- </servlet-mapping> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<servlet>
|
|
<servlet-name>jaxws</servlet-name>
|
|
<servlet-class>
|
|
com.sun.xml.ws.transport.http.servlet.WSSpringServlet
|
|
</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>jaxws</servlet-name>
|
|
<url-pattern>/ws</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
<servlet>
|
|
<servlet-name>jaxrs-jersey</servlet-name>
|
|
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
|
|
<init-param>
|
|
<param-name>javax.ws.rs.Application</param-name>
|
|
<param-value>shst.medicina.fichasclinicas.webservices.jaxrs.RestAppConfig</param-value>
|
|
</init-param>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
<servlet-mapping>
|
|
<servlet-name>jaxrs-jersey</servlet-name>
|
|
<url-pattern>/rs/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<listener>
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
</listener>
|
|
<context-param>
|
|
<param-name>contextConfigLocation</param-name>
|
|
<param-value>/WEB-INF/applicationContext.xml, /WEB-INF/spring-security.xml</param-value>
|
|
</context-param>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <filter> -->
|
|
<!-- <filter-name>springSecurityFilterChain</filter-name> -->
|
|
<!-- <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> -->
|
|
<!-- </filter> -->
|
|
<!-- <filter-mapping> -->
|
|
<!-- <filter-name>springSecurityFilterChain</filter-name> -->
|
|
<!-- <url-pattern>/u</url-pattern> -->
|
|
<!-- </filter-mapping> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</web-app> |