Re: ?? Invalid: 'name' must be an NCName

"Joseph M. Reagle Jr." wrote:

> I don't understand the error resulting from [1], "Invalid: 'name' must be an
> NCName". I've been looking at it and can't figure what I've done wrong, must
> be something stupid but obvious ...?
>
> http://www.w3.org/Encryption/2001/04/schema/enc-example.xml with
> http://www.w3.org/Encryption/2001/04/schema/20-xenc-schema.xsd

On the line of the error you have:

<element name="enc:CipherData" type="enc:CipherDataType"/>
                          ^^^
You can't use a QName as the name of the element. Should probably be:

<element name="CipherData" type="enc:CipherDataType"/>

Cheers,
/Eddie

Received on Wednesday, 6 June 2001 21:31:53 UTC