Bonjour,

j'execute le code suivant
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function get (lien varchar2) return varchar2 is
	pieces	utl_http.html_pieces;
	t_str	varchar(32200);
	walle_str varchar(32200):='/u02/oracle/ewallet.p12/';
	walle_pwd varchar(32200):=password';	
	i	int;
begin
	pieces := utl_http.request_pieces(url=>lien,wallet_path=>walle_str,wallet_password=>walle_pwd);
	for i in 1..pieces.count loop
		t_str:=t_str||pieces(i);
	end loop;
	return t_str;
exception
	when others then return sqlerrm;
end get;
lorque je l'execute l'erreure de type ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1665 ORA-29248: an unrecgonized WRL was used to open a wallet

que dois-je faire, merci pour votre aide