Re: XML Logging Write one record
- From: Hans <Hans@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 9 Apr 2006 07:19:01 -0700
Hi Stephany,
I'm developing an industrial application that's going to communicate with an
PLC.
We must log about 100 lines of information a day, and we want to make 1 new
file every week ot month.
We like to log information like errorcode,description, date, time.
The reason we like to log to an xml file is that we like to analyse this
information.
I know how to make the file, and read and write to it ( Dataset read and
write).
But i don't want read the complete file into memory for writing one record.
Is this possible ?
Thanks
Hans
"Stephany Young" wrote:
Sure, freeware 'loggers' are a dime a dozen, but you can bet your bottom.
dollar that none of them will do exactly what you want.
Using XML, you will run into some problems and I wonder why it is that you
want to use XML.
For me, the questions that need to be answered include:
- What do I want to record
- Why do I want to record it
- What use am I going to make of the information.
If the log is going to be read by yourself only (or someone who knows how to
interpret the information), and the information is in a linear timeline then
i would recommend appending the information (one line per 'event') to a
simple text file.
The problem with using XML for this is that XML lives in memory as a
complete XMLDocument that you add nodes to (as children of the root node at
the very least). As the XMLDocument grows it will take longer and longer to
flush it to disk. Appending to an XML file sequentially is problematic
because the closing tag of the root node will need to be overwritten each
time you append a node.
"Hans" <Hans@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:E8521B63-2A53-439D-BD2C-166B465792E8@xxxxxxxxxxxxxxxx
Hello,
I want to put logging functionality in my application and i want to store
this information in an XML file with date, string and integer values.
How do i write just one record to the XML file.
I don't want to use a dataset and i don't wan to load the entire file into
memory.
Is this possible ?
Can someone give me a simple example?
Thanks in advanced
Hans
- References:
- Re: XML Logging Write one record
- From: Stephany Young
- Re: XML Logging Write one record
- Prev by Date: After 2003 to 2005 Upgrade Wizard, Getting System.Security.SecurityException
- Next by Date: 'System.Security.SecurityException' with .NET 2005 Only
- Previous by thread: Re: XML Logging Write one record
- Next by thread: Catching Exceptions - Need a list and help.
- Index(es):
Relevant Pages
|