Re: xml Signature and XmlDsigXPathTransform
From: Merlin (alesz_at_buyitc.si)
Date: 06/19/03
- Previous message: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- In reply to: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- Next in thread: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- Reply: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Thu, 19 Jun 2003 04:33:01 -0700
JP,
here is the code I use. I want exclude with xpath all
signature nodes from the xml to sign. I always get the
same hashvalue independent of what xpath I use.
regards,merlin
Dim signedXml As New SignedXml(xmlDoc)
xmlXPath.LoadXml("<XPath>not(ancestor-or-self::*
[local-name()='Signature'])</XPath>")
Dim reference As New Reference()
Dim trans As New
System.Security.Cryptography.Xml.XmlDsigXPathTransform()
REM -- add references
reference.Uri = ""
trans.LoadInnerXml(xmlXPath.ChildNodes)
reference.AddTransform(trans)
signedXml.AddReference(reference)
>-----Original Message-----
>Merlin,
>
>can you give us the transformation expression you use and
what you expect it
>to do ?
>
>Regards,
>
>JP
>
>"Merlin" <alesz@buyitc.si> a écrit dans le message de
>news:002f01c335be$bb202410$a501280a@phx.gbl...
>> Hi,
>>
>> has anyone been able to use XmlDsigXPathTransform in
>> SignedXml. I doesn't filter the xml document and the
>> hashvalue is allways the same. If I change the content,
>> signature still validates.
>>
>> Is this component working properly?
>>
>> thanx
>> Ales
>
>
>.
>
- Previous message: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- In reply to: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- Next in thread: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- Reply: J-P Meunier: "Re: xml Signature and XmlDsigXPathTransform"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|