I don’t like to import certificates, so i cannot use httpuritype for HTTPS pages and I decided to create package which will work with https as http.
It was pretty easy with java stored procedures
github/XT_HTTP
java source: xt_http.jsp
package xt_http
We have to grant connection permissions:
1 2 3 4 5 6 | dbms_java.grant_permission( grantee => 'XTENDER' -- username , permission_type => 'SYS:java.net.SocketPermission' -- connection permission , permission_name => 'ya.ru:443' -- connection address and port , permission_action => 'connect,resolve' -- types ); |
And now we can easily get any page:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | USAGE example: declare c clob; s varchar2(8000); begin --- Through HTTPS as CLOB: --- Through HTTP as CLOB --- Through HTTPS as varchar2: --- Through HTTP as varchar2 end ; / |