Changes between Version 3 and Version 4 of HidingLayersInOGCWebServices


Ignore:
Timestamp:
Feb 26, 2009, 11:23:56 AM (15 years ago)
Author:
mko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HidingLayersInOGCWebServices

    v3 v4  
    3434 3. One may want to offer a given layer via WMS but not via WFS (or any combination of services). In other words, we need the ability to select in which OGC services a given layer is exposed.
    3535
    36  4. ...
     36 4. The [http://mapserver.org/faq.html#how-do-i-add-a-copyright-notice-on-the-corner-of-my-map copyright notice] shall not appear in the GetCapabilities output and shall not be queryable.
    3737 
    3838 5. ...
     
    4242=== Solution 1 ===
    4343
    44 ...
     44Disable each request type per service. The metadata section of the layer object could be extended by a key {{{[service]_disable_request}}}. Each request type listet in this key will not be processed for the given service. The value {{{all}}} will disable a service completely. Examples:
     45{{{
     46    wfs_disable_request 'all'
     47    wms_disable_request 'getcapabilities getfeatureinfo'
     48}}}
     49
     50The docs must contain clear warnings about the behaviour of the feature, esp. the value 'all' and OGC compability.
    4551
    4652=== Solution 2 ===