mhh bei Basic müsste Pre-Authentication eigentlich funktionieren. Fiddler ist auf jeden Fall das Mittel der Wahl.
Wenn man nicht mit Pre-Authentication arbeitet, dann sieht der Workflow für die Anmeldung laut
MSDN übrigens so aus:
Zitat:
A typical WinHTTP application completes the following steps in order to
handle authentication.
Request a resource with WinHttpOpenRequest and WinHttpSendRequest.
Check the response headers with WinHttpQueryHeaders.
If a 401 or 407 status code is returned indicating that authentication is required, call WinHttpQueryAuthSchemes to find an acceptable scheme.
Set the authentication scheme, username, and password with WinHttpSetCredentials.
Resend the request with the same request
handle by calling WinHttpSendRequest.