Hello,
I found a strange problem today: I was writting a program in C# on my WindowsXP 64 machine. I have .NET 1.1, 2.0 and 3.5 installed. While I tried to sign xml document with the following code:
I found a strange problem today: I was writting a program in C# on my WindowsXP 64 machine. I have .NET 1.1, 2.0 and 3.5 installed. While I tried to sign xml document with the following code:
System.Security.Cryptography.Xml.SignedXml signedXml = new System.Security.Cryptography.Xml.SignedXml(postDocument); |
i got the following error:
"The type or namespace 'SignedXml' does not exist in the namespace System.Security.Cryptography.Xml."
At the beginning I was working with .NET 3.5 in VS 2008 PRO, but the same problem existed in .NET 2.0. It seemed to me like I was missing some dll on my machine. So I tried the same code on VS 2003 on 32 bit XP using .NET 1.1. But the code generated the same error.
Any ideas?