Subj : constructing XML properties for host object To : netscape.public.mozilla.jseng From : andrei Date : Thu Dec 30 2004 09:52 am I am trying to create host object which will "expose" XML object as one of its properties. My starting point is Node object (DOM). Using xmlbeans v2 I was able to convert it to XmlObject Node node = ...; XmlObject xmlObject = XmlObject.Factory.parse( node ); It is my understanding that I need eventually convert XmlObject into org.mozilla.javascript.xml.XMLObject. Is it true? And what is the best/correct way of doing it? Andrei .