Hello,
I want to parse a DOM-Node into a specific XMLBean. The XMLBean is a member of
an other XMLBean. When I parse the include node into the bean and add it to the
outer bean, this inner bean it's root element always twice.
This looks like this:
<assertion>
<subject>
<subject>
<subjectConfirmation>
Assertion is the outer XMLBean and subject the inner XMLBean.
I create the subject XMLBean as following:
assertionBean.setSubject(SubjectBean.Factory.parse(node));
I tried also XMLOptions.SET_SAVE_INNER inside the parse-method. Must I use an
other option? Or do I have to parse the DOM-node on another type?
Greetings
Christian