Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
outlinetrue

...

ElementExample ValueDescription
namelayer1The name of the layer that GWC should respond to. It is equivalent to the value of LAYERS= in WMS requests, and can contain commas. See wmsLayers
mimeFormats<string>image/jpeg</string>List of formats to be supported. These must be known to GeoWebCache. Legal values are image/png, image/png8, image/png24, image/gif, image/jpeg, image/tiff, gml, application/vnd.google-earth.kml+xml, application/vnd.google-earth.kmz+xml
wmsUrlhttp://example.org/wmsA list of URLs to backend servers than can render tiles for this layer. They are used in a round robin fashion for load balancing and automatic failover. The only time you can ommit this element is if you expect the layer to be merged with that from another source.
wmsLayerslayer1,layer2The LAYERS parameter sent to the WMS backend. It may contain commas, to request composites of several layers from the backend, and be different from the name element.
wmsVersion1.1.1The VERSION parameter sent to the WMS backend. The default is 1.1.1
tiledfalseThe TILED parameter sent to the WMS backend. The default is FALSE, you should generally not change this.

 

 

Prototype in DDF

GWC in DDF utilizes the GWC 1.5.0 war: http://sourceforge.net/projects/geowebcache/files/geowebcache/1.5.0/geowebcache-1.5.0-war.zip/download

To build/deploy:

  • Download and install GWC war into your maven repo (this will eventually be installed in the codice maven repo)

    Code Block
    languagebash
    mvn install:install-file -Dfile=geowebcache.war -DgroupId=org.geowebcache -DartifactId=geowebcache -Dversion=1.5.0 -Dpackaging=war
  • build the DDF GWC project ..
  • Hot deploy the bundleSee https://github.com/jlcsmith/ddf/tree/geowebcache/catalog/geowebcache

Remaining work

  • documentation
  • fix logging to use PAX Web logging (currently logging goes to std out)
  • create admin UI plugin for
  • verify HTTPS to external tile services - how do certs need to be configured?
  • consider removal the use of the HTTP proxy in DDF for tile services (GWC is its own proxy)

...