Hello,
I have a XSD that is containing ap art like that :
<xsd:complexType name="answerType">
<xsd:sequence>
<xsd:group ref="answerCondGroup" minOccurs="0"
maxOccurs="unbounded" />
<xsd:group ref="answerActionGroup" minOccurs="0"
maxOccurs="unbounded" />
<xsd:element ref="sentence" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:attribute name="id" type="xsd:string" use="required" />
<xsd:attribute name="text" type="xsd:string" use="required" />
</xsd:complexType>
[...]
<xsd:group name="answerActionGroup">
<xsd:choice>
<xsd:element ref="actionLink" />
<xsd:element ref="actionQuest" />
</xsd:choice>
</xsd:group>
And I can't open XML with :
<answer id="answer2" text="Yes please, continue" >
<actionLink sentenceId="sentence5" />
<actionLink sentenceId="sentence4" />
</answer>
I've found something in the Bug trakker :
https://cvs.codehaus.org/browse/CASTOR-2657
It seems to be the same problem.
Is there a work around for this ?
If not, is there a date for 1.3.2 ? ( I'm new to this mailing list, I don't
know if I'm posting to the right thread )
Thanks in advance,
Adrien SCHIEHLE