annotate flys-client/src/main/webapp/WEB-INF/web.xml @ 2903:f05f5586f5fd

Added chart and export titles for sq relation in MINFO flys-client/trunk@4662 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 14 Jun 2012 13:38:35 +0000
parents 984a9ad71935
children e740c43e6f5b
rev   line source
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
2 <!DOCTYPE web-app
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
3 PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
4 "http://java.sun.com/dtd/web-app_2_3.dtd">
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
5
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
6 <web-app>
1370
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
7
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
8 <context-param>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
9 <param-name>server-url</param-name>
2903
f05f5586f5fd Added chart and export titles for sq relation in MINFO
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2891
diff changeset
10 <param-value>http://localhost:1610</param-value>
1370
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
11 </context-param>
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
12
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
13 <!-- Servlets -->
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
14 <servlet>
1366
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
15 <servlet-name>BaseServlet</servlet-name>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
16 <servlet-class>de.intevation.flys.client.server.BaseServlet</servlet-class>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
17
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
18 <init-param>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
19 <param-name>log4j-properties</param-name>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
20 <param-value>/WEB-INF/log4j.properties</param-value>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
21 </init-param>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
22
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
23 <load-on-startup>1</load-on-startup>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
24 </servlet>
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
25
d0eb2202ffbe Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1365
diff changeset
26 <servlet>
2
bc5d4d2297b9 Introduced a service that retrieves the user who is currently logged in. This user is displayed in the menu bar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1
diff changeset
27 <servlet-name>user</servlet-name>
bc5d4d2297b9 Introduced a service that retrieves the user who is currently logged in. This user is displayed in the menu bar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1
diff changeset
28 <servlet-class>de.intevation.flys.client.server.UserServiceImpl</servlet-class>
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
29 </servlet>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
30
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
31 <servlet-mapping>
2
bc5d4d2297b9 Introduced a service that retrieves the user who is currently logged in. This user is displayed in the menu bar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1
diff changeset
32 <servlet-name>user</servlet-name>
bc5d4d2297b9 Introduced a service that retrieves the user who is currently logged in. This user is displayed in the menu bar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1
diff changeset
33 <url-pattern>/flys/user</url-pattern>
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
34 </servlet-mapping>
1
0e22a19852e7 Removed useless auto generated classes and added first ui elements with i18n support.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 0
diff changeset
35
11
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
36 <servlet>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
37 <servlet-name>artifact</servlet-name>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
38 <servlet-class>de.intevation.flys.client.server.ArtifactServiceImpl</servlet-class>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
39 </servlet>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
40
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
41 <servlet-mapping>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
42 <servlet-name>artifact</servlet-name>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
43 <url-pattern>/flys/artifact</url-pattern>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
44 </servlet-mapping>
6aeb4072eeb4 Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2
diff changeset
45
26
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
46 <servlet>
221
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
47 <servlet-name>getartifact</servlet-name>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
48 <servlet-class>de.intevation.flys.client.server.GetArtifactServiceImpl</servlet-class>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
49 </servlet>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
50
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
51 <servlet-mapping>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
52 <servlet-name>getartifact</servlet-name>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
53 <url-pattern>/flys/getartifact</url-pattern>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
54 </servlet-mapping>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
55
1427
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
56 <servlet>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
57 <servlet-name>cross-section-km</servlet-name>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
58 <servlet-class>de.intevation.flys.client.server.CrossSectionKMServiceImpl</servlet-class>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
59 </servlet>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
60
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
61 <servlet-mapping>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
62 <servlet-name>cross-section-km</servlet-name>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
63 <url-pattern>/flys/cross-section-km</url-pattern>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
64 </servlet-mapping>
221
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
65
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
66 <servlet>
26
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
67 <servlet-name>create-collection</servlet-name>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
68 <servlet-class>de.intevation.flys.client.server.CreateCollectionServiceImpl</servlet-class>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
69 </servlet>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
70
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
71 <servlet-mapping>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
72 <servlet-name>create-collection</servlet-name>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
73 <url-pattern>/flys/create-collection</url-pattern>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
74 </servlet-mapping>
c19985f75118 Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 11
diff changeset
75
29
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
76 <servlet>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
77 <servlet-name>rivers</servlet-name>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
78 <servlet-class>de.intevation.flys.client.server.RiverServiceImpl</servlet-class>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
79 </servlet>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
80
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
81 <servlet-mapping>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
82 <servlet-name>rivers</servlet-name>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
83 <url-pattern>/flys/rivers</url-pattern>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
84 </servlet-mapping>
44c63e7fd0d0 Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 26
diff changeset
85
32
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
86 <servlet>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
87 <servlet-name>forward</servlet-name>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
88 <servlet-class>de.intevation.flys.client.server.StepForwardServiceImpl</servlet-class>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
89 </servlet>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
90
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
91 <servlet-mapping>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
92 <servlet-name>forward</servlet-name>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
93 <url-pattern>/flys/forward</url-pattern>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
94 </servlet-mapping>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
95
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
96 <servlet>
851
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
97 <servlet-name>feed</servlet-name>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
98 <servlet-class>de.intevation.flys.client.server.FeedServiceImpl</servlet-class>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
99 </servlet>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
100
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
101 <servlet-mapping>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
102 <servlet-name>feed</servlet-name>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
103 <url-pattern>/flys/feed</url-pattern>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
104 </servlet-mapping>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
105
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
106 <servlet>
2489
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
107 <servlet-name>fixings-overview</servlet-name>
2492
e64e0d094843 Fixed incorrect servlet mapping.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2489
diff changeset
108 <servlet-class>de.intevation.flys.client.server.FixingsOverviewServiceImpl</servlet-class>
2489
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
109 </servlet>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
110
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
111 <servlet-mapping>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
112 <servlet-name>fixings-overview</servlet-name>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
113 <url-pattern>/flys/fixings-overview</url-pattern>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
114 </servlet-mapping>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
115
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
116 <servlet>
32
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
117 <servlet-name>advance</servlet-name>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
118 <servlet-class>de.intevation.flys.client.server.AdvanceServiceImpl</servlet-class>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
119 </servlet>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
120
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
121 <servlet-mapping>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
122 <servlet-name>advance</servlet-name>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
123 <url-pattern>/flys/advance</url-pattern>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
124 </servlet-mapping>
88c530c25968 Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 29
diff changeset
125
70
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
126 <servlet>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
127 <servlet-name>add-artifact</servlet-name>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
128 <servlet-class>de.intevation.flys.client.server.AddArtifactServiceImpl</servlet-class>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
129 </servlet>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
130
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
131 <servlet-mapping>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
132 <servlet-name>add-artifact</servlet-name>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
133 <url-pattern>/flys/add-artifact</url-pattern>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
134 </servlet-mapping>
97
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
135
99
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
136 <servlet>
905
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
137 <servlet-name>load-artifact</servlet-name>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
138 <servlet-class>de.intevation.flys.client.server.LoadArtifactServiceImpl</servlet-class>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
139 </servlet>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
140
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
141 <servlet-mapping>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
142 <servlet-name>load-artifact</servlet-name>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
143 <url-pattern>/flys/load-artifact</url-pattern>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
144 </servlet-mapping>
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
145
478a571f1f94 Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 865
diff changeset
146 <servlet>
99
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
147 <servlet-name>describe-collection</servlet-name>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
148 <servlet-class>de.intevation.flys.client.server.DescribeCollectionServiceImpl</servlet-class>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
149 </servlet>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
150
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
151 <servlet-mapping>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
152 <servlet-name>describe-collection</servlet-name>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
153 <url-pattern>/flys/describe-collection</url-pattern>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
154 </servlet-mapping>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
155
97
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
156 <servlet>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
157 <servlet-name>user-collections</servlet-name>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
158 <servlet-class>de.intevation.flys.client.server.UserCollectionsServiceImpl</servlet-class>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
159 </servlet>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
160
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
161 <servlet-mapping>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
162 <servlet-name>user-collections</servlet-name>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
163 <url-pattern>/flys/user-collections</url-pattern>
0bec0112c8b3 Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 78
diff changeset
164 </servlet-mapping>
219
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
165
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
166 <servlet>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
167 <servlet-name>distanceinfo</servlet-name>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
168 <servlet-class>de.intevation.flys.client.server.DistanceInfoServiceImpl</servlet-class>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
169 </servlet>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
170
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
171 <servlet-mapping>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
172 <servlet-name>distanceinfo</servlet-name>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
173 <url-pattern>/flys/distanceinfo</url-pattern>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
174 </servlet-mapping>
7523faf567e5 Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 99
diff changeset
175
245
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
176 <servlet>
1600
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
177 <servlet-name>dischargeinfo</servlet-name>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
178 <servlet-class>de.intevation.flys.client.server.DischargeInfoServiceImpl</servlet-class>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
179 </servlet>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
180
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
181 <servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
182 <servlet-name>dischargeinfo</servlet-name>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
183 <url-pattern>/flys/dischargeinfo</url-pattern>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
184 </servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
185
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
186 <servlet>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
187 <servlet-name>DischargeInfoXML</servlet-name>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
188 <servlet-class>de.intevation.flys.client.server.DischargeInfoXML</servlet-class>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
189 </servlet>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
190
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
191 <servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
192 <servlet-name>DischargeInfoXML</servlet-name>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
193 <url-pattern>/flys/dischargeinfoxml</url-pattern>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
194 </servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
195
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
196 <servlet>
262
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
197 <servlet-name>meta-data</servlet-name>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
198 <servlet-class>de.intevation.flys.client.server.MetaDataServiceImpl</servlet-class>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
199 </servlet>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
200
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
201 <servlet-mapping>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
202 <servlet-name>meta-data</servlet-name>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
203 <url-pattern>/flys/meta-data</url-pattern>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
204 </servlet-mapping>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
205
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
206 <servlet>
245
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
207 <servlet-name>mainvalues</servlet-name>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
208 <servlet-class>de.intevation.flys.client.server.WQInfoServiceImpl</servlet-class>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
209 </servlet>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
210
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
211 <servlet-mapping>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
212 <servlet-name>mainvalues</servlet-name>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
213 <url-pattern>/flys/mainvalues</url-pattern>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
214 </servlet-mapping>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
215
256
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
216 <servlet>
2466
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
217 <servlet-name>gaugeinfo</servlet-name>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
218 <servlet-class>de.intevation.flys.client.server.GaugeInfoServiceImpl</servlet-class>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
219 </servlet>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
220
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
221 <servlet-mapping>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
222 <servlet-name>gaugeinfo</servlet-name>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
223 <url-pattern>/flys/gaugeinfo</url-pattern>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
224 </servlet-mapping>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
225
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
226 <servlet>
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
227 <servlet-name>csv</servlet-name>
256
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
228 <servlet-class>de.intevation.flys.client.server.CSVExportServiceImpl</servlet-class>
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
229 </servlet>
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
230
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
231 <servlet-mapping>
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
232 <servlet-name>csv</servlet-name>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
233 <url-pattern>/flys/csv</url-pattern>
256
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
234 </servlet-mapping>
78
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
235
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
236 <servlet>
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
237 <servlet-name>ChartOutputService</servlet-name>
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
238 <servlet-class>de.intevation.flys.client.server.ChartOutputServiceImpl</servlet-class>
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
239 </servlet>
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
240
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
241 <servlet-mapping>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
242 <servlet-name>ChartOutputService</servlet-name>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
243 <url-pattern>/flys/chart</url-pattern>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
244 </servlet-mapping>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
245
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
246 <!-- MapFish Print -->
1370
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
247 <servlet>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
248 <servlet-name>MapOutputService</servlet-name>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
249 <servlet-class>de.intevation.flys.client.server.MapOutputServiceImpl</servlet-class>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
250 </servlet>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
251
78
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
252 <servlet-mapping>
1365
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
253 <servlet-name>MapOutputService</servlet-name>
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
254 <url-pattern>/flys/map</url-pattern>
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
255 </servlet-mapping>
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
256
2519
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
257 <servlet>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
258 <servlet-name>mapfish.print</servlet-name>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
259 <servlet-class>org.mapfish.print.servlet.MapPrinterServlet</servlet-class>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
260 <init-param>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
261 <param-name>config</param-name>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
262 <param-value>WEB-INF/config.yaml</param-value>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
263 </init-param>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
264 </servlet>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
265
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
266 <servlet-mapping>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
267 <servlet-name>mapfish.print</servlet-name>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
268 <url-pattern>/flys/mapfish-print/*</url-pattern>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
269 </servlet-mapping>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
270
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
271 <!-- Servlet to bridge between MapFish Print and FLYS3 -->
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
272 <servlet>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
273 <servlet-name>MapPrintService</servlet-name>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
274 <servlet-class>de.intevation.flys.client.server.MapPrintServiceImpl</servlet-class>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
275 <init-param>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
276 <param-name>config</param-name>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
277 <param-value>WEB-INF/config.yaml</param-value>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
278 </init-param>
2519
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
279 <init-param>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
280 <param-name>print-url</param-name>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
281 <param-value>http://localhost:8888/flys/mapfish-print</param-value>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
282 </init-param>
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
283 </servlet>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
284
1365
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
285 <servlet-mapping>
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
286 <servlet-name>MapPrintService</servlet-name>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
287 <url-pattern>/flys/map-print</url-pattern>
78
9ca5160cf080 Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 70
diff changeset
288 </servlet-mapping>
70
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
289
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
290
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
291 <servlet>
2488
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
292 <servlet-name>FixingsKMChartService</servlet-name>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
293 <servlet-class>de.intevation.flys.client.server.FixingsKMChartServiceImpl</servlet-class>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
294 </servlet>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
295
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
296 <servlet-mapping>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
297 <servlet-name>FixingsKMChartService</servlet-name>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
298 <url-pattern>/flys/fixings-km-chart</url-pattern>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
299 </servlet-mapping>
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
300
88d44cae592e Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2466
diff changeset
301 <servlet>
782
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
302 <servlet-name>DistanceInfoXML</servlet-name>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
303 <servlet-class>de.intevation.flys.client.server.DistanceInfoXML</servlet-class>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
304 </servlet>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
305
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
306 <servlet-mapping>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
307 <servlet-name>DistanceInfoXML</servlet-name>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
308 <url-pattern>/flys/distanceinfoxml</url-pattern>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
309 </servlet-mapping>
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
310
4a7ece57f44c #159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 603
diff changeset
311 <servlet>
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
312 <servlet-name>ExportService</servlet-name>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
313 <servlet-class>de.intevation.flys.client.server.ExportServiceImpl</servlet-class>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
314 </servlet>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
315
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
316 <servlet-mapping>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
317 <servlet-name>ExportService</servlet-name>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
318 <url-pattern>/flys/export</url-pattern>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
319 </servlet-mapping>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
320
526
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
321 <servlet>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
322 <servlet-name>CollectionAttributeService</servlet-name>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
323 <servlet-class>de.intevation.flys.client.server.CollectionAttributeServiceImpl</servlet-class>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
324 </servlet>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
325
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
326 <servlet-mapping>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
327 <servlet-name>CollectionAttributeService</servlet-name>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
328 <url-pattern>/flys/collection-attribute</url-pattern>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
329 </servlet-mapping>
96e60e0a4345 Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 274
diff changeset
330
535
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
331 <servlet>
1285
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
332 <servlet-name>CollectionItemAttributeService</servlet-name>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
333 <servlet-class>de.intevation.flys.client.server.CollectionItemAttributeServiceImpl</servlet-class>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
334 </servlet>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
335
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
336 <servlet-mapping>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
337 <servlet-name>CollectionItemAttributeService</servlet-name>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
338 <url-pattern>/flys/collection-item-attribute</url-pattern>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
339 </servlet-mapping>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
340
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
341 <servlet>
535
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
342 <servlet-name>ChartInfoService</servlet-name>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
343 <servlet-class>de.intevation.flys.client.server.ChartInfoServiceImpl</servlet-class>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
344 </servlet>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
345
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
346 <servlet-mapping>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
347 <servlet-name>ChartInfoService</servlet-name>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
348 <url-pattern>/flys/chart-info</url-pattern>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
349 </servlet-mapping>
017371801479 Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 526
diff changeset
350
598
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
351 <servlet>
603
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
352 <servlet-name>ReportService</servlet-name>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
353 <servlet-class>de.intevation.flys.client.server.ReportServiceImpl</servlet-class>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
354 </servlet>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
355
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
356 <servlet-mapping>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
357 <servlet-name>ReportService</servlet-name>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
358 <url-pattern>/flys/report</url-pattern>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
359 </servlet-mapping>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
360
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
361 <servlet>
598
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
362 <servlet-name>SetCollectionNameService</servlet-name>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
363 <servlet-class>de.intevation.flys.client.server.SetCollectionNameServiceImpl</servlet-class>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
364 </servlet>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
365
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
366 <servlet-mapping>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
367 <servlet-name>SetCollectionNameService</servlet-name>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
368 <url-pattern>/flys/set-collectionname</url-pattern>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
369 </servlet-mapping>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
370
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
371 <servlet>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
372 <servlet-name>SetCollectionTTLService</servlet-name>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
373 <servlet-class>de.intevation.flys.client.server.SetCollectionTTLServiceImpl</servlet-class>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
374 </servlet>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
375
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
376 <servlet-mapping>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
377 <servlet-name>SetCollectionTTLService</servlet-name>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
378 <url-pattern>/flys/set-collectionttl</url-pattern>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
379 </servlet-mapping>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
380
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
381 <servlet>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
382 <servlet-name>DeleteCollectionService</servlet-name>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
383 <servlet-class>de.intevation.flys.client.server.DeleteCollectionServiceImpl</servlet-class>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
384 </servlet>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
385
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
386 <servlet-mapping>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
387 <servlet-name>DeleteCollectionService</servlet-name>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
388 <url-pattern>/flys/delete-collection</url-pattern>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
389 </servlet-mapping>
031357c3e23e Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 535
diff changeset
390
828
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
391 <servlet>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
392 <servlet-name>MapInfoService</servlet-name>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
393 <servlet-class>de.intevation.flys.client.server.MapInfoServiceImpl</servlet-class>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
394 </servlet>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
395
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
396 <servlet-mapping>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
397 <servlet-name>MapInfoService</servlet-name>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
398 <url-pattern>/flys/map-info</url-pattern>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
399 </servlet-mapping>
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
400
865
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
401 <servlet>
1400
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
402 <servlet-name>getfeatureinfo</servlet-name>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
403 <servlet-class>de.intevation.flys.client.server.GFIServiceImpl</servlet-class>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
404 </servlet>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
405
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
406 <servlet-mapping>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
407 <servlet-name>getfeatureinfo</servlet-name>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
408 <url-pattern>/flys/getfeatureinfo</url-pattern>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
409 </servlet-mapping>
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
410
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
411 <servlet>
1408
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
412 <servlet-name>getcapabilities</servlet-name>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
413 <servlet-class>de.intevation.flys.client.server.GCServiceImpl</servlet-class>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
414 </servlet>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
415
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
416 <servlet-mapping>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
417 <servlet-name>getcapabilities</servlet-name>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
418 <url-pattern>/flys/getcapabilities</url-pattern>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
419 </servlet-mapping>
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
420
5b5a20e4c4e5 Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1400
diff changeset
421 <servlet>
865
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
422 <servlet-name>DescribeArtifactService</servlet-name>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
423 <servlet-class>de.intevation.flys.client.server.DescribeArtifactServiceImpl</servlet-class>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
424 </servlet>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
425
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
426 <servlet-mapping>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
427 <servlet-name>DescribeArtifactService</servlet-name>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
428 <url-pattern>/flys/describe</url-pattern>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
429 </servlet-mapping>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
430
1319
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
431 <servlet>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
432 <servlet-name>remove-artifact</servlet-name>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
433 <servlet-class>de.intevation.flys.client.server.RemoveArtifactServiceImpl</servlet-class>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
434 </servlet>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
435
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
436 <servlet-mapping>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
437 <servlet-name>remove-artifact</servlet-name>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
438 <url-pattern>/flys/remove-artifact</url-pattern>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
439 </servlet-mapping>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
440
2455
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
441 <servlet>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
442 <servlet-name>GetWMSUrls</servlet-name>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
443 <servlet-class>de.intevation.flys.client.server.MapUrlServiceImpl</servlet-class>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
444 </servlet>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
445
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
446 <servlet-mapping>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
447 <servlet-name>GetWMSUrls</servlet-name>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
448 <url-pattern>/flys/map-urls</url-pattern>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
449 </servlet-mapping>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
450
2494
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
451 <servlet>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
452 <servlet-name>FileUpload</servlet-name>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
453 <servlet-class>de.intevation.flys.client.server.FileUploadServiceImpl</servlet-class>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
454 </servlet>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
455
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
456 <servlet-mapping>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
457 <servlet-name>FileUpload</servlet-name>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
458 <url-pattern>/flys/fileupload</url-pattern>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
459 </servlet-mapping>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
460
2540
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
461 <servlet>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
462 <servlet-name>themelisting</servlet-name>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
463 <servlet-class>de.intevation.flys.client.server.ThemeListingServiceImpl</servlet-class>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
464 </servlet>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
465
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
466 <servlet-mapping>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
467 <servlet-name>themelisting</servlet-name>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
468 <url-pattern>/flys/themelisting</url-pattern>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
469 </servlet-mapping>
e75b15818435 Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2524
diff changeset
470
2891
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
471 <filter>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
472 <filter-name>GGInAFilter</filter-name>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
473 <filter-class>de.intevation.flys.client.server.GGInAFilter</filter-class>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
474 </filter>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
475 <filter-mapping>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
476 <filter-name>GGInAFilter</filter-name>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
477 <url-pattern>/*</url-pattern>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
478 </filter-mapping>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
479
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
480 <!-- Default page to serve -->
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
481 <welcome-file-list>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
482 <welcome-file>FLYS.html</welcome-file>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
483 </welcome-file-list>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
484
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
485 </web-app>

http://dive4elements.wald.intevation.org