473,387 Members | 1,283 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

setNodeValue not working

Can anyone please tell me why this code is not working for me. I can
add the error handling again, XML file is below. I want to change the
currentState element from pending to Submitted.

int DataStore::UpdateMetaData1(string SubmissionID, string Key, string
Value)
{
XercesDOMParser* parser = new XercesDOMParser();
parser->setValidationScheme(XercesDOMParser::Val_Never) ; //
optional.
parser->setDoNamespaces(true); // optional

string metadataFile = GetMetadataFileName(SubmissionID);
parser->parse(metadataFile.c_str());
xercesc_2_4::DOMDocument* m_document = parser->getDocument();

DOMNodeList* Info =
m_document->getElementsByTagName(XMLString::transcode("IS_Met aData"));
DOMElement* pElem = (DOMElement*)Info->item(0);

DOMNodeList *pList =
pElem->getElementsByTagName(XMLString::transcode(Key.c_s tr()));
if( pList->getLength() > 0 )
{
DOMElement *pElem = (DOMElement *)pList->item( 0 );
DOMNode *pChild = pElem->getFirstChild();

if( pChild )
{
pChild->setNodeValue(XMLString::transcode(Value.c_str())) ;
}
}

return A_OK;
}

<IS_MetaData>
<submissionID>12345</submissionID>
<SubmissionDate>11 14 2005</SubmissionDate>
<submissionType>Whatever</submissionType>
<description>Test Incident</description>
<currentState>Pending</currentState>
<annotations>Testing the data store manager</annotations>
<workflowID>0</workflowID>
<business>automobile</business>
<deviceName>Minime</deviceName>
<deviceIP>18.289.134.252</deviceIP>
<submissionDataFile>0</submissionDataFile>
<attachments>S:\IS\A.05.00\dev\main\src\client\win dows\xpis\datastoreManager\test\12345\ClientManage r.map;</attachments>
<numAttachments>3</numAttachments>
</IS_MetaData>

Thanks,
Enda

Nov 23 '05 #1
2 1300
>From a similar example I was reading the above code only sets the value
in memory can someone tell me how I can set it in the file
persistantly.

Thanks,
Enda

Nov 23 '05 #2


keepyourstupidspam wrote:
From a similar example I was reading the above code only sets the value

in memory can someone tell me how I can set it in the file
persistantly.


DOMWriter should help with that:
<http://xml.apache.org/xerces-c/apiDocs/classDOMWriter.html>
--

Martin Honnen
http://JavaScript.FAQTs.com/
Nov 23 '05 #3

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

Similar topics

2
by: Gary | last post by:
I am trying to use the "System.Windows.Forms.SendKeys" class for triggering the Ctrl+P key. Syntax: System.Windows.Forms.SendKeys.Send("^(P)"); This is not working ..what could be the...
6
by: Mullin Yu | last post by:
hi, i have a web service that has file operations on Windows OS, and there may be a file concurrency issue if only one working directory e.g. c:\working therefore, i want to have a unique sub...
3
by: | last post by:
Hello, I am hoping someone else has thought about a date time calculation i need to perform. I would like to be able to calculate the number of "working minutes" between 2 dates, given my...
8
by: Hardy Wang | last post by:
Hi: Is it possible for me to create/open web application from remote machine other than port 80? And create application directly under virtual web site instead of creating a virtual directory?...
5
by: Martin Heuckeroth | last post by:
Hi We are working on a webservice application and are having some problems with the cookies and/or sessions. We have them working on our intranet but then its not working on the internet. We...
5
by: tshad | last post by:
I have been working with setting my drop boxes to allow double clicking to select an item. It worked fine until I made some changes. I then stripped the page down to the bare essentials to find...
8
by: jojobar | last post by:
Okay, I am trying to do is to test the webresource in 2.0 1. I created a new project with assembly name (and default assembly name) "Office". 2. I added the following to the AssemblyInfo.cs...
2
by: Don | last post by:
I'm having problems with intellisense, autocomplete, etc. suddenly not working in certain classes of a project I'm working on. All the options are set, and it all works fine for most classes, but...
9
by: MSDNAndi | last post by:
Hi, I have a set of simple webservices calls that worked fine using .NET Framework 1.0. I am calling a Java/Apache based webservices, the calling side is not able to supply a proper WSDL. ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.