Assuming you're successfully linking against the Xalan
library, the only other thing I can see is that there might be a namespace
issue. XSec appears to be expecting Xalan to use the xalanc_1_7 namespace. If
Xalan is using a different namespace (or none at all), the linker won't be able
to r
That looks like it should solve the problem. I didn't actually try it
out, because I'm trying to stay as close as I can to released code, and
the change you checked in is more extensive than my simple-minded one.
My apologies for not checking CVS first. But maybe it's for the best;
I'm inclined
By commenting the #define XSEC_NO_XALAN line, I build the debug version. Then I am trying to execute the simpleHmac, simpleDecrypt programs. I am getting the crash.
The debugger shows it crashes in xsecdomutils.cpp while deleting the array of chars. But another overloadedversion of strEquals()(c
Hello,
I need to implement a signature in such a way that before signing a
document,
I have to obtain the document digest, then I sign it by means of any
external module, such as a hardware one, and then
I set the signature value to a XMLSignature object.
Is it possible to accomplish that wi