|
top
|
Subject: Re: ProcessContents issue Author: (Deleted User) Date: 02 May 2003 01:15 PM
|
Hi Ken,
I would say that the application is not properly supporting the xs:any
statement found in the schema.
Both the B and C elements are defined to have, as children, elements that
satisfy the schema particle {xs:any namespace="##any"
processContents="lax"}; this means that they can be in any namespace, and
they should be validated in a relaxed mode, meaning, "if you find a global
definition for the element, validate it, otherwise ignore it". So, the
application should not issue an error because a schema definition cannot be
found for D and E, as this is expected.
Hope this helps,
Alberto
|
|
|