Expecting no namespace, but the schema document has a target namespace 2003-01-13 - By sandygao@(protected)
In your instance document:
> xsi:noNamespaceSchemaLocation=" http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2.xsd ">
which means that your xsd file doesn't have a target namespace. But in your schema:
> targetNamespace ="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2"
A contradiction! So Xerces is right in reporting an error. To fix it, instead of using xsi:noNamespaceSchemaLocation, use xsi:schemaLocation, like this:
xsi:schemaLocation=" http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2 http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2.xsd "
Cheers, Sandy Gao Software Developer, IBM Canada (1-905) 413-3255 sandygao@(protected)
--------------------------------------------------------------------- To unsubscribe, e-mail: xerces-j-user-unsubscribe@(protected) For additional commands, e-mail: xerces-j-user-help@(protected)
|
|