Mercurial > dive4elements > river
annotate flys-client/src/main/webapp/WEB-INF/web.xml @ 2972:6266dff93ed2
Use servlet context to specify the authentication method.
Using the servlet context allows to set the method globally and
not only for one servlet.
flys-client/trunk@4968 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Bjoern Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 13 Jul 2012 07:50:22 +0000 |
parents | 1fb12b05c859 |
children | 2968c6ae1761 |
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> |
2965
1fb12b05c859
Set artifact server port back to 8181
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2956
diff
changeset
|
10 <param-value>http://localhost:8181</param-value> |
2972
6266dff93ed2
Use servlet context to specify the authentication method.
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2965
diff
changeset
|
11 <param-name>authentication</param-name> |
6266dff93ed2
Use servlet context to specify the authentication method.
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2965
diff
changeset
|
12 <param-value>GGInA</param-value> |
1370
9085cffbb7c4
Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1366
diff
changeset
|
13 </context-param> |
0
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
14 |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
15 <!-- Servlets --> |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
16 <servlet> |
1366
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
17 <servlet-name>BaseServlet</servlet-name> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
18 <servlet-class>de.intevation.flys.client.server.BaseServlet</servlet-class> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
19 |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
20 <init-param> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
21 <param-name>log4j-properties</param-name> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
22 <param-value>/WEB-INF/log4j.properties</param-value> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
23 </init-param> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
24 |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
25 <load-on-startup>1</load-on-startup> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
26 </servlet> |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
27 |
d0eb2202ffbe
Added a BaseServlet that is used to setup config things like log4j.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1365
diff
changeset
|
28 <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
|
29 <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
|
30 <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
|
31 </servlet> |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
32 |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
33 <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
|
34 <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
|
35 <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
|
36 </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
|
37 |
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
|
38 <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
|
39 <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
|
40 <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
|
41 </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
|
42 |
6aeb4072eeb4
Added interfaces and a stub implementation of an artifact service the should provide the methods for communicating with the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2
diff
changeset
|
43 <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
|
44 <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
|
45 <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
|
46 </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
|
47 |
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
|
48 <servlet> |
221
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
49 <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
|
50 <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
|
51 </servlet> |
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
52 |
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
53 <servlet-mapping> |
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
54 <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
|
55 <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
|
56 </servlet-mapping> |
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
57 |
1427
60cd8c56ca58
Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1408
diff
changeset
|
58 <servlet> |
60cd8c56ca58
Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1408
diff
changeset
|
59 <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
|
60 <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
|
61 </servlet> |
60cd8c56ca58
Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1408
diff
changeset
|
62 |
60cd8c56ca58
Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1408
diff
changeset
|
63 <servlet-mapping> |
60cd8c56ca58
Registered CrossSectionKMService/client/servlet in web.xml .
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1408
diff
changeset
|
64 <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
|
65 <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
|
66 </servlet-mapping> |
221
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
67 |
f03c34bec364
Added a new service to query an artifact description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
219
diff
changeset
|
68 <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
|
69 <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
|
70 <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
|
71 </servlet> |
c19985f75118
Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
11
diff
changeset
|
72 |
c19985f75118
Implemented a service that triggers the artifact-collection creation in the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
11
diff
changeset
|
73 <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
|
74 <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
|
75 <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
|
76 </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
|
77 |
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
|
78 <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
|
79 <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
|
80 <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
|
81 </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
|
82 |
44c63e7fd0d0
Added a service to list the supported rivers of the artifact server. The FLYS instance serves a method that retrieves this list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
26
diff
changeset
|
83 <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
|
84 <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
|
85 <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
|
86 </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
|
87 |
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
|
88 <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
|
89 <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
|
90 <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
|
91 </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
|
92 |
88c530c25968
Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
29
diff
changeset
|
93 <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
|
94 <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
|
95 <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
|
96 </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
|
97 |
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
|
98 <servlet> |
851
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
99 <servlet-name>feed</servlet-name> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
100 <servlet-class>de.intevation.flys.client.server.FeedServiceImpl</servlet-class> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
101 </servlet> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
102 |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
103 <servlet-mapping> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
104 <servlet-name>feed</servlet-name> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
105 <url-pattern>/flys/feed</url-pattern> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
106 </servlet-mapping> |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
107 |
aa83a6a864b4
Added FeedService Implementation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
828
diff
changeset
|
108 <servlet> |
2489
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
109 <servlet-name>fixings-overview</servlet-name> |
2492
e64e0d094843
Fixed incorrect servlet mapping.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2489
diff
changeset
|
110 <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
|
111 </servlet> |
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
112 |
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
113 <servlet-mapping> |
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
114 <servlet-name>fixings-overview</servlet-name> |
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
115 <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
|
116 </servlet-mapping> |
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
117 |
2a504b6d9a1b
Added stub for fixings overview service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2488
diff
changeset
|
118 <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
|
119 <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
|
120 <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
|
121 </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
|
122 |
88c530c25968
Added a service for the ADVANCE operation and a service that bundles FEED and ADVANCE in a single service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
29
diff
changeset
|
123 <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
|
124 <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
|
125 <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
|
126 </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
|
127 |
70
493efc8e4e28
Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
32
diff
changeset
|
128 <servlet> |
493efc8e4e28
Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
32
diff
changeset
|
129 <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
|
130 <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
|
131 </servlet> |
493efc8e4e28
Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
32
diff
changeset
|
132 |
493efc8e4e28
Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
32
diff
changeset
|
133 <servlet-mapping> |
493efc8e4e28
Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
32
diff
changeset
|
134 <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
|
135 <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
|
136 </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
|
137 |
99
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
138 <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
|
139 <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
|
140 <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
|
141 </servlet> |
478a571f1f94
Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
865
diff
changeset
|
142 |
478a571f1f94
Refactored server code - HTTP related code moved to ArtifactsHelper and CollectionHelper which makes us able to combine Artifact and Collection protocol stuff in a single RPC service.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
865
diff
changeset
|
143 <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
|
144 <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
|
145 <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
|
146 </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
|
147 |
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
|
148 <servlet> |
99
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
149 <servlet-name>describe-collection</servlet-name> |
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
150 <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
|
151 </servlet> |
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
152 |
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
153 <servlet-mapping> |
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
154 <servlet-name>describe-collection</servlet-name> |
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
155 <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
|
156 </servlet-mapping> |
5c3d685546a6
Added a new service to describe collections.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
97
diff
changeset
|
157 |
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
|
158 <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
|
159 <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
|
160 <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
|
161 </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
|
162 |
0bec0112c8b3
Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
78
diff
changeset
|
163 <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
|
164 <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
|
165 <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
|
166 </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
|
167 |
7523faf567e5
Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
99
diff
changeset
|
168 <servlet> |
7523faf567e5
Implemented a service to fetch distance information of a river from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
99
diff
changeset
|
169 <servlet-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
|
170 <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
|
171 </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
|
172 |
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 <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
|
174 <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
|
175 <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
|
176 </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
|
177 |
245
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
178 <servlet> |
1600
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
179 <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
|
180 <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
|
181 </servlet> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
182 |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
183 <servlet-mapping> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
184 <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
|
185 <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
|
186 </servlet-mapping> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
187 |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
188 <servlet> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
189 <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
|
190 <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
|
191 </servlet> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
192 |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
193 <servlet-mapping> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
194 <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
|
195 <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
|
196 </servlet-mapping> |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
197 |
67468c90ca68
Added service to request discharge infos at a specific gauge.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1427
diff
changeset
|
198 <servlet> |
262
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
199 <servlet-name>meta-data</servlet-name> |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
200 <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
|
201 </servlet> |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
202 |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
203 <servlet-mapping> |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
204 <servlet-name>meta-data</servlet-name> |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
205 <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
|
206 </servlet-mapping> |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
207 |
44a340c9becc
Added stub for meta data service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
256
diff
changeset
|
208 <servlet> |
245
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
209 <servlet-name>mainvalues</servlet-name> |
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
210 <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
|
211 </servlet> |
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
212 |
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
213 <servlet-mapping> |
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
214 <servlet-name>mainvalues</servlet-name> |
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
215 <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
|
216 </servlet-mapping> |
1e73d5a4859c
Added new WQ info service and data structures.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
221
diff
changeset
|
217 |
256
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
245
diff
changeset
|
218 <servlet> |
2466
52a98e1653c1
Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2455
diff
changeset
|
219 <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
|
220 <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
|
221 </servlet> |
52a98e1653c1
Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2455
diff
changeset
|
222 |
52a98e1653c1
Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2455
diff
changeset
|
223 <servlet-mapping> |
52a98e1653c1
Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2455
diff
changeset
|
224 <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
|
225 <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
|
226 </servlet-mapping> |
52a98e1653c1
Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2455
diff
changeset
|
227 |
52a98e1653c1
Added a new RPC service to fetch gauge information.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
2455
diff
changeset
|
228 <servlet> |
274
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
229 <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
|
230 <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
|
231 </servlet> |
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
245
diff
changeset
|
232 |
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
245
diff
changeset
|
233 <servlet-mapping> |
274
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
234 <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
|
235 <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
|
236 </servlet-mapping> |
78
9ca5160cf080
Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
70
diff
changeset
|
237 |
9ca5160cf080
Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
70
diff
changeset
|
238 <servlet> |
9ca5160cf080
Added a service that builds up requests to retrieve chart images. Use this service to display charts in the ChartOutputTab.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
70
diff
changeset
|
239 <servlet-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
|
240 <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
|
241 </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
|
242 |
2502
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
243 <servlet-mapping> |
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
244 <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
|
245 <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
|
246 </servlet-mapping> |
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
247 |
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
248 <!-- MapFish Print --> |
1370
9085cffbb7c4
Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1366
diff
changeset
|
249 <servlet> |
9085cffbb7c4
Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1366
diff
changeset
|
250 <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
|
251 <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
|
252 </servlet> |
9085cffbb7c4
Made the URL of Artifact server available via ServletContext parameter.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1366
diff
changeset
|
253 |
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
|
254 <servlet-mapping> |
1365
4c65c5b60a86
First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1319
diff
changeset
|
255 <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
|
256 <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
|
257 </servlet-mapping> |
4c65c5b60a86
First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1319
diff
changeset
|
258 |
2519
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
259 <servlet> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
260 <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
|
261 <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
|
262 <init-param> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
263 <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
|
264 <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
|
265 </init-param> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
266 </servlet> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
267 |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
268 <servlet-mapping> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
269 <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
|
270 <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
|
271 </servlet-mapping> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
272 |
2502
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
273 <!-- 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
|
274 <servlet> |
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
275 <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
|
276 <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
|
277 <init-param> |
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
278 <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
|
279 <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
|
280 </init-param> |
2519
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
281 <init-param> |
427df4e81af0
Call MapFish Printer via servlet to evade viral GPLv3.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2502
diff
changeset
|
282 <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
|
283 <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
|
284 </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
|
285 </servlet> |
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
286 |
1365
4c65c5b60a86
First step of refactoring the map creation - implemented a MapOutputService.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1319
diff
changeset
|
287 <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
|
288 <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
|
289 <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
|
290 </servlet-mapping> |
70
493efc8e4e28
Made the AddArtifactService accessible in the web.xml
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
32
diff
changeset
|
291 |
2502
328aa273ef3b
Call MapPrinter directly and not via the MapFish Print servlet.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2496
diff
changeset
|
292 |
274
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
293 <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
|
294 <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
|
295 <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
|
296 </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
|
297 |
88d44cae592e
Added new proxy servlet to bridge the fixing km chart requests to the artefact server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
2466
diff
changeset
|
298 <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
|
299 <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
|
300 <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
|
301 </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
|
302 |
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 <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
|
304 <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
|
305 <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
|
306 </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
|
307 |
4a7ece57f44c
#159 The tables in the WQ panel for calculation 4 are now filled with data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
603
diff
changeset
|
308 <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
|
309 <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
|
310 <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
|
311 </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
|
312 |
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 <servlet> |
274
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
314 <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
|
315 <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
|
316 </servlet> |
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
317 |
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
318 <servlet-mapping> |
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
319 <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
|
320 <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
|
321 </servlet-mapping> |
71a7533555d0
Added a service to export data from the artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
262
diff
changeset
|
322 |
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
|
323 <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
|
324 <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
|
325 <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
|
326 </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
|
327 |
96e60e0a4345
Added a service stub to update/modify the attribute of a collection (used in the theme control panel).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
274
diff
changeset
|
328 <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
|
329 <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
|
330 <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
|
331 </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
|
332 |
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
|
333 <servlet> |
1285
0f3b19df1880
Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
905
diff
changeset
|
334 <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
|
335 <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
|
336 </servlet> |
0f3b19df1880
Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
905
diff
changeset
|
337 |
0f3b19df1880
Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
905
diff
changeset
|
338 <servlet-mapping> |
0f3b19df1880
Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
905
diff
changeset
|
339 <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
|
340 <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
|
341 </servlet-mapping> |
0f3b19df1880
Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
905
diff
changeset
|
342 |
0f3b19df1880
Added new service and model for collection item attributes.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
905
diff
changeset
|
343 <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
|
344 <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
|
345 <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
|
346 </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
|
347 |
017371801479
Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
526
diff
changeset
|
348 <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
|
349 <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
|
350 <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
|
351 </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
|
352 |
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
|
353 <servlet> |
603
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
354 <servlet-name>ReportService</servlet-name> |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
355 <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
|
356 </servlet> |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
357 |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
358 <servlet-mapping> |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
359 <servlet-name>ReportService</servlet-name> |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
360 <url-pattern>/flys/report</url-pattern> |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
361 </servlet-mapping> |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
362 |
8cb98fa4987f
Stub for report service.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
598
diff
changeset
|
363 <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
|
364 <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
|
365 <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
|
366 </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
|
367 |
031357c3e23e
Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
368 <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
|
369 <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
|
370 <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
|
371 </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
|
372 |
031357c3e23e
Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
373 <servlet> |
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-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
|
375 <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
|
376 </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
|
377 |
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 <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
|
379 <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
|
380 <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
|
381 </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
|
382 |
031357c3e23e
Added stubs to set the name and ttl of a collection and to delete a collection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
383 <servlet> |
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-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
|
385 <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
|
386 </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
|
387 |
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 <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
|
389 <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
|
390 <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
|
391 </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
|
392 |
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
|
393 <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
|
394 <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
|
395 <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
|
396 </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
|
397 |
910b03de6857
Added a service to get some basic spatial information used for map creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
782
diff
changeset
|
398 <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
|
399 <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
|
400 <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
|
401 </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
|
402 |
865
43f520f923a8
Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
851
diff
changeset
|
403 <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
|
404 <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
|
405 <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
|
406 </servlet> |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1370
diff
changeset
|
407 |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1370
diff
changeset
|
408 <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
|
409 <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
|
410 <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
|
411 </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
|
412 |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1370
diff
changeset
|
413 <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
|
414 <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
|
415 <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
|
416 </servlet> |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1400
diff
changeset
|
417 |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1400
diff
changeset
|
418 <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
|
419 <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
|
420 <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
|
421 </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
|
422 |
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
|
423 <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
|
424 <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
|
425 <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
|
426 </servlet> |
43f520f923a8
Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
851
diff
changeset
|
427 |
43f520f923a8
Remove the loading panel when its Artifact's background process is finished.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
851
diff
changeset
|
428 <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
|
429 <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
|
430 <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
|
431 </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
|
432 |
1319
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
433 <servlet> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
434 <servlet-name>remove-artifact</servlet-name> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
435 <servlet-class>de.intevation.flys.client.server.RemoveArtifactServiceImpl</servlet-class> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
436 </servlet> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
437 |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
438 <servlet-mapping> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
439 <servlet-name>remove-artifact</servlet-name> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
440 <url-pattern>/flys/remove-artifact</url-pattern> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
441 </servlet-mapping> |
6ba17b628552
Added RemoveArtifactService.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1285
diff
changeset
|
442 |
2455
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
443 <servlet> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
444 <servlet-name>GetWMSUrls</servlet-name> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
445 <servlet-class>de.intevation.flys.client.server.MapUrlServiceImpl</servlet-class> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
446 </servlet> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
447 |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
448 <servlet-mapping> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
449 <servlet-name>GetWMSUrls</servlet-name> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
450 <url-pattern>/flys/map-urls</url-pattern> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
451 </servlet-mapping> |
0b7535e2e9aa
Issue 508.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1603
diff
changeset
|
452 |
2494
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
453 <servlet> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
454 <servlet-name>FileUpload</servlet-name> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
455 <servlet-class>de.intevation.flys.client.server.FileUploadServiceImpl</servlet-class> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
456 </servlet> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
457 |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
458 <servlet-mapping> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
459 <servlet-name>FileUpload</servlet-name> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
460 <url-pattern>/flys/fileupload</url-pattern> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
461 </servlet-mapping> |
88b51e6e0334
Issue 657.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2492
diff
changeset
|
462 |
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
|
463 <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
|
464 <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
|
465 <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
|
466 </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
|
467 |
e75b15818435
Added a style chooser to the style editor to provide predefined styles and
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2524
diff
changeset
|
468 <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
|
469 <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
|
470 <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
|
471 </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
|
472 |
2950
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
473 <servlet> |
2953
75e9eab05ee4
Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2950
diff
changeset
|
474 <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
|
475 <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
|
476 </servlet> |
75e9eab05ee4
Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2950
diff
changeset
|
477 |
75e9eab05ee4
Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2950
diff
changeset
|
478 <servlet-mapping> |
75e9eab05ee4
Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2950
diff
changeset
|
479 <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
|
480 <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
|
481 </servlet-mapping> |
75e9eab05ee4
Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2950
diff
changeset
|
482 |
75e9eab05ee4
Added overview chart to sq relation period input panel.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
2950
diff
changeset
|
483 <servlet> |
2950
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
484 <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
|
485 <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
|
486 </servlet> |
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
487 |
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
488 <servlet-mapping> |
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
489 <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
|
490 <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
|
491 </servlet-mapping> |
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
492 |
2891
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
493 <filter> |
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
494 <filter-name>GGInAFilter</filter-name> |
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
495 <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
|
496 <init-param> |
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
497 <param-name>deactivate</param-name> |
2956
d7f76f197d89
Refactor GGInA authentication
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2953
diff
changeset
|
498 <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
|
499 </init-param> |
2891
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
500 </filter> |
2950
192eddbbd4cf
Implement a login page to be able to authenticate a user
Bjoern Ricks <bjoern.ricks@intevation.de>
parents:
2904
diff
changeset
|
501 |
2891
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
502 <filter-mapping> |
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
503 <filter-name>GGInAFilter</filter-name> |
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
504 <url-pattern>/*</url-pattern> |
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
505 </filter-mapping> |
984a9ad71935
Register GGInAFilter.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
2540
diff
changeset
|
506 |
0
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
507 <!-- Default page to serve --> |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
508 <welcome-file-list> |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
509 <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
|
510 </welcome-file-list> |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
511 |
4e8be5e7855f
Start of a GWT based client for FLYS-3.0
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
512 </web-app> |