L
Lloyd Dupont
I have some XML file like that:
===
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>affiliateId</key>
<string>AFL9124395098</string>
...........................
===
Now when I'm reading them with XmlDocument or XmlTextReader the reader try
to connect to aple (because of <!DOCTYPE plist PUBLIC "-//Apple
Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">)
and that causes exception when there is no network (and of course the
XmlTextReader or XmlDocument fail to read the text)
The problem is: I don't care about apple schema, I do the reading myself and
it's going to be alllright.
Is there a way I could skip over it?
--
Regards,
Lloyd Dupont
NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
===
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>affiliateId</key>
<string>AFL9124395098</string>
...........................
===
Now when I'm reading them with XmlDocument or XmlTextReader the reader try
to connect to aple (because of <!DOCTYPE plist PUBLIC "-//Apple
Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">)
and that causes exception when there is no network (and of course the
XmlTextReader or XmlDocument fail to read the text)
The problem is: I don't care about apple schema, I do the reading myself and
it's going to be alllright.
Is there a way I could skip over it?
--
Regards,
Lloyd Dupont
NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>