RE: [c++] Signing of URL

2004-01-20 Thread Milan Tomic
> Your 2 lines of code below should also do the trick. Cool! I've just tested it and it works fine. Works fine when verifying URL signature, but not when signing URL. Is there something else I should do when signing an URL? Danke schön, Milan

Re: [c++] Signing of URL

2004-01-20 Thread Berin Lautenbach
Milan, Cool - best way to test it if you have something that can be checked with checksig. If you use "-x" to checksig, it will activate the XSECURIResolver. That should do you. It's not that much different to the default, but it understands 301/302 returns. Your 2 lines of code below shoul

RE: [c++] Signing of URL

2004-01-20 Thread Milan Tomic
Thank you, Berin, for your help. > You can call DSIGSignature::setURIResolver() to set a new URI > Resolver. > There are two classes, XSECURIResolverGenericWin32 and > XSECURIResolverGenericUnix, which are re-implementations of > the Xerces > resolvers that handle 301/302 codes. You can p