Iam trying to consume one wcf service thats having the digest authentication.Using .net 4 i tried few ways but getting "General web service security error".
Below is the security details appended to the header in the request. Please could you help me out here..
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-FEF642EB39BC3BF41C140448641883832">
<wsse:Username>Test</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">i6aDFWT4ulER9d6hgB4bTTgi7mA=</wsse:Password>
<wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-2004 ...
Go to the complete details ...