Re: Help required on Digest Authentication !!
Peter Thaggard <[email protected]> Wed, 7 Jan 2004 09:20:59 -0500
| Newsgroups | gmane.comp.windows.devel.soap.general |
|---|---|
| Message-ID | <OFCCC816F3.E38C625D-ON85256E14.004E7195-85256E14.004ED7F1@freddiemac.com> |
Hi, Have you tried bitwise OR-ing BASIC and DIGEST authorization codes together? For example, I use NEGOTIATE AUTH (0X10 = binary 00001010), but I have to OR it with BASIC (0x1 = binary 00000001) in order to get it to work properly; in your case, you might try set WinHTTPAuthScheme to 9 (0x8 = binary 00001000 OR 0x1 = binary 00000001 ==> 0x9 = binary 00001001).