473,770 Members | 1,841 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why XmlTextReader does not raise the FileNotFoundExc eption

I am trying to check whether XmlTextReader reads the xml file
successfully or not.

MSDN says that XmlTextReader raise the FileNotFoundExc eption when it
cannot find the file to read.

Here is the source code I wrote.

string fileName = "thisfilenevere xist.xml";
XmlTextReader xmlReader = null;

try
{
xmlReader = new XmlTextReader(f ileName); // <---- this file does
not exist.
}
catch(Exception e)
{
// so, FileNotFoundExc eption should be caught up here.
}

But the result is not what I expected because FileNotFoundExc eption is
never raised.

So, how can i check XmlTextReader reads the xml file successfully?

Please help!!
Jan 31 '08 #1
2 3088
You need to read the file before the XMLTextReader tries to access it.
Right now, you're simply telling it where the file is, but not trying to
access it.

add xmlReader.read into your try / catch, and you will see the exception.

--
JASON FAY

<bb*****@hotmai l.comwrote in message
news:f1******** *************** ***********@s19 g2000prg.google groups.com...
>I am trying to check whether XmlTextReader reads the xml file
successfully or not.

MSDN says that XmlTextReader raise the FileNotFoundExc eption when it
cannot find the file to read.

Here is the source code I wrote.

string fileName = "thisfilenevere xist.xml";
XmlTextReader xmlReader = null;

try
{
xmlReader = new XmlTextReader(f ileName); // <---- this file does
not exist.
}
catch(Exception e)
{
// so, FileNotFoundExc eption should be caught up here.
}

But the result is not what I expected because FileNotFoundExc eption is
never raised.

So, how can i check XmlTextReader reads the xml file successfully?

Please help!!

Jan 31 '08 #2
bb*****@hotmail .com wrote:
I am trying to check whether XmlTextReader reads the xml file
successfully or not.

MSDN says that XmlTextReader raise the FileNotFoundExc eption when it
cannot find the file to read.

Here is the source code I wrote.

string fileName = "thisfilenevere xist.xml";
XmlTextReader xmlReader = null;

try
{
xmlReader = new XmlTextReader(f ileName); // <---- this file does
not exist.
}
catch(Exception e)
{
// so, FileNotFoundExc eption should be caught up here.
}

But the result is not what I expected because FileNotFoundExc eption is
never raised.

So, how can i check XmlTextReader reads the xml file successfully?
If the file does not exist then XmlTextReader will throw the
FileNotFoundExc eption on the first Read() call.

However with .NET 2.0 and later the preferred way to create an XmlReader
is XmlReader.Creat e("file.xml") and I think that throws on the Create
call without requiring a Read() call.
--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jan 31 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3176
by: Raghu | last post by:
Does XmlTextReader class in .net represent SAX implementation? If yes, are there any performance gains if I use C++ SAX implementation in msxml4.dll versus XmlTextReader in .net? Did any one try this? If no, what is the .net class that implements SAX model? Thanks. Raghu/..
4
11402
by: Andy Neilson | last post by:
I've run across a strange behaviour with XmlSerializer that I'm unable to explain. I came across this while trying to use XmlSerializer to deserialize from a the details of a SoapException. This should have worked fine since the class in question was already being serialized and deserialized as part of a Web service interface. What I found was that by deserializing from an XmlNodeReader instead of an XmlTextReader, XML Serialization doesn't work...
5
9219
by: Geoff Bennett | last post by:
While parsing an XML document, my TextReader instance skips nodes. For example, in this fragment: <Person Sex="Male" FirstHomeBuyer="No" YearsInCurrentProfession="14"> <RelatedEntityRef RelatedID="118"/> <PersonName> <NameTitle Value="Mr"/> <FirstName>Clint</FirstName> <OtherName/> <AlsoKnownAs>Mr C Eastwood</AlsoKnownAs>
1
16440
by: Emsi | last post by:
Hello, how can I read values of child nodes with the XmlTextReader? File format: <root> <items> <item> <field1>value1</field1> <field2>value2</field2>
0
9453
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9904
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8929
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6710
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.