Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
XmlAdapter and XMLSchemas
Message
General information
Forum:
Visual FoxPro
Category:
Visual FoxPro Beta
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows 2000 SP4
Miscellaneous
Thread ID:
00960940
Message ID:
00961214
Views:
7
I remember visiting a "relative" path issue with Sun's DOMUtility. It may be assuming a "web" app implementation, and since the folder in the path does not seem like a "server" folder, it is doing what it thinks it should and storing a full "absolute" path?:-)

I have had issues with XMLAdapter (parse errors) with "JSEE" xml. The XML2.DOMDocument, however, works well. If you chance across a reason XMLAdapter might be hiccupping with JSEE (java/Sun) XML files, I would appreciate it!

>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"
&gt;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
Imagination is more important than knowledge
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform