Hello Oracle Apex developers, I'm getting the error Ajax call returned server error ORA-29273: HTTP request failed for Execute Server-Side Code. I have a separate server IP: xxxxx.150 and installed 2 VMs, so 1 VM runs ords IP: xxxx.151 and has https self signed and VM2 installs db19c IP: xxxx.152 all 2 VMs run on the same server. I made a button on Apex when I click call api, but it shows this error. On Oracle database I have ACL but it still shows the error. I hope the developers can help me fix this error.

SELECT a.acl, p.principal, a.host, a.lower_port, a.upper_port, p.privilege
FROM dba_network_acls a, dba_network_acl_privileges p
WHERE a.acl = p.acl
AND a.host = '10.192.1.151'
AND a.lower_port = 3000
AND a.upper_port = 3000
AND p.principal = 'APEX_PUBLIC_USER'
AND p.privilege = 'connect';
