> i am geting an error when i use the "removeChild"
> method
>
> "xmlManager.java": Error #: 300 : method
> removeChild(java.lang.String) not found in interface
> org.w3c.dom.Node at line 417, column 32
>
> how can it be?
>
> i used other method like "append"....
removeChild takes a Node as an argument not a String. You need to parse the document into a Document and find the Node that contains your element. Look at the API for Element and Document and Node