Hi everybody,
I'm writing an XML file that I creat from scratch in my code, then check it
with my xml schema to be sure it's ok. The problem is it still complaining
and say it's wrong ... I figured out it's because when I'm writing my XML
with my DOMWriter, this one forget to add ths xsi domain.
so instead of 
  <EventDataSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>

it writes that:
<EventDataSet xmlns="http://www.w3.org/2001/XMLSchema-instance";>

so I guess xmlns is then anderstood as an attribut !! 
how can I say to xerces to write it ... as this is automatic when I creat
the xML.

thx
Jerome
-- 
View this message in context: 
http://www.nabble.com/DOMWriter-tf4113752.html#a11697872
Sent from the Xerces - C - Dev mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to