Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
XmlAdapter and XMLSchemas
Message
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Visual FoxPro Beta
Titre:
XmlAdapter and XMLSchemas
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows 2000 SP4
Divers
Thread ID:
00960940
Message ID:
00960940
Vues:
61
I'm trying to convert VFP cursor to XML using external schema, It's really easy using CursorToXML(), but I'm playing arround XMLAdapter to use the properties included.

I've seen that when I specify the XMLSchema using the XMLSchemaLocation property the ToXML method include the full path to the resultant XML File, is it correct?

Here's the code to reproduce it:
CREATE CURSOR test (iid int, cClave c(10), dFecha d)

INSERT INTO test(iid, cClave, dFecha) ;
  VALUES (1,"001",DATE())

oXML = CREATEOBJECT("XmlAdapter")
oXML.AddTableSchema("test")
oXML.XMLSchemaLocation = "test.xsd"
oXML.ToXML("test.xml",,.T.)
The XML file has the following:
<?xml version = "1.0" encoding="Windows-1252" standalone="yes"?>
<VFPDataSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:noNamespaceSchemaLocation="C:\Documents and Settings\Epalma\Mis documentos\Visual FoxPro Projects\test.xsd">
	<test>
		<iid>1</iid>
		<cclave>001</cclave>
		<dfecha>2004-11-12</dfecha>
	</test>
</VFPDataSet>
Did I miss something? This shouldn't include the full path, this doesn't happend when specify de XMLSchema in the ToXML method:
oXML.ToXML("test.xml","test.xsd",.T.)
TIA
Apoya a Visual FoxPro usandolo legalmente
--
¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º
Espartaco Palma Martínez
SysOp PortalFox
http://www.portalfox.com
esparta@portalfox.com
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform