> Hi, there, I am validating some XML document against their schemas. > Xerces works fine for most cases. But it into trouble when validate XML > against some "big-sized" schema--the schema size is 200k or so.
It would be helpfull to see your schema.. I suspect that you use very large numbers for maxOccurs. Xerces-J will try to expand the particle tree recursively causing the StackOverflowError.This is the Xerces-J limitation. If it is possible use maxOccurs="unbounded" instead of specifying maxOccurs="8000"... Elena. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
