Changes between Initial Version and Version 7 of Ticket #996


Ignore:
Timestamp:
Jan 21, 2008, 1:41:15 PM (17 years ago)
Author:
dmorissette
Comment:

Tom, I guess we also need to deal with the differences between traditional WMS/WFS negociation and the new version negociation mechanism introduced in OWS Common. There was a thread on this a few days ago on the wfs-dev list:

http://mail.opengeospatial.org/pipermail/wfs-dev/2008-January/000479.html

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #996

    • Property Cc tomkralidis added
    • Property Milestone5.2 release
  • Ticket #996 – Description

    initial v7  
    1 {{{
     1
    22It would be helpful to eventually have some sort of a function to apply the
    33negotiation rules set forth in the various OGC specs. I believe the logic is
    44consistent from spec to spec. Input would be the requested version and an array
    5 of supported versions and the result would be the version to return. Something like:
     5of supported versions and the result would be the version to return.
    66
     7Something like:
     8{{{
    79  int MS_NUMWCSVERSIONS = 2
    810  char *wcsVersions[MS_NUMWCSVERSIONS] = {"1.0.0", "1.1.0"};
    911
    1012  version = msOWSGetVersion(request->version, wcsVersions);
     13}}}
    1114
    1215A requested version of 1.2.0 would return 1.0.0 and so on. Not a big deal for
     
    1922
    2023BTW I've attached this to WMS component in lieu of a OWS component...
    21 }}}