services.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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>FINE</loggingLevel>
  13. <loggingToFile value = "false" />
  14. <JaiMemoryCapacity value = "209715200" />
  15. <JaiMemoryThreshold value = "0.75" />
  16. <JaiTileThreads value = "7" />
  17. <JaiTilePriority value = "5" />
  18. <JaiRecycling value = "true" />
  19. <ImageIOCache value = "false" />
  20. <JaiJPEGNative value = "true" />
  21. <JaiPNGNative value = "true" />
  22. <!--
  23. Sets the max number of Features returned by GetFeature
  24. -->
  25. <maxFeatures value = "10000" />
  26. <!--
  27. Whether newlines and indents should be returned in
  28. XML responses. Default is false
  29. -->
  30. <verbose value = "true" />
  31. <!--
  32. Whether the Service Exceptions returned to clients should contain
  33. full java stack traces (useful for debugging).
  34. -->
  35. <verboseExceptions value = "false" />
  36. <!--
  37. Sets the max number of decimal places past the zero returned in
  38. a GetFeature response. Default is 4
  39. -->
  40. <numDecimals value = "8" />
  41. <!--
  42. Sets the global character set. This could use some more testing
  43. from international users, but what it does is sets the encoding
  44. globally for all postgis database connections (the charset tag
  45. in FeatureTypeConfig), as well as specifying the encoding in the return
  46. config.xml header and mime type. The default is UTF-8. Also be warned
  47. that GeoServer does not check if the CharSet is valid before
  48. attempting to use it, so it will fail miserably if a bad charset
  49. is used.
  50. -->
  51. <charSet value = "UTF-8" />
  52. <!--
  53. Defines the user name of the administrator for log in
  54. to the web based administration tool.
  55. -->
  56. <adminUserName>admin</adminUserName>
  57. <!--
  58. Defines the password of the administrator for log in
  59. to the web based administration tool.
  60. -->
  61. <adminPassword>geoserver</adminPassword>
  62. <updateSequence>1</updateSequence>
  63. </global>
  64. <services>
  65. <service type = "WCS" enabled = "true" >
  66. <!--
  67. ServiceDTO elements, needed for the capabilities document
  68. Title and OnlineResource are the two required
  69. -->
  70. <name>My GeoServer WCS</name>
  71. <title>My GeoServer WCS</title>
  72. <abstract>
  73. This is a description of your Web Coverage Server.
  74. </abstract>
  75. <metadataLink about = "http://geoserver.sourceforge.net/html/index.php" metadataType = "other" type = "undef" >
  76. NONE
  77. </metadataLink><keywords>
  78. <keyword>WCS</keyword>
  79. <keyword>WMS</keyword>
  80. <keyword>GEOSERVER</keyword>
  81. </keywords>
  82. <onlineResource>http://geoserver.org</onlineResource>
  83. <fees>NONE</fees>
  84. <accessConstraints>NONE</accessConstraints>
  85. <srsXmlStyle value = "false" />
  86. <maintainer>http://geoserver.org/comm</maintainer>
  87. </service>
  88. <service type = "WFS" enabled = "true" >
  89. <!--
  90. ServiceDTO elements, needed for the capabilities document
  91. Title and OnlineResource are the two required
  92. -->
  93. <name>TOPP GeoServer</name>
  94. <title>The Open Planning Project Basemap Server</title>
  95. <abstract>This is a test server. It contains some basemap data
  96. from New York City.</abstract>
  97. <metadataLink >null</metadataLink><keywords>
  98. <keyword>WFS</keyword>
  99. <keyword>TEST</keyword>
  100. <keyword>NY</keyword>
  101. <keyword>New York</keyword>
  102. </keywords>
  103. <onlineResource>http://geoserver.org</onlineResource>
  104. <fees>NONE</fees>
  105. <accessConstraints>NONE</accessConstraints>
  106. <srsXmlStyle value = "true" />
  107. <serviceLevel value = "31" />
  108. <citeConformanceHacks>true</citeConformanceHacks>
  109. <maintainer>http://geoserver.org/comm</maintainer>
  110. </service>
  111. <service type = "WMS" enabled = "true" >
  112. <!--
  113. ServiceDTO elements, needed for the capabilities document
  114. Title and OnlineResource are the two required
  115. -->
  116. <name>FreeWMS</name>
  117. <title>The Open Planning Project Basemap Server</title>
  118. <abstract>This is a test server. It contains some basemap data
  119. from New York City.</abstract>
  120. <metadataLink >null</metadataLink><keywords>
  121. <keyword>WMS</keyword>
  122. <keyword>TEST</keyword>
  123. <keyword>NY</keyword>
  124. <keyword>New York</keyword>
  125. </keywords>
  126. <onlineResource>http://geoserver.org</onlineResource>
  127. <fees>NONE</fees>
  128. <accessConstraints>NONE</accessConstraints>
  129. <srsXmlStyle value = "false" />
  130. <maintainer>http://geoserver.org/comm</maintainer>
  131. <svgAntiAlias>true</svgAntiAlias>
  132. </service>
  133. </services>
  134. </serverConfiguration>