RE: Help needed with mixed content...

2006-03-29 Thread Pavel Krupets
, March 27, 2006 12:22 PM To: user@xmlbeans.apache.org Subject: RE: Help needed with mixed content... XmlCursor c = xmlo.newCursor(); c.toFirstContentToken(); String s = c.getTextValue(); c.dispose(); Thanks for your reply. But how can I get next characters sequence? I implemented code

RE: Help needed with mixed content...

2006-03-27 Thread Lawrence Jones
Hi Pavel The content model you are referring to is called a mixed content model. You specify this in your schema using the mixed=true attribute: either complexType mixed=true /complexType Or complexType complexContent mixed=true /complexContent /complexType See