Title: xs:group support

I use 0.3.1.
I try to marshal an object (refered as updateGroupResponse in the following schema)  The complex type includes xs:group.  The JaxMe web site does not list the <xs:group> support as a missing feature so I think I must be doing something wrong.  The end result is as if the generated object is not populated at all

<ga:updateGroupResponse xmlns:ga="http://groupapplication.xyz.com/"/>



Here is a snippet from my XML Schema

<xs:element name="updateGroupResponse" type="ga:UpdateGroupResponseType"/>

<xs:complexType name="UpdateGroupResponseType">
 <xs:choice>
  <xs:element name="fault" type="ct:FaultType" minOccurs="0" maxOccurs="1"/>
  <xs:group ref="ga:returnedUpdateGroup"/>
 </xs:choice>
</xs:complexType>

<xs:group name="returnedUpdateGroup">
 <xs:sequence>
  <xs:element name="updated" type="xs:boolean"/>
  <xs:element name="record" type="png:NewBatchTableRecordType"/>
 </xs:sequence>
</xs:group>

The code generator does not complain about not understanding the xs:group.

Can somebody please shed some light on this?

Reply via email to