ORA-29024: Certificate validation failure [message #197513] |
Wed, 11 October 2006 09:23 |
Duane
Messages: 581 Registered: December 2002
|
Senior Member |
|
|
Any insight with this message? Missing a parameter or something?
The documentation talks about Certificate Validation with Certificate Revocation Lists. Is that something that needs to be setup or installed for me to us SSL with UTL_HTTP? I'm trying to use SSL with UTL_HTTP and I receive the ORA-29024 error.
|
|
|
|
Re: ORA-29024: Certificate validation failure [message #197746 is a reply to message #197618] |
Thu, 12 October 2006 09:04 |
Duane
Messages: 581 Registered: December 2002
|
Senior Member |
|
|
JRowbottom wrote on Thu, 12 October 2006 01:33 | You then register this certificate using utl_http.set_wallet('file:'||<wallet_path>, <wallet_pwd>);
|
I've got that statement in the procedure.
utl_http.set_wallet ('file:c:\wallet\', 'pass_word');
utl_http.set_detailed_excp_support (true);
sslreq := utl_http.Begin_request ('https://www.oracle.com',
'POST',
'HTTP/1.0');
Now, bear with me, I'm only the programmer and I didn't setup Oracle, create the wallet or install the certificates.
I do use the wallet in another package that uses DBMS_LDAP. As far as I know, this package runs just fine. I take it the code is using the wallet and is opening an SSL connection. Maybe it isn't? I sure hope it is because if we are not then we are sending userids/passwords in the clear.
dbms_ldap.use_exception := true;
mySession := dbms_ldap.init (ldapHost, ldapPort);
retval := dbms_ldap.open_ssl (mySession, 'file:c:\wallet\', 'pass_word', 2);
retval := dbms_ldap.simple_bind_s (mySession, 'umkc-users\'||user, pass);
|
|
|
|
|
|
|