Hi all,
I am using microsoft visual c++ express edition 2005 along with the
xerces libraries to parse an xml. here is a small part of the code
XercesString src(str);
LocalFileInputSource source(src);
parser->parse(source);
if(parser->getErrorCount())
{
//do something..
}
else
{
//print error..
}
//Here is the problem .. when we give the path of the file to be
parsed is in a different folder than the executable we have to give
the full path to str. str is something like say C:\Documents and
Settings\Sree Harsha\Local Settings\Temp\Newfile.xml
when i give such a string the number of error is 1 and when the same
file is moved to the folder where executable is present and the
relative path from the folder is given there is no error.... how can i
specify the entire path??
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]