Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
962 views

Problem with custom namespace with SignedXml

The problem occurs when I sign XML documents containing namespace prefixes and namespace references and then validate it. The validation always fails (returns false) in this case. When I remove the ...
2
votes
2answers
230 views

How make XMLDocument do not put spaces on self-closed tags?

I have an XML well formatted without any spaces. It' must be like that. When I load it to XMLDocument to sign, the self-closing tags gets an extra white space and <cEAN/> becomes: ...
1
vote
2answers
218 views

Is it possible to sign an xml document without having to use KeyContainerName?

I want to create 2 really simple dlls: 1) that will sign an xml document 2) that will check that the xml document hasnt been modified. I tried using the RSACryptoServiceProvider and a key container. ...
1
vote
1answer
603 views

SignedXml generates invalid signatures

I've been trying to get the XMLDSIG support in .NET to behave properly, more specifically the SignedXml class. I'm implementing a third party service and they've just recently started requiring that ...
1
vote
7answers
1k views

Digitally Sign Parts of a XML document

I have an XML document having structure similar to the following <envelop> <header>blaa</header> <message>blaa blaa</message> <footer></footer> ...
0
votes
2answers
163 views

How to verify certificate in SignedXml against machine store

I would like to verify the signature in a SignedXml against the certificates in the machine store. This code is used to verify the signature: internal bool VerifySignature(XmlDocument xml) { var ...
0
votes
1answer
531 views

Signing XML with Public Key Example?

I'm working to implement a SAML service. As such, I believe the identity provider is supposed to digitally sign the SAML assertion using the service provider's public key before sending the assertion ...