> Unfortunately, all DOM output (i.e. Xerces and JDom) is now > producing, e.g.: > > < CUSTOMER > > > instead of > > <CUSTOMER> Looks like you're passing <CUSTOMER> as text content to another element. Make sure all elements are represented as Element objects, not as text content within other elements. -jh-