Greetings,

I have the following global element in a schema:

<xsd:element name="query">
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element name="intRange" type="IntegerRange" nillable="true/>
    </xsd:sequence>
  </xsd:complexType>
</xsd:element>    

<xsd:complexType name="IntegerRange">
  <xsd:attribute name="min" type="xsd:integer" />
  <xsd:attribute name="max" type="xsd:integer" />
</xsd:complexType>

When I use Tuscany SDO to deserialize the instance document below, the intRange 
min property does not appear to be set. Is this expected behavior or a bug?

- Ron

<query>
  <intRange min="1" xsi:nil="true"/>
</query>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to