annotate flys-client/src/main/webapp/WEB-INF/web.xml @ 3847:f3b821735e39

Calculate the info url via i18n Don't fetch the info url from the artifact service and use i18n to calculate the url by using the official gauge and river number. flys-client/trunk@5582 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Mon, 24 Sep 2012 08:39:22 +0000
parents f84ed73311f2
children 1f5c5c714026
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>
3541
ca0db8a0e01e Revert pom.xml web.xml changes
Christian Lins <christian.lins@intevation.de>
parents: 3540
diff changeset
10 <param-value>http://localhost:8181</param-value>
2985
1f64ee424f92 Corrected broken web.xml
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2975
diff changeset
11 </context-param>
1f64ee424f92 Corrected broken web.xml
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2975
diff changeset
12
1f64ee424f92 Corrected broken web.xml
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2975
diff changeset
13 <context-param>
2972
6266dff93ed2 Use servlet context to specify the authentication method.
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2965
diff changeset
14 <param-name>authentication</param-name>
6266dff93ed2 Use servlet context to specify the authentication method.
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2965
diff changeset
15 <param-value>GGInA</param-value>
3385
9056ff5abd61 Original values for config.xml and web.xml
Christian Lins <christian.lins@intevation.de>
parents: 3384
diff changeset
16 </context-param>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
17
3477
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
18 <context-param>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
19 <param-name>features-file</param-name>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
20 <param-value>/WEB-INF/features.xml</param-value>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
21 </context-param>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
22
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
23 <context-param>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
24 <param-name>log4j-properties</param-name>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
25 <param-value>/WEB-INF/log4j.properties</param-value>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
26 </context-param>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
27
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
28 <listener>
3478
763789a9acca Rename FeatureServletContextListener and move it out of the features package
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3477
diff changeset
29 <listener-class>de.intevation.flys.client.server.BaseServletContextListener</listener-class>
3477
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
30 </listener>
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
31
2c63994ceffb Add servlet context parameters and load FeaturesServletContextListener
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3385
diff changeset
32
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
33 <!-- Servlets -->
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
34 <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
35 <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
36 <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
37 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
38
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
39 <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
40 <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
41 <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
42 </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
43
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
44 <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
45 <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
46 <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
47 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
48
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
49 <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
50 <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
51 <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
52 </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
53
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
54 <servlet>
221
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
55 <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
56 <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
57 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
58
221
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
59 <servlet-mapping>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
60 <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
61 <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
62 </servlet-mapping>
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
63
1427
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
64 <servlet>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
65 <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
66 <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
67 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
68
1427
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
69 <servlet-mapping>
60cd8c56ca58 Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1408
diff changeset
70 <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
71 <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
72 </servlet-mapping>
221
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
73
f03c34bec364 Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 219
diff changeset
74 <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
75 <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
76 <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
77 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
78
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
79 <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
80 <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
81 <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
82 </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
83
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
84 <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
85 <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
86 <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
87 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
88
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
89 <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
90 <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
91 <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
92 </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
93
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
94 <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
95 <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
96 <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
97 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
98
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
99 <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
100 <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
101 <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
102 </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
103
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
104 <servlet>
851
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
105 <servlet-name>feed</servlet-name>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
106 <servlet-class>de.intevation.flys.client.server.FeedServiceImpl</servlet-class>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
107 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
108
851
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
109 <servlet-mapping>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
110 <servlet-name>feed</servlet-name>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
111 <url-pattern>/flys/feed</url-pattern>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
112 </servlet-mapping>
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
113
aa83a6a864b4 Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 828
diff changeset
114 <servlet>
2489
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
115 <servlet-name>fixings-overview</servlet-name>
2492
e64e0d094843 Fixed incorrect servlet mapping.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2489
diff changeset
116 <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
117 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
118
2489
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
119 <servlet-mapping>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
120 <servlet-name>fixings-overview</servlet-name>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
121 <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
122 </servlet-mapping>
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
123
2a504b6d9a1b Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2488
diff changeset
124 <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
125 <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
126 <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
127 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
128
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
129 <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
130 <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
131 <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
132 </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
133
70
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
134 <servlet>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
135 <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
136 <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
137 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
138
70
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
139 <servlet-mapping>
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
140 <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
141 <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
142 </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
143
99
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
144 <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
145 <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
146 <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
147 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
148
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
149 <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
150 <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
151 <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
152 </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
153
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
154 <servlet>
99
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
155 <servlet-name>describe-collection</servlet-name>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
156 <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
157 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
158
99
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
159 <servlet-mapping>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
160 <servlet-name>describe-collection</servlet-name>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
161 <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
162 </servlet-mapping>
5c3d685546a6 Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 97
diff changeset
163
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
164 <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
165 <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
166 <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
167 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
168
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
169 <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
170 <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
171 <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
172 </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
173
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>
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 <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
176 <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
177 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
178
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
179 <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
180 <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
181 <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
182 </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
183
245
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
184 <servlet>
1600
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
185 <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
186 <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
187 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
188
1600
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
189 <servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
190 <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
191 <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
192 </servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
193
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
194 <servlet>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
195 <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
196 <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
197 </servlet>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
198
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
199 <servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
200 <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
201 <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
202 </servlet-mapping>
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
203
67468c90ca68 Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1427
diff changeset
204 <servlet>
262
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
205 <servlet-name>meta-data</servlet-name>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
206 <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
207 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
208
262
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
209 <servlet-mapping>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
210 <servlet-name>meta-data</servlet-name>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
211 <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
212 </servlet-mapping>
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
213
44a340c9becc Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 256
diff changeset
214 <servlet>
245
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
215 <servlet-name>mainvalues</servlet-name>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
216 <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
217 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
218
245
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
219 <servlet-mapping>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
220 <servlet-name>mainvalues</servlet-name>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
221 <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
222 </servlet-mapping>
1e73d5a4859c Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 221
diff changeset
223
256
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
224 <servlet>
2466
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
225 <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
226 <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
227 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
228
2466
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
229 <servlet-mapping>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
230 <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
231 <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
232 </servlet-mapping>
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
233
52a98e1653c1 Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2455
diff changeset
234 <servlet>
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
235 <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
236 <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
237 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
238
256
5e1c1b7d6516 Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 245
diff changeset
239 <servlet-mapping>
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
240 <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
241 <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
242 </servlet-mapping>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
243
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
244 <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
245 <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
246 <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
247 </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
248
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
249 <servlet-mapping>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
250 <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
251 <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
252 </servlet-mapping>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
253
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
254 <!-- MapFish Print -->
1370
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
255 <servlet>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
256 <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
257 <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
258 </servlet>
9085cffbb7c4 Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1366
diff changeset
259
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
260 <servlet-mapping>
1365
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
261 <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
262 <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
263 </servlet-mapping>
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
264
2519
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
265 <servlet>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
266 <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
267 <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
268 <init-param>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
269 <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
270 <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
271 </init-param>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
272 </servlet>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
273
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
274 <servlet-mapping>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
275 <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
276 <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
277 </servlet-mapping>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
278
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
279 <!-- 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
280 <servlet>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
281 <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
282 <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
283 <init-param>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
284 <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
285 <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
286 </init-param>
2519
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
287 <init-param>
427df4e81af0 Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2502
diff changeset
288 <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
289 <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
290 </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
291 </servlet>
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
292
1365
4c65c5b60a86 First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1319
diff changeset
293 <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
294 <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
295 <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
296 </servlet-mapping>
70
493efc8e4e28 Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 32
diff changeset
297
2502
328aa273ef3b Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 2496
diff changeset
298
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
299 <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
300 <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
301 <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
302 </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
303
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
304 <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
305 <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
306 <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
307 </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
308
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
309 <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
310 <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
311 <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
312 </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
313
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
314 <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
315 <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
316 <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
317 </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
318
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
319 <servlet>
274
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
320 <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
321 <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
322 </servlet>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
323
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
324 <servlet-mapping>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
325 <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
326 <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
327 </servlet-mapping>
71a7533555d0 Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 262
diff changeset
328
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
329 <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
330 <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
331 <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
332 </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
333
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
334 <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
335 <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
336 <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
337 </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
338
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
339 <servlet>
1285
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
340 <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
341 <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
342 </servlet>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
343
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
344 <servlet-mapping>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
345 <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
346 <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
347 </servlet-mapping>
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
348
0f3b19df1880 Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 905
diff changeset
349 <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
350 <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
351 <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
352 </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
353
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
354 <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
355 <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
356 <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
357 </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
358
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
359 <servlet>
603
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
360 <servlet-name>ReportService</servlet-name>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
361 <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
362 </servlet>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
363
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
364 <servlet-mapping>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
365 <servlet-name>ReportService</servlet-name>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
366 <url-pattern>/flys/report</url-pattern>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
367 </servlet-mapping>
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
368
8cb98fa4987f Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 598
diff changeset
369 <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
370 <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
371 <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
372 </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
373
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-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
375 <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
376 <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
377 </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
378
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>
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 <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
381 <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
382 </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
383
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-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
385 <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
386 <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
387 </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
388
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>
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 <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
391 <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
392 </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
393
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
394 <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
395 <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
396 <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
397 </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
398
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
399 <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
400 <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
401 <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
402 </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
403
910b03de6857 Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 782
diff changeset
404 <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
405 <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
406 <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
407 </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
408
865
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
409 <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
410 <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
411 <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
412 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
413
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
414 <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
415 <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
416 <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
417 </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
418
96708d81eaf6 Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1370
diff changeset
419 <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
420 <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
421 <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
422 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
423
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
424 <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
425 <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
426 <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
427 </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
428
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
429 <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
430 <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
431 <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
432 </servlet>
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
433
43f520f923a8 Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 851
diff changeset
434 <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
435 <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
436 <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
437 </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
438
1319
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
439 <servlet>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
440 <servlet-name>remove-artifact</servlet-name>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
441 <servlet-class>de.intevation.flys.client.server.RemoveArtifactServiceImpl</servlet-class>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
442 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
443
1319
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
444 <servlet-mapping>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
445 <servlet-name>remove-artifact</servlet-name>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
446 <url-pattern>/flys/remove-artifact</url-pattern>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
447 </servlet-mapping>
6ba17b628552 Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1285
diff changeset
448
2455
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
449 <servlet>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
450 <servlet-name>GetWMSUrls</servlet-name>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
451 <servlet-class>de.intevation.flys.client.server.MapUrlServiceImpl</servlet-class>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
452 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
453
2455
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
454 <servlet-mapping>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
455 <servlet-name>GetWMSUrls</servlet-name>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
456 <url-pattern>/flys/map-urls</url-pattern>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
457 </servlet-mapping>
0b7535e2e9aa Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1603
diff changeset
458
2494
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
459 <servlet>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
460 <servlet-name>FileUpload</servlet-name>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
461 <servlet-class>de.intevation.flys.client.server.FileUploadServiceImpl</servlet-class>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
462 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
463
2494
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
464 <servlet-mapping>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
465 <servlet-name>FileUpload</servlet-name>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
466 <url-pattern>/flys/fileupload</url-pattern>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
467 </servlet-mapping>
88b51e6e0334 Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2492
diff changeset
468
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
469 <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
470 <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
471 <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
472 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
473
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
474 <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
475 <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
476 <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
477 </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
478
2950
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
479 <servlet>
2953
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
480 <servlet-name>SQKMChart</servlet-name>
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
481 <servlet-class>de.intevation.flys.client.server.SQKMChartServiceImpl</servlet-class>
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
482 </servlet>
2975
2968c6ae1761 Removed trailing whitespace
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2972
diff changeset
483
2953
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
484 <servlet-mapping>
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
485 <servlet-name>SQKMChart</servlet-name>
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
486 <url-pattern>/flys/sq-km-chart</url-pattern>
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
487 </servlet-mapping>
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
488
75e9eab05ee4 Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2950
diff changeset
489 <servlet>
3705
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
490 <servlet-name>BedKMChart</servlet-name>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
491 <servlet-class>de.intevation.flys.client.server.BedKMChartServiceImpl</servlet-class>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
492 </servlet>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
493
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
494 <servlet-mapping>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
495 <servlet-name>BedKMChart</servlet-name>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
496 <url-pattern>/flys/bed-km-chart</url-pattern>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
497 </servlet-mapping>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
498
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
499 <servlet>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
500 <servlet-name>BedloadKMChart</servlet-name>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
501 <servlet-class>de.intevation.flys.client.server.BedloadKMChartServiceImpl</servlet-class>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
502 </servlet>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
503
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
504 <servlet-mapping>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
505 <servlet-name>BedloadKMChart</servlet-name>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
506 <url-pattern>/flys/bedload-km-chart</url-pattern>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
507 </servlet-mapping>
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
508
f84ed73311f2 Added UI for minfo bed quality calculation and added new services for overview
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3541
diff changeset
509 <servlet>
2950
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
510 <servlet-name>login</servlet-name>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
511 <servlet-class>de.intevation.flys.client.server.LoginServlet</servlet-class>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
512 </servlet>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
513
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
514 <servlet-mapping>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
515 <servlet-name>login</servlet-name>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
516 <url-pattern>/flys/login</url-pattern>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
517 </servlet-mapping>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
518
3523
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
519 <servlet>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
520 <servlet-name>modules</servlet-name>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
521 <servlet-class>de.intevation.flys.client.server.ModuleServiceImpl</servlet-class>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
522 </servlet>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
523
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
524 <servlet-mapping>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
525 <servlet-name>modules</servlet-name>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
526 <url-pattern>/flys/modules</url-pattern>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
527 </servlet-mapping>
6626ed6e3511 Add servlet settings for ModuleService
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 3479
diff changeset
528
2891
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
529 <filter>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
530 <filter-name>GGInAFilter</filter-name>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
531 <filter-class>de.intevation.flys.client.server.GGInAFilter</filter-class>
2950
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
532 <init-param>
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
533 <param-name>deactivate</param-name>
3541
ca0db8a0e01e Revert pom.xml web.xml changes
Christian Lins <christian.lins@intevation.de>
parents: 3540
diff changeset
534 <param-value>false</param-value>
2950
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
535 </init-param>
2891
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
536 </filter>
2950
192eddbbd4cf Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents: 2904
diff changeset
537
2891
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
538 <filter-mapping>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
539 <filter-name>GGInAFilter</filter-name>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
540 <url-pattern>/*</url-pattern>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
541 </filter-mapping>
984a9ad71935 Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2540
diff changeset
542
0
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
543 <!-- Default page to serve -->
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
544 <welcome-file-list>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
545 <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
546 </welcome-file-list>
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
547
4e8be5e7855f Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
548 </web-app>

http://dive4elements.wald.intevation.org