[XML-SIG] xml silly question

Martin v. Loewis martin@loewis.home.cs.tu-berlin.de
Wed, 8 Nov 2000 18:51:06 +0100


> Is it valid xml to have an attribute with an empty string as a value ?

AttValue is defined as

  AttValue ::= '"' ([^<&"] | Reference)* '"' 
             | "'" ([^<&'] | Reference)* "'"

and there is no constraint on it, so yes, that is allowed.

Regards,
Martin