Changes between Version 2 and Version 3 of UsingMapOWSCommon


Ignore:
Timestamp:
Jun 19, 2007, 8:23:23 AM (17 years ago)
Author:
tomkralidis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingMapOWSCommon

    v2 v3  
    1414The library returns xmlNodePtr objects to the calling code.
    1515
    16 To implement, the calling code must instantiate an xmlNewDoc
    17 object:
     16With the exception of msOWSCommonExceptionReport, ALL functions return an XML chunk.  It is the responsibility of the calling code to setup the root element with correct namespace decls and schema pointers
     17
     18msOWSCommonExceptionReport returns an entire, complete and valid XML document, as it is the only XML in OWS Common which is designed to be implemented standalone
     19
     20To implement, the calling code must instantiate an xmlNewDoc object:
    1821
    1922{{{
     
    6063}}}
    6164
    62 NOTES:
    63 
    64 - with the exception of msOWSCommonExceptionReport, ALL functions return
    65 an XML chunk.  It is the responsibility of the calling code to setup the
    66 root element with correct namespace decls and schema pointers
    67 
    68 - msOWSCommonExceptionReport returns an entire, complete and valid XML
    69 document, as it is the only XML in OWS Common which is designed to be
    70 implemented standalone