Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<xml-fragment>
<currentClinicalNote>
    <patientFamilyHistory disorderName="CurrentCN" id="23423"/>
    <patientFamilyHistory disorderName="CurrentCN1" id="23424"/>
    <patientFamilyHistory disorderName="CurrentCN1" id="23424"/>
  </currentClinicalNote>
</xml-fragment>

I have an XMLBean like above, now I want to replace the node[@id=23423] with a new same type node. How can I do that?

Below is sample code I tried to work..

XmlCursor xmlCursor = cursor.execQuery(nameSpace + pathExpression1);

I found the node with above code, now I have that node in cursor, How do I replace that with another?

Any replies would be appreciated.

share|improve this question

1 Answer

up vote 0 down vote accepted

DOM3 is not yet implemented in XML Beans,so need to work with DOM Nodes directly to fetch by finding first child in cursor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.