Deleting parts of of a xml tree!

I’m using asp(active server pages) with the Tamino ActiveX API!
My problem is, I want to delete a part of a XML document in the tamino database.
For example:


A great book


Mister X



Mister X

I wasn’t ready yet.
But the Idea is I want to delete one occurrence of misterX.
Is this possible and how??

Thanx

What you want is NodeLevelUpdate, and you can read all about it here. The same thread also includes some examples, but what you need is something like:

inoResponse = tamino.InoRemoveChild(“/books/@1”,“books/book[1]/authors/author[1]”);

This would delete the first author node from the first book’s list of authors.

HTH