[mapserver-commits] r7320 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Mon Jan 28 17:29:57 EST 2008


Author: tomkralidis
Date: 2008-01-28 17:29:57 -0500 (Mon, 28 Jan 2008)
New Revision: 7320

Modified:
   trunk/mapserver/HISTORY.TXT
   trunk/mapserver/mapwfs.c
Log:
point to the correct schema for exceptions (#2480)


Modified: trunk/mapserver/HISTORY.TXT
===================================================================
--- trunk/mapserver/HISTORY.TXT	2008-01-28 17:13:47 UTC (rev 7319)
+++ trunk/mapserver/HISTORY.TXT	2008-01-28 22:29:57 UTC (rev 7320)
@@ -13,6 +13,8 @@
 Current Version (5.1-dev, SVN trunk):
 -------------------------------------
 
+- mapwfs.c: point to the correct schema for exceptions (#2480)
+
 - shp2img.c/shp2pdf.c: clean up usage text, check for invalid layers (#2066)
 
 - completed implementation of RFC24 (#2442, #2032)

Modified: trunk/mapserver/mapwfs.c
===================================================================
--- trunk/mapserver/mapwfs.c	2008-01-28 17:13:47 UTC (rev 7319)
+++ trunk/mapserver/mapwfs.c	2008-01-28 22:29:57 UTC (rev 7320)
@@ -56,7 +56,7 @@
     msIO_printf("xmlns=\"http://www.opengis.net/ogc\" ");
     msIO_printf("xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ");
     schemalocation = msEncodeHTMLEntities(msOWSGetSchemasLocation(map));
-    msIO_printf("xsi:schemaLocation=\"http://www.opengis.net/ogc %s/wms/1.1.1/OGC-exception.xsd\">\n", schemalocation);
+    msIO_printf("xsi:schemaLocation=\"http://www.opengis.net/ogc %s/wfs/1.0.0/OGC-exception.xsd\">\n", schemalocation);
     free(schemalocation);
     msIO_printf("  <ServiceException>\n");
     /* Optional <Locator> element currently unused. */



More information about the mapserver-commits mailing list