$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Robert Ramey (ramey_at_[hidden])
Date: 2005-10-21 10:37:12
"Piyush Kapadia" <piyush.kapadia_at_[hidden]> wrote in message
two issues persists related to XML -
1. When xml out put file opened on Internet Explorer it results in following legitimate error -
The following tags were not closed: boost_serialization. Error processing resource 'file:///C:/Documents and Settings/piyus...
Some how it failes to write </boost_serialization> at the end of the file, I don't know why ???
I have included test code and I am using VC 7.
This is usually caused by code like the following:
{
..ostream os("file");
..oarchive oa(os);
oa << ....
os.close(); // close or destroy output stream
// destructor on oa called after stream closed
}
Robert Ramey