Comment donner un nom d'utilisateur et le mot de passe lors de l'appel de HTTP de la page?

J'ai ce code lorsque je l'exécute-je obtenir des informations d'identification d'erreur. Comment donner des informations d'identification .L'authentification est définie pour windows dans la page https. Signifie pop-up apparaîtra pour obtenir les informations d'identification

declare
      req    UTL_HTTP.REQ;
      resp   UTL_HTTP.RESP;
      value  varchar2(1024);
      p_url  varchar2(4000);
      OPT    varchar2(1000);
    BEGIN
      dbms_output.put_line('');
      p_url:='http://www.xyz.com/';

      dbms_output.put_line(p_url);
      req := UTL_HTTP.begin_REQUEST(p_url);
      utl_http.set_header(req, 'User-Agent', 'Mozilla/4.0');

      resp := utl_http.get_response(req);
      loop
         utl_http.read_line(resp, value, true);
         dbms_output.put_line(value);
      end loop;

    exception
        when utl_http.end_of_body then
           utl_http.end_response(resp);
    END;

Lorsque je l'exécute-je obtenir

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>401 - Unauthorized: Access is denied due to invalid credentials.</title>
<style type="text/css">
InformationsquelleAutor MKN | 2013-04-15