[Mono-list] Re: some System.XML bugfixes

ginga(A.E.) ginga@kit.hi-ho.ne.jp
Wed, 04 Dec 2002 02:49:06 +0900


Hello.

> XML must be first normalized to its canonical form, before any textual 
> comparison can be made. I'm not sure if System.Xml implements some 
> canonicalization service, but we need one because w3c's xml signatures 
> require it.

It is System.Security.Cryptography.Xml.XmlC14N(WithComments)Transform.
I think it will use almost fully implemented XmlTextWriter class.

To implement c14n, we also need XmlResolver, and it'll require
System.Net.WebClient or so to get external resources on the web.
Moreover, even DTD parser is not implemented yet...

Thanks.

-- A.Enomoto