I hope I can avoid digging through the source by asking here:
Does XmlObject maintain an underlying xml when only setters/getters are being used? For example, is marshalling/un-marshalling occurring in the following: XyzTypeDocument doc = XyzTypeDocument.Factory.newInstance(); XyzType xyzType = doc.addNewXyzType(); int something = xyz.getSomething(); xyz.setSomething (something); Or marshalling only occurs at parse() and un-marshalling on toXml()? Azfar

