views:

50

answers:

2

I've built a request in Fiddler and need to send authentication info with the https request. Where would I put these credentials and tell Fiddler to use them?

A: 

Without knowing fiddler I'd assume:

protocol://user:password@hostname:port/
Jan.
A: 

That entirely depends on what kind of authentication mechanism the server is using. Most web servers use Basic, Digest, or Negotiate authentication; all convey the credentials via the WWW-Authorization request header.

EricLaw -MSFT-