Page 1 of 1

[ADC 1.0.3] Size attribute in XML schema is incorrect

Posted: 01 Apr 2013, 18:39
by Pretorian
The size attribute in the XML schema is incorrect;
<xs:attribute name="Size" type="xs:int"></xs:attribute>
This has the implication that the Size attribute can only contain the value of a signed 32-bit integer (2147483648) which is equal to (you've guessed it) 2 GiB. I.e., any file contained in a file list that is above 2 GiB is going to be considered invalid by the schema.

The proper value should be the use of an unsigned long:
<xs:attribute name="Size" type="xs:unsignedLong"></xs:attribute>

Re: [Future ADC 1.0.3] Size attribute in XML schema is incor

Posted: 03 Jun 2013, 20:34
by Pretorian
This is now pushed to upcoming ADC 1.0.3.