Error while connecting esign and Oracle application
Sunday, July 7, 2019 at 10:23pmHi,
I am getting the following error while connecting URL and application.
ORA-29273: HTTP request failed.
Below is the code snippet:
UTL_HTTP.SET_WALLET('file:xxxxxx', 'xxxxx');
v_request := utl_http.begin_request('https://sandbox.esignlive.com/', 'POST', 'HTTP/1.1');
Reply to: Error while connecting esign and Oracle application
Monday, July 8, 2019 at 07:02amReply to: Error while connecting esign and Oracle application
Tuesday, July 9, 2019 at 12:21amReply to: Error while connecting esign and Oracle application
Tuesday, July 9, 2019 at 05:14amReply to: Error while connecting esign and Oracle application
Tuesday, July 9, 2019 at 09:02pmReply to: Error while connecting esign and Oracle application
Wednesday, July 10, 2019 at 09:27amEXEC UTL_HTTP.set_wallet('file:xxx', 'xxx'); declare req utl_http.req; begin req := utl_http.begin_request('https://sandbox.esignlive.com'); end; /Based on the result, you could share the complete error trace and potentially, it could because of the ACL or wallet access. So I was suggesting to add the Root CA certification of OneSpan Sign(GlobalSign Root CA) to the trusted certificates to your wallet in use:Reply to: Error while connecting esign and Oracle application
Wednesday, July 10, 2019 at 10:36amcreate or replace procedure create_package as req utl_http.req; res utl_http.resp; url varchar2(4000) := 'https://sandbox.esignlive.com/api/packages'; buffer varchar2(4000); content varchar2(4000) := '{"name":"package created from oracle"}'; begin req := utl_http.begin_request(url, 'POST',' HTTP/1.1'); utl_http.set_header(req, 'user-agent', 'mozilla/4.0'); utl_http.set_header(req, 'content-type', 'application/json'); utl_http.set_header(req, 'Authorization', 'Basic {your_api_key}'); utl_http.set_header(req, 'Content-Length', length(content)); utl_http.write_text(req, content); res := utl_http.get_response(req); -- process the response from the HTTP call begin loop utl_http.read_line(res, buffer); dbms_output.put_line(buffer); end loop; utl_http.end_response(res); exception when utl_http.end_of_body then utl_http.end_response(res); end; end create_package; /Reply to: Error while connecting esign and Oracle application
Wednesday, July 10, 2019 at 09:44pmReply to: Error while connecting esign and Oracle application
Thursday, July 11, 2019 at 04:47amReply to: Error while connecting esign and Oracle application
Monday, July 15, 2019 at 03:29amReply to: Error while connecting esign and Oracle application
Monday, July 15, 2019 at 07:07amEXEC UTL_HTTP.set_wallet('file:C:\wallet5', NULL);If it still yields "Certificate validation failure" error, you could do some more general test like importing google's Root Certification to see whether your UTL_HTTP could get access to the google site or any other public site. DuoReply to: Error while connecting esign and Oracle application
Thursday, July 18, 2019 at 09:11pmReply to: Error while connecting esign and Oracle application
Friday, July 19, 2019 at 04:33amReply to: Error while connecting esign and Oracle application
Thursday, December 12, 2019 at 07:16pmReply to: Error while connecting esign and Oracle application
Friday, December 13, 2019 at 05:47amReply to: Error while connecting esign and Oracle application
Monday, January 6, 2020 at 08:08pmReply to: Error while connecting esign and Oracle application
Tuesday, January 7, 2020 at 07:04amReply to: Error while connecting esign and Oracle application
Tuesday, January 7, 2020 at 07:21amReply to: Error while connecting esign and Oracle application
Tuesday, January 7, 2020 at 09:14pmReply to: Error while connecting esign and Oracle application
Tuesday, January 7, 2020 at 09:15pmReply to: HiTejaswiDidyou
Wednesday, July 14, 2021 at 04:13pmHello
I havre an Oracle Partner having an issue installing the certificate, Do you know if in Oracle Cloud ERP is possible for the partner to make this. Are the wallets accesible to them or will they need to ask support directly from Oracle to install the certificate?