You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checking to see if this validation implementation is intentional. My expectation was that a uint32 max value would be checked against uint32.max, not int32.max
From CompositeType.java:
finallongmaxInt = INT32.maxValue().longValue();
if (primitiveType == UINT32 && longValue > maxInt)
{
XmlSchemaParser.handleError(node, String.format(
"maxValue greater than allowed for type: maxValue=%d allowed=%d", longValue, maxInt));
}