[mapguide-commits] r1078 - trunk/MgDev/Server/src/Common/Manager

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Jan 29 13:57:17 EST 2007


Author: tonyfang
Date: 2007-01-29 13:57:17 -0500 (Mon, 29 Jan 2007)
New Revision: 1078

Modified:
   trunk/MgDev/Server/src/Common/Manager/UnmanagedDataManager.cpp
Log:
MapGuide RFC 12 - Unmanaged Data API Changes
- fix xml headers

Modified: trunk/MgDev/Server/src/Common/Manager/UnmanagedDataManager.cpp
===================================================================
--- trunk/MgDev/Server/src/Common/Manager/UnmanagedDataManager.cpp	2007-01-29 07:40:38 UTC (rev 1077)
+++ trunk/MgDev/Server/src/Common/Manager/UnmanagedDataManager.cpp	2007-01-29 18:57:17 UTC (rev 1078)
@@ -432,7 +432,7 @@
     {
         // this XML follows the ResourceList-1.0.0.xsd schema
         string list = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
-        list += "<ResourceList xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"ResourceList-1.0.0.xsd\">\n";
+        list += "<UnmanagedDataList xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"UnmanagedDataList-1.0.0.xsd\">\n";
 
         // check arguments...
 
@@ -547,7 +547,7 @@
             }
         }
 
-        list += "</ResourceList>";
+        list += "</UnmanagedDataList>";
 
         Ptr<MgByteSource> byteSource = new MgByteSource(
         (unsigned char*)list.c_str(), (INT32)list.length());



More information about the mapguide-commits mailing list