source: OpenRLabs-Git/guacamole-websocket/src/main/webapp/WEB-INF/web.xml

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100644
File size: 1003 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<web-app version="2.5"
4    xmlns="http://java.sun.com/xml/ns/javaee"
5    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
7                        http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
8
9    <!-- Basic config -->
10    <welcome-file-list>
11        <welcome-file>index.html</welcome-file>
12    </welcome-file-list>
13
14
15    <!-- Guacamole Tunnel WebSocket -->
16    <servlet>
17        <description>tunnel-websocket</description>
18        <servlet-name>tunnel-websocket</servlet-name>
19        <servlet-class>
20                org.apache.guacamole.net.websocket.WebSocket
21        </servlet-class>
22        <!--
23        <init-param>
24            <param-name>debug</param-name>
25            <param-value>0</param-value>
26        </init-param>   
27        -->
28    </servlet>
29<!--
30    <servlet-mapping>
31        <servlet-name>tunnel-websocket</servlet-name>
32        <url-pattern>/tunnel-websocket</url-pattern>
33    </servlet-mapping>
34-->
35</web-app>
Note: See TracBrowser for help on using the repository browser.