How to Insert DOM objects?

Hi all,

I have a DOM document and want to insert it into Tamino. Looking at the Tamino Java API, I did not find any method to directly create a TXMLObject from a DOM document. I have to serialise it first w(and the Tamino API deserialises it again, I guess). Is this the best performance way to do this or is there a better way?

Regards,
Pascal Sch

Hello Pascal,
You can use:

TXMLObject xmlObject = TXMLObject.newInstance( yourDOMObject );


Hope this helps.

Thank you,

I must have been blind.

Regards,
Pascal Sch