Using Basic Authentication, if the user has already logged in, the browser will include the username/password in the http request in the succeeding http requests ONLY IF it receives a 401 response containing an authentication challenge. Username/password is passed via Authorization header.
Is there a way to force the browser to always include the Authorization header once the user has logged in?
The reason I'm asking for this is that I have a CGI application (separate from the main CGI app that serves my dynamic pages) that should use the Authorization info if present but should not prompt for it if it's not present.
Thanks.