If I have complex type like this:
<xsd:sequence>
   <xsd:element name="n1" type="t1" />
   <xsd:element name="n2" type="t2" />
   <xsd:choice>
           <xsd:element name="n3" type="t3" />
           <xsd:element name="n4" type="t4" />
   </xsd:choice>
</xsd:sequence>

then all this sequence is mapped to one field of type List<JaxbElement<?>>,
why's that? can I force it to be mapped to two strongly typed fields plus
the choice mapped to JaxbElement<?> ?
-- 
View this message in context: 
http://www.nabble.com/xsd%3Achoice-in-xsd%3Asequence-tp25042291p25042291.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to