1
|
<?config.xml version="1.0" encoding="UTF-8"?>
|
2
|
<!--
|
3
|
Service level configuration
|
4
|
-->
|
5
|
<serverConfiguration>
|
6
|
<global>
|
7
|
<!--
|
8
|
Defines the logging level. Common options are SEVERE,
|
9
|
WARNING, INFO, CONFIG, FINER, FINEST, in order of
|
10
|
Increasing statements logged.
|
11
|
-->
|
12
|
<loggingLevel>CONFIG</loggingLevel>
|
13
|
<!--
|
14
|
Sets the max number of Features returned by GetFeature
|
15
|
-->
|
16
|
<maxFeatures value = "1000000" />
|
17
|
<!--
|
18
|
Whether newlines and indents should be returned in
|
19
|
XML responses. Default is false
|
20
|
-->
|
21
|
<verbose value = "false" />
|
22
|
<!--
|
23
|
Whether the Service Exceptions returned to clients should contain
|
24
|
full java stack traces (useful for debugging).
|
25
|
-->
|
26
|
<verboseExceptions value = "false" />
|
27
|
<!--
|
28
|
Sets the max number of decimal places past the zero returned in
|
29
|
a GetFeature response. Default is 4
|
30
|
-->
|
31
|
<numDecimals value = "8" />
|
32
|
<!--
|
33
|
Sets the global character set. This could use some more testing
|
34
|
from international users, but what it does is sets the encoding
|
35
|
globally for all postgis database connections (the charset tag
|
36
|
in FeatureTypeConfig), as well as specifying the encoding in the return
|
37
|
config.xml header and mime type. The default is UTF-8. Also be warned
|
38
|
that GeoServer does not check if the CharSet is valid before
|
39
|
attempting to use it, so it will fail miserably if a bad charset
|
40
|
is used.
|
41
|
-->
|
42
|
<charSet value = "UTF-8" />
|
43
|
<!--
|
44
|
Define a base url for the location of the wfs schemas.
|
45
|
By default GeoServer loads and references its own at
|
46
|
<URL>/data/capabilities. Uncomment to enable. The
|
47
|
standalone Tomcat server needs SchemaBaseUrl defined
|
48
|
for validation.
|
49
|
-->
|
50
|
<SchemaBaseUrl>C:\eclipse\workspace\geoserver_trunk\cite\confUserBasic/data/capabilities/</SchemaBaseUrl>
|
51
|
<!--
|
52
|
Defines the user name of the administrator for log in
|
53
|
to the web based administration tool.
|
54
|
-->
|
55
|
<adminUserName>admin</adminUserName>
|
56
|
<!--
|
57
|
Defines the password of the administrator for log in
|
58
|
to the web based administration tool.
|
59
|
-->
|
60
|
<adminPassword>geoserver</adminPassword>
|
61
|
</global>
|
62
|
<services>
|
63
|
<service type = "WFS" enabled = "true" >
|
64
|
<!--
|
65
|
ServiceDTO elements, needed for the capabilities document
|
66
|
Title and OnlineResource are the two required
|
67
|
-->
|
68
|
<name>My GeoServer WFS</name>
|
69
|
<title>My GeoServer WFS</title>
|
70
|
<abstract>
|
71
|
This is a description of your Web Feature Server.
|
72
|
|
73
|
The GeoServer is a full transactional Web Feature Server, you may wish to limit
|
74
|
GeoServer to a Basic service level to prevent modificaiton of your geographic
|
75
|
data.
|
76
|
</abstract>
|
77
|
<keywords>
|
78
|
<keyword>WFS</keyword>
|
79
|
<keyword>WMS</keyword>
|
80
|
<keyword>GEOSERVER</keyword>
|
81
|
</keywords>
|
82
|
<onlineResource>http://geoserver.sourceforge.net/html/index.php</onlineResource>
|
83
|
<fees>NONE</fees>
|
84
|
<accessConstraints>NONE</accessConstraints>
|
85
|
<srsXmlStyle value = "true" />
|
86
|
<serviceLevel value = "31" />
|
87
|
<citeConformanceHacks>false</citeConformanceHacks>
|
88
|
<maintainer>http://jira.codehaus.org/secure/BrowseProject.jspa?id=10311</maintainer>
|
89
|
</service>
|
90
|
<service type = "WMS" enabled = "true" >
|
91
|
<!--
|
92
|
ServiceDTO elements, needed for the capabilities document
|
93
|
Title and OnlineResource are the two required
|
94
|
-->
|
95
|
<name>My GeoServer WMS</name>
|
96
|
<title>My GeoServer WMS</title>
|
97
|
<abstract>
|
98
|
This is a description of your Web Map Server.
|
99
|
</abstract>
|
100
|
<keywords>
|
101
|
<keyword>WFS</keyword>
|
102
|
<keyword>WMS</keyword>
|
103
|
<keyword>GEOSERVER</keyword>
|
104
|
</keywords>
|
105
|
<onlineResource>http://geoserver.sourceforge.net/html/index.php</onlineResource>
|
106
|
<fees>NONE</fees>
|
107
|
<accessConstraints>NONE</accessConstraints>
|
108
|
<srsXmlStyle value = "false" />
|
109
|
<maintainer>http://jira.codehaus.org/secure/BrowseProject.jspa?id=10311</maintainer>
|
110
|
<svgAntiAlias>true</svgAntiAlias>
|
111
|
</service>
|
112
|
</services>
|
113
|
</serverConfiguration>
|